Idwer Vollering (vidwer@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6387
-gerrit
commit 95ea1a64cdd9f2a0d972a1221e3e07abbaecc78c Author: Idwer Vollering vidwer@gmail.com Date: Sat Aug 2 03:22:03 2014 +0200
payloads/external/SeaBIOS: Makefile.inc cosmetics
Change-Id: I561b209798396d995984c244890e54f31671b5b1 Signed-off-by: Idwer Vollering vidwer@gmail.com --- payloads/external/SeaBIOS/Makefile.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc index 21f933a..a0025f5 100644 --- a/payloads/external/SeaBIOS/Makefile.inc +++ b/payloads/external/SeaBIOS/Makefile.inc @@ -8,13 +8,13 @@ unexport KCONFIG_SPLITCONFIG unexport KCONFIG_TRISTATE unexport KCONFIG_NEGATIVES
-all: build +all: seabios
-$(OUT)/seabios: +clone: echo " Cloning SeaBIOS from Git" git clone http://review.coreboot.org/p/seabios.git $(OUT)/seabios
-fetch: $(OUT)/seabios +fetch: clone cd $(OUT)/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
@@ -38,7 +38,7 @@ endif #echo "# CONFIG_SMBIOS is not set" >> $(OUT)/seabios/.config $(MAKE) -C $(OUT)/seabios olddefconfig OUT=$(OUT)/seabios/out/
-build: config +seabios: config echo " MAKE SeaBIOS $(TAG-y)" $(MAKE) -C $(OUT)/seabios OUT=$(OUT)/seabios/out/
@@ -48,4 +48,4 @@ clean: distclean: rm -rf $(OUT)/seabios
-.PHONY: checkout config build clean distclean clone fetch +.PHONY: clone fetch checkout config seabios clean distclean