mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: make-u-boot-package: Install 'SPL' files also.
* gnu/packages/bootloaders.scm (make-u-boot-package)[arguments]: Add 'SPL' files to the files installed during custom 'install phase.
This commit is contained in:
parent
df1eaffc36
commit
fd0b21d5f6
1 changed files with 1 additions and 1 deletions
|
@ -408,7 +408,7 @@ (define (make-u-boot-package board triplet)
|
|||
(libexec (string-append out "/libexec"))
|
||||
(uboot-files (append
|
||||
(find-files "." ".*\\.(bin|efi|img|spl|itb|dtb)$")
|
||||
(find-files "." "^MLO$"))))
|
||||
(find-files "." "^(MLO|SPL)$"))))
|
||||
(mkdir-p libexec)
|
||||
(install-file ".config" libexec)
|
||||
(for-each
|
||||
|
|
Loading…
Reference in a new issue