gnu: grub-efi32: Fix building on aarch64-linux.
* gnu/packages/bootloaders.scm (grub-efi32)[arguments]: When building for aarch64-linux add TARGET_CC to configure-flags. [native-inputs]: When building for aarch64-linux add cross-gcc and cross-binutils for arm-linux-gnueabihf.
parent
a5a88b0248
commit
116c0268ff
|
@ -340,10 +340,23 @@ menu to select one of the installed operating systems.")
|
||||||
(synopsis "GRand Unified Boot loader (UEFI 32bit version)")
|
(synopsis "GRand Unified Boot loader (UEFI 32bit version)")
|
||||||
(arguments
|
(arguments
|
||||||
`(,@(substitute-keyword-arguments (package-arguments grub-efi)
|
`(,@(substitute-keyword-arguments (package-arguments grub-efi)
|
||||||
((#:configure-flags flags
|
((#:configure-flags flags ''())
|
||||||
''()) `(cons* ,(cond ((target-x86?) "--target=i386")
|
`(cons*
|
||||||
((target-arm?) "--target=arm"))
|
,@(cond ((target-x86?) '("--target=i386"))
|
||||||
,flags)))))))
|
((target-aarch64?)
|
||||||
|
(list "--target=arm"
|
||||||
|
(string-append "TARGET_CC="
|
||||||
|
(cc-for-target "arm-linux-gnueabihf"))))
|
||||||
|
((target-arm?) '("--target=arm"))
|
||||||
|
(else '()))
|
||||||
|
,flags)))))
|
||||||
|
(native-inputs
|
||||||
|
(if (target-aarch64?)
|
||||||
|
(modify-inputs (package-native-inputs grub-efi)
|
||||||
|
(prepend
|
||||||
|
(cross-gcc "arm-linux-gnueabihf")
|
||||||
|
(cross-binutils "arm-linux-gnueabihf")))
|
||||||
|
(package-native-inputs grub-efi)))))
|
||||||
|
|
||||||
;; Because grub searches hardcoded paths it's easiest to just build grub
|
;; Because grub searches hardcoded paths it's easiest to just build grub
|
||||||
;; again to make it find both grub-pc and grub-efi. There is a command
|
;; again to make it find both grub-pc and grub-efi. There is a command
|
||||||
|
|
Reference in New Issue