Message ID | 20181121203720.75916-1-r.bolshakov@yadro.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | roms: seabios: Rename CROSS_COMPILE to CROSS_PREFIX | expand |
On Wed, Nov 21, 2018 at 11:37:21PM +0300, Roman Bolshakov wrote: > SeaBIOS introduced CROSS_PREFIX in 2013 but it's not set in roms > Makefile. > - CROSS_COMPILE=$(x86_64_cross_prefix) \ > + CROSS_PREFIX=$(x86_64_cross_prefix) \ I'm wondering how that slipped though, IIRC I had actually tested seabios crossbuilds ... Queued up (for 4.0). thanks, Gerd
diff --git a/roms/Makefile b/roms/Makefile index f4141e1d96..a6043eff37 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -83,12 +83,12 @@ build-seabios-config-%: config.% cp $< seabios/builds/$*/.config $(MAKE) -C seabios \ EXTRAVERSION=$(SEABIOS_EXTRAVERSION) \ - CROSS_COMPILE=$(x86_64_cross_prefix) \ + CROSS_PREFIX=$(x86_64_cross_prefix) \ KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \ OUT=$(CURDIR)/seabios/builds/$*/ oldnoconfig $(MAKE) -C seabios \ EXTRAVERSION=$(SEABIOS_EXTRAVERSION) \ - CROSS_COMPILE=$(x86_64_cross_prefix) \ + CROSS_PREFIX=$(x86_64_cross_prefix) \ KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \ OUT=$(CURDIR)/seabios/builds/$*/ all
SeaBIOS introduced CROSS_PREFIX in 2013 but it's not set in roms Makefile. With the change it's possible to cross-compile SeaBIOS on macOS, if acpica/iasl is installed: cd roms export PATH=/path/to/cross/x86_64-unknown-linux-gnu/bin:$PATH make bios system=unknown-linux-gnu Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com> --- roms/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)