Per default, use SeaBIOS payload instead of no payload.
Add choice to use stable or master version of seabios repository Signed-off-by: Stefan Reinauer <stepan@coreboot.org> Acked-by: Stefan Reinauer <stepan@coreboot.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6223 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
committed by
Stefan Reinauer
parent
d7ce71d58f
commit
f1939bb29b
31
payloads/external/SeaBIOS/Makefile.inc
vendored
Normal file
31
payloads/external/SeaBIOS/Makefile.inc
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
|
||||
TAG-$(CONFIG_SEABIOS_MASTER)=master
|
||||
TAG-$(CONFIG_SEABIOS_STABLE)=0.6.1-stable
|
||||
|
||||
all: seabios
|
||||
|
||||
seabios: patch
|
||||
cd seabios; $(MAKE) CC="$(CC)" LD="$(LD)"
|
||||
|
||||
patch: checkout
|
||||
test -r seabios/.patched || \
|
||||
perl -pi -e "s,#define CONFIG_COREBOOT 0,#define CONFIG_COREBOOT 1,;" \
|
||||
-e "s,#define CONFIG_DEBUG_SERIAL 0,#define CONFIG_DEBUG_SERIAL 1,;" \
|
||||
-e "s,#define CONFIG_VGAHOOKS 0,#define CONFIG_VGAHOOKS 1,;" \
|
||||
seabios/src/config.h
|
||||
touch seabios/.patched
|
||||
|
||||
checkout:
|
||||
echo "Checking out SeaBIOS $(TAG-y)"
|
||||
test -d seabios && ( cd seabios; git pull ) || \
|
||||
git clone git://git.linuxtogo.org/home/kevin/seabios.git seabios
|
||||
cd seabios; git checkout $(TAG-y)
|
||||
|
||||
clean:
|
||||
test -d seabios && (cd seabios; $(MAKE) CC="$(CC)" LD="$(LD)" clean) || exit 0
|
||||
|
||||
distclean:
|
||||
rm -rf seabios
|
||||
|
||||
.PHONY: seabios
|
Reference in New Issue
Block a user