cc97c560bb
This commit replaces the old svn checkout code for the external FILO payload with a git checkout for the new repo on gerrit. The stable checkout is implemented similarly to the former SVN variant, it checks out a specific commit (same commit as svn r136 which was checked out before). The HEAD checkout gets the master branch from http://review.coreboot.org/p/filo.git In future this should probably be changed to a stable tag or repo. It is necessary to remove the old svn checkout by hand (or run distclean), because I did not include code to remove an existing svn FILO checkout. Change-Id: I08a703f3428ae7b987f7079a4901be4cf6d7e505 Signed-off-by: Thomas Gstädtner <thomas@gstaedtner.net> Reviewed-on: http://review.coreboot.org/308 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
TAG-$(CONFIG_FILO_MASTER)=
|
|
NAME-$(CONFIG_FILO_MASTER)=HEAD
|
|
TAG-$(CONFIG_FILO_STABLE)=4dbb31a64fe5b1c7e3025ab34619220609897646
|
|
NAME-$(CONFIG_FILO_STABLE)=STABLE
|
|
|
|
unexport KCONFIG_AUTOCONFIG
|
|
|
|
all: filo
|
|
|
|
checkout:
|
|
echo " GIT FILO $(NAME-y)"
|
|
test -d filo || \
|
|
git clone http://review.coreboot.org/p/filo.git
|
|
cd filo && \
|
|
git checkout master && \
|
|
git pull; \
|
|
test -n $(TAG-y) && \
|
|
git branch -f $(NAME-y) $(TAG-y) && \
|
|
git checkout $(NAME-y)
|
|
|
|
config: libpayload
|
|
echo " CONFIG FILO $(NAME-y)"
|
|
$(MAKE) -C filo defconfig
|
|
echo "CONFIG_COREBOOT=y" >> filo/.config
|
|
echo "CONFIG_DEBUG_SERIAL=y" >> filo/.config
|
|
echo "CONFIG_COREBOOT_FLASH=y" >> filo/.config
|
|
echo "CONFIG_LZMA=y" >> filo/.config
|
|
echo "CONFIG_FLASH_FLOPPY=y" >> filo/.config
|
|
echo "CONFIG_VGAHOOKS=y" >> filo/.config
|
|
# This shows how to force a previously set .config option *off*
|
|
#echo "# CONFIG_SMBIOS is not set" >> filo/.config
|
|
|
|
filo: config
|
|
echo " MAKE FILO $(NAME-y)"
|
|
$(MAKE) -C filo
|
|
|
|
libpayload: checkout
|
|
cd ../../libpayload && $(MAKE) defconfig && \
|
|
$(MAKE) && $(MAKE) DESTDIR=../external/FILO/filo/build install
|
|
|
|
clean:
|
|
test -d filo && $(MAKE) -C filo clean || exit 0
|
|
|
|
distclean:
|
|
rm -rf filo
|
|
|
|
.PHONY: checkout config filo clean distclean
|
|
|