gnu: u-boot-firefly-rk3399: Use gexps and fix build.
* gnu/packages/bootloaders.scm (u-boot-firefly-rk3399) [arguments]: Use gexps. [native-inputs]: Use modify-inputs and turn into... [inputs]: ... this. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
c9c195936d
commit
3f398ea952
1 changed files with 10 additions and 10 deletions
|
|
@ -1156,16 +1156,16 @@ partition."))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments base)
|
(substitute-keyword-arguments (package-arguments base)
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(modify-phases ,phases
|
#~(modify-phases #$phases
|
||||||
(add-after 'unpack 'set-environment
|
(add-after 'unpack 'set-environment
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
||||||
(setenv "BL31" (search-input-file inputs "/bl31.elf"))))
|
(setenv "BL31" (search-input-file inputs "bl31.elf"))))
|
||||||
;; Phases do not succeed on the bl31 ELF.
|
;; Phases do not succeed on the bl31 ELF.
|
||||||
(delete 'strip)
|
(delete 'strip)
|
||||||
(delete 'validate-runpath)))))
|
(delete 'validate-runpath)))))
|
||||||
(native-inputs
|
(inputs
|
||||||
`(("firmware" ,arm-trusted-firmware-rk3399)
|
(modify-inputs (package-inputs base)
|
||||||
,@(package-native-inputs base))))))
|
(append arm-trusted-firmware-rk3399))))))
|
||||||
|
|
||||||
(define-public u-boot-rockpro64-rk3399
|
(define-public u-boot-rockpro64-rk3399
|
||||||
(let ((base (make-u-boot-package "rockpro64-rk3399" "aarch64-linux-gnu"
|
(let ((base (make-u-boot-package "rockpro64-rk3399" "aarch64-linux-gnu"
|
||||||
|
|
|
||||||
Reference in a new issue