[coreboot-gerrit] New patch to review for coreboot: seabios: Update to newer version

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Wed Jun 17 21:38:03 CEST 2015


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10568

-gerrit

commit da8a1f817f22c08c408eef42d90621f4fc0430c8
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Wed Jun 17 12:36:02 2015 -0700

    seabios: Update to newer version
    
    The existing SeaBIOS makefile was fragile. This rework makes
    it err out less on local changes, and it will automatically
    use the latest 1.8 stable version when selecting stable in Kconfig
    
    Change-Id: Ia3bb8ca71647c04a8c0574d7fde6116a2590153a
    Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
---
 payloads/external/SeaBIOS/Makefile.inc | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc
index 4d2367e..13a61ae 100644
--- a/payloads/external/SeaBIOS/Makefile.inc
+++ b/payloads/external/SeaBIOS/Makefile.inc
@@ -1,5 +1,5 @@
-TAG-$(CONFIG_SEABIOS_MASTER)=origin/master
-TAG-$(CONFIG_SEABIOS_STABLE)=e51488c5f8800a52ac5c8da7a31b85cca5cc95d2
+TAG-$(CONFIG_SEABIOS_MASTER)=master
+TAG-$(CONFIG_SEABIOS_STABLE)=1.8-stable
 
 unexport KCONFIG_AUTOHEADER
 unexport KCONFIG_AUTOCONFIG
@@ -12,17 +12,13 @@ all: build
 
 seabios:
 	echo "    Cloning SeaBIOS from Git"
-	git clone http://review.coreboot.org/p/seabios.git seabios
+	git clone -b $(TAG-y) http://review.coreboot.org/p/seabios.git seabios
 
 fetch: seabios
-	cd seabios; git show $(TAG-y) >/dev/null 2>&1 ;	if [ $$? -ne 0 ]; \
-	then echo "    Fetching new commits from the SeaBIOS git repo"; git fetch; fi
+	cd seabios; \
+	echo "    Fetching new commits from the SeaBIOS git repo"; git fetch;
 
-checkout: fetch
-	echo "    Checking out SeaBIOS revision $(TAG-y)"
-	cd seabios; git checkout master; git branch -D coreboot 2>/dev/null; git checkout -b coreboot $(TAG-y)
-
-config: checkout
+config: fetch
 	echo "    CONFIG     SeaBIOS $(TAG-y)"
 	echo "CONFIG_COREBOOT=y" > seabios/.config
 ifeq ($(CONFIG_CONSOLE_SERIAL),y)



More information about the coreboot-gerrit mailing list