mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
build: file-systems: Import (guix build syscalls) for non-static Guiles.
* gnu/build/file-systems.scm: Import (guix build syscalls) when 'mount' is not defined. * gnu/system.scm (operating-system-activation-script): Include (guix build syscalls) module in derivation.
This commit is contained in:
parent
9f04196d88
commit
85c3127fa9
2 changed files with 8 additions and 0 deletions
|
@ -50,6 +50,13 @@ (define-module (gnu build file-systems)
|
|||
;;;
|
||||
;;; Code:
|
||||
|
||||
;; 'mount' is already defined in the statically linked Guile used for initial
|
||||
;; RAM disks, but in all other cases the (guix build syscalls) module contains
|
||||
;; the mount binding.
|
||||
(unless (defined? 'mount)
|
||||
(module-use! (current-module)
|
||||
(resolve-interface '(guix build syscalls))))
|
||||
|
||||
;; Linux mount flags, from libc's <sys/mount.h>.
|
||||
(define MS_RDONLY 1)
|
||||
(define MS_NOSUID 2)
|
||||
|
|
|
@ -689,6 +689,7 @@ (define %modules
|
|||
(gnu build linux-modules)
|
||||
(gnu build file-systems)
|
||||
(guix build utils)
|
||||
(guix build syscalls)
|
||||
(guix elf)))
|
||||
|
||||
(define (service-activations services)
|
||||
|
|
Loading…
Reference in a new issue