[coreboot] [commit] r6298 - trunk/payloads/external/SeaBIOS

repository service svn at coreboot.org
Tue Jan 25 20:27:23 CET 2011


Author: stepan
Date: Tue Jan 25 20:27:23 2011
New Revision: 6298
URL: https://tracker.coreboot.org/trac/coreboot/changeset/6298

Log:
Fix abuild

thanks to Kevin who came up with this

Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
Acked-by: Stefan Reinauer <stefan.reinauer at coreboot.org>

Modified:
   trunk/payloads/external/SeaBIOS/Makefile.inc

Modified: trunk/payloads/external/SeaBIOS/Makefile.inc
==============================================================================
--- trunk/payloads/external/SeaBIOS/Makefile.inc	Tue Jan 25 07:06:58 2011	(r6297)
+++ trunk/payloads/external/SeaBIOS/Makefile.inc	Tue Jan 25 20:27:23 2011	(r6298)
@@ -1,6 +1,6 @@
 
 
-TAG-$(CONFIG_SEABIOS_MASTER)=master
+TAG-$(CONFIG_SEABIOS_MASTER)=origin/master
 TAG-$(CONFIG_SEABIOS_STABLE)=rel-0.6.1.3
 
 all: seabios
@@ -18,9 +18,9 @@
 
 checkout:
 	echo "Checking out SeaBIOS $(TAG-y)"
-	test -d seabios && ( cd seabios; git pull ) || \
+	test -d seabios && ( cd seabios; git fetch ) || \
 	git clone git://git.linuxtogo.org/home/kevin/seabios.git seabios
-	cd seabios; git checkout $(TAG-y)
+	cd seabios; git checkout -m $(TAG-y)
 
 clean:
 	test -d seabios && (cd seabios; $(MAKE) CC="$(CC)" LD="$(LD)" clean) || exit 0




More information about the coreboot mailing list