mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: make-linux-libre: Use invoke.
* gnu/packages/linux.scm (make-linux-libre): Use invoke.
This commit is contained in:
parent
67f0c4228b
commit
fdd400d82e
1 changed files with 9 additions and 9 deletions
|
@ -336,7 +336,7 @@ (define* (make-linux-libre version hash supported-systems
|
|||
(begin
|
||||
(copy-file config ".config")
|
||||
(chmod ".config" #o666))
|
||||
(system* "make" ,defconfig))
|
||||
(invoke "make" ,defconfig))
|
||||
|
||||
;; Appending works even when the option wasn't in the
|
||||
;; file. The last one prevails if duplicated.
|
||||
|
@ -345,7 +345,7 @@ (define* (make-linux-libre version hash supported-systems
|
|||
(display extra-configuration port)
|
||||
(close-port port))
|
||||
|
||||
(zero? (system* "make" "oldconfig")))))
|
||||
(invoke "make" "oldconfig"))))
|
||||
(replace 'install
|
||||
(lambda* (#:key inputs native-inputs outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
|
@ -360,13 +360,13 @@ (define* (make-linux-libre version hash supported-systems
|
|||
(find-files "." "\\.dtb$"))
|
||||
;; Install kernel modules
|
||||
(mkdir-p moddir)
|
||||
(zero? (system* "make"
|
||||
(string-append "DEPMOD=" kmod "/bin/depmod")
|
||||
(string-append "MODULE_DIR=" moddir)
|
||||
(string-append "INSTALL_PATH=" out)
|
||||
(string-append "INSTALL_MOD_PATH=" out)
|
||||
"INSTALL_MOD_STRIP=1"
|
||||
"modules_install"))))))
|
||||
(invoke "make"
|
||||
(string-append "DEPMOD=" kmod "/bin/depmod")
|
||||
(string-append "MODULE_DIR=" moddir)
|
||||
(string-append "INSTALL_PATH=" out)
|
||||
(string-append "INSTALL_MOD_PATH=" out)
|
||||
"INSTALL_MOD_STRIP=1"
|
||||
"modules_install")))))
|
||||
#:tests? #f))
|
||||
(home-page "https://www.gnu.org/software/linux-libre/")
|
||||
(synopsis "100% free redistribution of a cleaned Linux kernel")
|
||||
|
|
Loading…
Reference in a new issue