X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=payloads%2Fexternal%2FSeaBIOS%2FMakefile.inc;h=0ffdb638e1b4aac1de68129ac1726cb97bc0a250;hb=e3509fdb681a65fb945dca28b5193733a1b84b22;hp=faca57e56543ebf76ebc8150e6cfdf56f540ad15;hpb=4f81e198aeb3b46d7e60fcce5f10fb3ad5127b02;p=coreboot.git diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc index faca57e56..0ffdb638e 100644 --- a/payloads/external/SeaBIOS/Makefile.inc +++ b/payloads/external/SeaBIOS/Makefile.inc @@ -1,12 +1,12 @@ -TAG-$(CONFIG_SEABIOS_MASTER)=master +TAG-$(CONFIG_SEABIOS_MASTER)=origin/master TAG-$(CONFIG_SEABIOS_STABLE)=rel-0.6.1.3 all: seabios seabios: patch - cd seabios; $(MAKE) CC="$(CC)" LD="$(LD)" + cd seabios; $(MAKE) patch: checkout test -r seabios/.patched || \ @@ -18,12 +18,12 @@ patch: checkout 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 + test -d seabios && (cd seabios; $(MAKE) clean) || exit 0 distclean: rm -rf seabios