summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/guile-linux-syscalls.patch
AgeCommit message (Collapse)Author
2025-01-09syscalls: Add implementation of statfs for guile-static.Noah Evans
This is needed when bind mounting file systems from the initrd guile, or else you get an error like this: https://lists.gnu.org/archive/html/help-guix/2021-07/msg00050.html * guix/build/syscalls.scm (statfs): Add implementation for calling from guile-static. * gnu/packages/patches/guile-3.0-linux-syscalls.patch, gnu/packages/patches/guile-linux-syscalls.patch (statfs-raw): C Function to support above. Change-Id: Ibc8f1f27648add90639bd391aff8d61c6a23b884 Signed-off-by: Ludovic Courtès <[email protected]>
2018-02-28gnu: guile-static-stripped: Add 'finit_module' wrapper.Ludovic Courtès
* gnu/packages/patches/guile-linux-syscalls.patch: Add 'load-linux-module/fd' procedure.
2015-07-24gnu: guile-static: Add 'umount' procedure.Ludovic Courtès
* gnu/packages/patches/guile-linux-syscalls.patch: Add 'umount' subr.
2015-06-21Merge branch 'master' into core-updatesMark H Weaver
2015-06-19gnu: Make 'mount' interface in static Guile consistent with Guix API.David Thompson
Rather than expecting a pointer, the version of 'mount' in guile-static-stripped now takes a string for the 'options' argument, just like the 'mount' procedure in (guix build syscalls). * gnu/packages/patches/guile-linux-syscalls.patch (mount): Expect a string or #f for 'options' argument. * gnu/build/file-systems.scm (mount-file-system): Use new 'mount' interface.
2015-06-09gnu: guile-static: Use Linux syscalls only on Linux-based systems.Manolis Ragkousis
* gnu/packages/patches/guile-linux-syscalls.patch: Use Linux syscalls only on Linux-based systems.
2014-11-28linux-modules: Correctly propagate error code from 'init_module'.Ludovic Courtès
* gnu/packages/patches/guile-linux-syscalls.patch (scm_load_linux_module): Leave 'errno' unchanged when ERR != 0. * gnu/build/linux-modules.scm (load-linux-module*): Check for the errno value of ARGS to determine whether the module was already loaded.
2013-02-16gnu: guile-static: Add bindings for `reboot'.Ludovic Courtès
* gnu/packages/patches/guile-linux-syscalls.patch: Add `scm_reboot'.
2013-02-15gnu: guile-static: Add bindings for low-level Linux syscalls.Ludovic Courtès
* gnu/packages/make-bootstrap.scm (%guile-static): Add `guile-linux-syscalls.patch' as an input, and use it. * gnu/packages/patches/guile-linux-syscalls.patch: New file. * Makefile.am (dist_patch_DATA): Add it.