coreboot-kgpe-d16/payloads/external/SeaBIOS/Makefile.inc
Stefan Reinauer af2c538ee5 Update "STABLE" SeaBIOS selection to release 1.6.3
1.6.3 has a lot of benefits over the previous version, the two
most important being:
 - working AHCI support
 - compiles with gcc 4.6.x

Change-Id: Ie3a4d8f2624e0aa85e48ca09da53474c085838db
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/253
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
2011-10-13 19:59:59 +02:00

45 lines
1.3 KiB
Makefile

TAG-$(CONFIG_SEABIOS_MASTER)=origin/master
TAG-$(CONFIG_SEABIOS_STABLE)=e66fb31eac3e6be6aaab548c229af9bb1ba55c33
unexport KCONFIG_AUTOCONFIG
all: build
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
echo " CONFIG SeaBIOS $(TAG-y)"
$(MAKE) -C seabios defconfig
echo "CONFIG_COREBOOT=y" >> seabios/.config
echo "CONFIG_DEBUG_SERIAL=y" >> seabios/.config
echo "CONFIG_DEBUG_SERIAL_PORT=0x3f8" >> seabios/.config
echo "CONFIG_COREBOOT_FLASH=y" >> seabios/.config
echo "CONFIG_LZMA=y" >> seabios/.config
echo "CONFIG_FLASH_FLOPPY=y" >> seabios/.config
echo "CONFIG_VGAHOOKS=y" >> seabios/.config
# This shows how to force a previously set .config option *off*
#echo "# CONFIG_SMBIOS is not set" >> seabios/.config
build: config
echo " MAKE SeaBIOS $(TAG-y)"
$(MAKE) -C seabios
clean:
test -d seabios && $(MAKE) -C seabios clean || exit 0
distclean:
rm -rf seabios
.PHONY: checkout config build clean distclean clone fetch