mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: make-u-boot-package: Don't install "sunxi-spl-with-ecc.bin".
* gnu/packages/bootloaders.scm (make-u-boot-package)[arguments]<#:phases> [install]: Don't install "sunxi-spl-with-ecc.bin".
This commit is contained in:
parent
d38755cb91
commit
a9446dde2b
1 changed files with 12 additions and 1 deletions
|
@ -508,7 +508,18 @@ (define-public (make-u-boot-package board triplet)
|
|||
(let* ((out (assoc-ref outputs "out"))
|
||||
(libexec (string-append out "/libexec"))
|
||||
(uboot-files (append
|
||||
(find-files "." ".*\\.(bin|efi|img|spl|itb|dtb|rksd)$")
|
||||
(remove
|
||||
;; Those would not be reproducible
|
||||
;; because of the randomness used
|
||||
;; to produce them.
|
||||
;; It's expected that the user will
|
||||
;; use u-boot-tools to generate them
|
||||
;; instead.
|
||||
(lambda (name)
|
||||
(string-suffix?
|
||||
"sunxi-spl-with-ecc.bin"
|
||||
name))
|
||||
(find-files "." ".*\\.(bin|efi|img|spl|itb|dtb|rksd)$"))
|
||||
(find-files "." "^(MLO|SPL)$"))))
|
||||
(mkdir-p libexec)
|
||||
(install-file ".config" libexec)
|
||||
|
|
Loading…
Reference in a new issue