diff options
author | Vagrant Cascadian <vagrant@debian.org> | 2018-04-29 04:33:00 +0000 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2018-04-29 19:03:03 +0200 |
commit | fd0b21d5f636c227b83a1fe722b12120dbc0750e (patch) | |
tree | e7143414923a5b514c5ac6dfe233449c1a4b9ae2 /gnu/packages/bootloaders.scm | |
parent | df1eaffc36c77d0bb3c55c68fa3c5d4c5d9b221f (diff) | |
download | patches-fd0b21d5f636c227b83a1fe722b12120dbc0750e.tar patches-fd0b21d5f636c227b83a1fe722b12120dbc0750e.tar.gz |
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.
Diffstat (limited to 'gnu/packages/bootloaders.scm')
-rw-r--r-- | gnu/packages/bootloaders.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 4350ff3a50..fc4570c2e5 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -408,7 +408,7 @@ also initializes the boards (RAM etc).") (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 |