diff options
author | Cristian Măgherușan-Stanciu <cristi.magherusan@gmail.com> | 2011-06-07 15:03:14 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2011-07-07 13:25:53 +0200 |
commit | a78d57296861e98bc5f5875c3ee0ef813403c860 (patch) | |
tree | f5035f5b1ba4c9896192a04856e3cf8889dc3ccb | |
parent | 7f76290e2d085da8975a8a011f93e50a5460645b (diff) | |
download | coreboot-a78d57296861e98bc5f5875c3ee0ef813403c860.tar.xz |
Run 'git fetch' in SeaBIOS only when really needed
This allows coreboot to compile without Internet connectivity
Change-Id: I969471e44e417f127fdc8744e868211500acee3e
Signed-off-by: Cristian Măgherușan-Stanciu <cristi.magherusan@gmail.com>
Reviewed-on: http://review.coreboot.org/11
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
-rw-r--r-- | payloads/external/SeaBIOS/Makefile.inc | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc index f702de6b0c..e04ffeaa18 100644 --- a/payloads/external/SeaBIOS/Makefile.inc +++ b/payloads/external/SeaBIOS/Makefile.inc @@ -5,12 +5,18 @@ TAG-$(CONFIG_SEABIOS_STABLE)=1efb10b9ea30c45a8c9c6230234fefa10d2886ed unexport KCONFIG_AUTOCONFIG -all: seabios +all: build -checkout: - echo " GIT SeaBIOS $(TAG-y)" - test -d seabios && ( cd seabios; git fetch ) || \ - git clone git://git.seabios.org/seabios.git +seabios: + echo " Cloning SeaBIOS from Git" + git clone git://git.seabios.org/seabios.git + +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 + +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 @@ -25,7 +31,7 @@ config: checkout # This shows how to force a previously set .config option *off* #echo "# CONFIG_SMBIOS is not set" >> seabios/.config -seabios: config +build: config echo " MAKE SeaBIOS $(TAG-y)" $(MAKE) -C seabios @@ -35,4 +41,4 @@ clean: distclean: rm -rf seabios -.PHONY: checkout config seabios clean distclean +.PHONY: checkout config build clean distclean clone fetch |