[coreboot-gerrit] New patch to review for coreboot: 09eb2a5 SeaBIOS: fix reproducible build by defining our own version string

Alexander Couzens (lynxis@fe80.eu) gerrit at coreboot.org
Thu Jun 11 14:28:09 CEST 2015


Alexander Couzens (lynxis at fe80.eu) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10515

-gerrit

commit 09eb2a55605e9bcf903ff8a8c6016222f9d0ebaf
Author: Alexander Couzens <lynxis at fe80.eu>
Date:   Thu Jun 11 14:24:39 2015 +0200

    SeaBIOS: fix reproducible build by defining our own version string
    
    SeaBIOS use a version string which is derived from hostname.
    Defining our own version strings drop this dependency.
    This only works ins versions newer rel-1.8.0-36-g624e812.
    
    Change-Id: Ie800deffd3706d1b2dabf5258e2e48bfcd2929b7
    Signed-off-by: Alexander Couzens <lynxis at fe80.eu>
---
 payloads/external/SeaBIOS/Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc
index 4d2367e..9524750 100644
--- a/payloads/external/SeaBIOS/Makefile.inc
+++ b/payloads/external/SeaBIOS/Makefile.inc
@@ -47,7 +47,7 @@ endif
 
 build: config
 	echo "    MAKE       SeaBIOS $(TAG-y)"
-	$(MAKE) -C seabios OUT=out/
+	export VERSION=$$(cd seabios && git describe --tags --long --dirty) ; $(MAKE) -C seabios OUT=out/
 
 clean:
 	test -d seabios && $(MAKE) -C seabios clean OUT=out/ || exit 0



More information about the coreboot-gerrit mailing list