summaryrefslogtreecommitdiff
BranchCommit messageAuthorAge
build-sysAllow testing behavior to be customizedjahoti3 years
jahotiSupport tests outside the source directoryjahoti3 years
jahoti-updateAdd build support for update URLsjahoti3 years
koszkobump version to 2.0.1Wojtek Kosior2 years
masterbump version to 2.0.1Wojtek Kosior2 years
nickAdd default repository to default settingsjahoti3 years
 
TagDownloadAuthorAge
v2.0.1browser-extension-2.0.1.tar.gz  browser-extension-2.0.1.zip  Wojtek Kosior24 months
v2.0browser-extension-2.0.tar.gz  browser-extension-2.0.zip  Wojtek Kosior2 years
v2.0-beta1browser-extension-2.0-beta1.tar.gz  browser-extension-2.0-beta1.zip  Wojtek Kosior2 years
v1.0browser-extension-1.0.tar.gz  browser-extension-1.0.zip  Wojtek Kosior2 years
v1.0-beta3browser-extension-1.0-beta3.tar.gz  browser-extension-1.0-beta3.zip  Wojtek Kosior3 years
v1.0-beta2browser-extension-1.0-beta2.tar.gz  browser-extension-1.0-beta2.zip  Wojtek Kosior3 years
v1.0-beta1browser-extension-1.0-beta1.tar.gz  browser-extension-1.0-beta1.zip  Wojtek Kosior3 years
ogmsg'> 2020-05-02linux-initrd: Add initial support for F2FS.raingloom * gnu/system/linux-initrd.scm (file-system-type-modules): Add f2fs module. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org> 2020-05-01gnu: linux-initrd: Use Guile 3.0.Marius Bakke * gnu/system/linux-initrd.scm (expression->initrd): Change from %GUILE-STATIC-STRIPPED to %GUILE-3.0-STATIC-STRIPPED. 2020-01-03linux-initrd: Add support for JFS.Tobias Geerinckx-Rice * gnu/system/linux-initrd.scm (file-system-packages): Add jfs_fsck/static. (file-system-type-modules): Add ‘jfs’ module. 2019-09-04linux-initrd: Use native gzip.Mathieu Othacehe * gnu/system/linux-initrd.scm (expression->initrd): Pass native gzip to build-initrd procedure. 2019-08-16linux-modules: Define and use a module name database.Ludovic Courtès Fixes <https://bugs.gnu.org/34902>. Reported by Julien Lepiller <julien@lepiller.eu>. * gnu/build/linux-modules.scm (module-formal-name): New procedure. (load-linux-modules-from-directory)[lookup-module]: Remove. [module-name->file-name]: New variable. Use it. (module-name->file-name/guess, module-name-lookup) (write-module-name-database): New procedures. * gnu/system/linux-initrd.scm (flat-linux-module-directory): Call 'write-module-name-database'. 2019-06-25linux-initrd: Fix cross compilation.Mathieu Othacehe * gnu/system/linux-initrd.scm (default-initrd-modules): Check system name against %current-target-system first in case we are cross-compiling. 2019-03-24system: Initialize console keyboard layout in the initrd.Ludovic Courtès Partially fixes <https://bugs.gnu.org/25453>. * gnu/system.scm (<operating-system>)[keyboard-layout]: New field. (operating-system-initrd-file): Pass #:keyboard-layout to MAKE-INITRD. * gnu/system/linux-initrd.scm (raw-initrd): Add #:keyboard-layout. Pass #:keymap-file to 'boot-system'. (base-initrd): Add #:keyboard-layout. [helper-packages]: Add LOADKEYS-STATIC when KEYBOARD-LAYOUT is true. Pass #:keyboard-layout to 'raw-initrd'. * gnu/build/linux-boot.scm (boot-system): Add #:keymap-file and honor it. * doc/guix.texi (operating-system Reference): Document the 'keyboard-layout' field. (Initial RAM Disk): Update 'raw-initrd' and 'base-initrd' documentation. 2018-11-21linux-initrd: 'expression->initrd' returns the complete file name.Ludovic Courtès Previously 'expression->initrd' would return the directory that contains the 'initrd' file; now it returns the complete file name for that file. * gnu/system/linux-initrd.scm (expression->initrd)[builder]: Change output file name to "initrd.cpio.gz". Tail-call 'file-append' to return the complete file name. * gnu/system.scm (operating-system-initrd-file): Remove 'file-append' call. * gnu/build/linux-initrd.scm (write-cpio-archive): Check whether OUTPUT already has the ".gz" suffix; rename if before invoking GZIP if it does, and otherwise after. * gnu/system/vm.scm (expression->derivation-in-linux-vm)[builder]: Do not append "/initrd" to #$initrd. 2018-11-18linux-initrd: Return file-like objects instead of monadic values.Ludovic Courtès This is an incompatible change visible to users via the 'initrd' field of 'operating-system'. However, assuming the user's 'initrd' value tail-calls to 'raw-initrd' or 'base-initrd', the switch to non-monadic style is invisible. * gnu/system/linux-initrd.scm (expression->initrd): Use 'computed-file' instead of 'gexp->derivation'. (raw-initrd, base-initrd): Adjust docstring to mention non-monadic return. * gnu/system/vm.scm (expression->derivation-in-linux-vm): Adjust accordingly. * gnu/system.scm (operating-system-directory-base-entries) (operating-system-initrd-file) (operating-system-boot-parameters): Adjust accordingly. * doc/guix.texi (operating-system Reference) (Initial RAM Disk): Update.