Pass all required toolchain parts to SeaBIOS correctly
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6317 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
86bd99aba2
commit
e3509fdb68
|
@ -6,7 +6,7 @@ TAG-$(CONFIG_SEABIOS_STABLE)=rel-0.6.1.3
|
||||||
all: seabios
|
all: seabios
|
||||||
|
|
||||||
seabios: patch
|
seabios: patch
|
||||||
cd seabios; $(MAKE) CC="$(CC)" LD="$(LD)"
|
cd seabios; $(MAKE)
|
||||||
|
|
||||||
patch: checkout
|
patch: checkout
|
||||||
test -r seabios/.patched || \
|
test -r seabios/.patched || \
|
||||||
|
@ -23,7 +23,7 @@ checkout:
|
||||||
cd seabios; git checkout -m $(TAG-y)
|
cd seabios; git checkout -m $(TAG-y)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
test -d seabios && (cd seabios; $(MAKE) CC="$(CC)" LD="$(LD)" clean) || exit 0
|
test -d seabios && (cd seabios; $(MAKE) clean) || exit 0
|
||||||
|
|
||||||
distclean:
|
distclean:
|
||||||
rm -rf seabios
|
rm -rf seabios
|
||||||
|
|
|
@ -286,7 +286,8 @@ endif
|
||||||
|
|
||||||
seabios:
|
seabios:
|
||||||
$(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc \
|
$(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc \
|
||||||
CC="$(CC)" LD="$(LD)" \
|
CC="$(CC)" LD="$(LD)" OBJDUMP="$(OBJDUMP)" \
|
||||||
|
OBJCOPY="$(OBJCOPY)" STRIP="$(STRIP)" \
|
||||||
CONFIG_SEABIOS_MASTER=$(CONFIG_SEABIOS_MASTER) \
|
CONFIG_SEABIOS_MASTER=$(CONFIG_SEABIOS_MASTER) \
|
||||||
CONFIG_SEABIOS_STABLE=$(CONFIG_SEABIOS_STABLE)
|
CONFIG_SEABIOS_STABLE=$(CONFIG_SEABIOS_STABLE)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue