aboutsummaryrefslogtreecommitdiff
path: root/payloads/external
diff options
context:
space:
mode:
Diffstat (limited to 'payloads/external')
-rw-r--r--payloads/external/SeaBIOS/Makefile.inc31
1 files changed, 31 insertions, 0 deletions
diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc
new file mode 100644
index 0000000000..120e796e41
--- /dev/null
+++ b/payloads/external/SeaBIOS/Makefile.inc
@@ -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