aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/d-feet-drop-unused-meson-argument.patch
diff options
context:
space:
mode:
authorSimon Tournier <zimon.toutoune@gmail.com>2023-09-15 19:09:54 +0200
committerSimon Tournier <zimon.toutoune@gmail.com>2023-09-22 15:04:01 +0200
commitec130e1a1b7f3b87b1a6e626754f7e7a07f6b717 (patch)
tree5282120c265e2976ca70c1bddd591738e2365066 /gnu/packages/patches/d-feet-drop-unused-meson-argument.patch
parent5bae1fea205070a44bcf5f3caec8afa8d3b1a4c0 (diff)
downloadguix-ec130e1a1b7f3b87b1a6e626754f7e7a07f6b717.tar.gz
guix-ec130e1a1b7f3b87b1a6e626754f7e7a07f6b717.zip
gnu: python-glcontext: Update to 2.4.0-1.0af21b7.
* gnu/packages/python-xyz.scm (python-glcontext): Update to 2.4.0-1.0af21b7.
Diffstat (limited to 'gnu/packages/patches/d-feet-drop-unused-meson-argument.patch')
0 files changed, 0 insertions, 0 deletions
e-number, device->major+minor): Move to, and subsequently import from, … * guix/build/syscalls.scm (device-number, device-number->major+minor): …here. Note the slight name change. (mounts): Replace 16-bit open code with a DEVICE-NUMBER call. * gnu/build/linux-boot.scm (device-number): Remove duplicate 16-bit implementation in favour of the one above. (resume-if-hibernated): Reuse DEVICE-NUMBER->MAJOR+MINOR. 2021-09-23linux-boot: Honour fsck.mode & fsck.repair.Tobias Geerinckx-Rice * gnu/build/linux-boot.scm (boot-system): Honour ‘fsck.mode=’ and ‘fsck.repair=’ kernel command line options. * doc/guix.texi (Initial RAM Disk): Document both. 2021-09-23file-systems: Support forced checks & repairs.Tobias Geerinckx-Rice * gnu/build/file-systems.scm (check-ext2-file-system) (check-bcachefs-file-system, check-btrfs-file-system) (check-fat-file-system, check-jfs-file-system, check-f2fs-file-system) (check-ntfs-file-system, check-file-system): Take and honour new FORCE? and REPAIR arguments. Update the docstring. Adjust all callers. * gnu/system/file-systems.scm <file-system>: Add new SKIP-CHECK-IF-CLEAN? and REPAIR fields. (file-system->spec, spec->file-system): Adjust accordingly. * gnu/build/linux-boot.scm (mount-root-file-system): Take new SKIP-CHECK-IF-CLEAN? and REPAIR keyword arguments. Thread them through to CHECK-FILE-SYSTEM. * doc/guix.texi (File Systems): Document both new <file-system> options. 2021-09-12linux-boot: Remove mummified comment.Tobias Geerinckx-Rice * gnu/build/linux-boot.scm (configure-qemu-networking): Delete 2014 comment about not doing something here. 2021-06-16gnu: Respect ‘rootdelay’ kernel command-line argument.Tobias Geerinckx-Rice * gnu/build/linux-boot.scm (boot-system): Sleep for "rootdelay=SECONDS" when specified on the kernel command line. 2021-05-23gnu: Respect the root file-system's CHECK? field.Tobias Geerinckx-Rice * gnu/build/linux-boot.scm (mount-root-file-system): Take a new #:CHECK? keyword argument. Add it to the docstring. Conditionally call CHECK-FILE-SYSTEM. (boot-system): Adjust its only caller to pass the <file-system>'s CHECK? option through, if available. 2020-12-17linux-boot: Fix noresume argument parsing.Tobias Geerinckx-Rice * gnu/build/linux-boot.scm (boot-system): Check for "hibernate=noresume" in addition to "noresume". 2020-11-07linux-boot: Resume from hibernation.Tobias Geerinckx-Rice * gnu/build/linux-boot.scm (resume-if-hibernated): New procedure. (boot-system): Call it. 2020-09-07linux-boot: Handle nfs-root device strings.Stefan * gnu/build/linux-boot.scm (device-string->file-system-device): Support nfs-root "device" strings. * gnu/build/file-systems.scm (canonicalize-device-spec): Support nfs-root "device" strings. * gnu/machine/ssh.scm (machine-check-file-system-availability): Avoid checking of NFS file systems. * gnu/system.scm (read-boot-parameters, device-sexp->device): Support nfs-root "device" strings. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org> 2020-06-08hurd-boot: Further cleanup of "rc".Jan (janneke) Nieuwenhuizen * gnu/packages/hurd.scm (hurd-rc-script): Move implementation to ... * gnu/build/hurd-boot.scm (boot-hurd-system): ...here, new file. * gnu/build/linux-boot.scm (make-hurd-device-nodes): Move there likewise. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. 2020-06-08linux-boot: Update 'make-hurd-device-nodes'.Jan (janneke) Nieuwenhuizen * gnu/build/linux-boot.scm (make-hurd-device-nodes): Avoid de-duplication of device mount points; also create mount points for /servers/. 2020-05-20linux-boot: Refactor boot-system.Maxim Cournoyer The --root option can now be omitted, and inferred from the root file system declaration instead. * gnu/build/file-systems.scm (canonicalize-device-spec): Extend to support NFS directly, and... * gnu/build/linux-boot.scm (boot-system): ...remove NFS special casing from here. Remove nested definitions for root-fs-type, root-fs-flags and root-fs-options, and bind those inside the let* instead. Make "--root" take precedence over the device field string representation of the root file system. * doc/guix.texi (Initial RAM Disk): Document that "--root" can be left unspecified. 2020-05-02Merge branch 'master' into core-updatesMarius Bakke 2020-05-02linux-boot: Allow the root file system to be mounted via NFS.Stefan * gnu/build/linux-boot.scm (boot-system) Treat a root option with ":/" as an nfs source and avoid to call 'canonicalize-device-spec' for it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>