gnu: bootloader: Fix install-allwinner64-u-boot.
This fixes boot breakage introduced in commit:
a65c935e29
Multiple files were still needed, but the filenames changed.
* gnu/bootloader/u-boot.scm (install-allwinner64-u-boot): Update to
use both SPL and u-boot files with new filenames.
This commit is contained in:
parent
055d0fa324
commit
d7d6c9e4e6
1 changed files with 5 additions and 2 deletions
|
@ -73,9 +73,12 @@
|
||||||
|
|
||||||
(define install-allwinner64-u-boot
|
(define install-allwinner64-u-boot
|
||||||
#~(lambda (bootloader root-index image)
|
#~(lambda (bootloader root-index image)
|
||||||
(let ((spl (string-append bootloader "/libexec/u-boot-sunxi-with-spl.fit.itb")))
|
(let ((spl (string-append bootloader "/libexec/u-boot-sunxi-with-spl.bin"))
|
||||||
|
(u-boot (string-append bootloader "/libexec/u-boot-sunxi-with-spl.fit.itb")))
|
||||||
(write-file-on-device spl (stat:size (stat spl))
|
(write-file-on-device spl (stat:size (stat spl))
|
||||||
image (* 8 1024)))))
|
image (* 8 1024))
|
||||||
|
(write-file-on-device u-boot (stat:size (stat u-boot))
|
||||||
|
image (* 40 1024)))))
|
||||||
|
|
||||||
(define install-imx-u-boot
|
(define install-imx-u-boot
|
||||||
#~(lambda (bootloader root-index image)
|
#~(lambda (bootloader root-index image)
|
||||||
|
|
Reference in a new issue