ac83367a7b
When running 'make clean' if the seabios directory is present, we get warnings about not having IASL installed or that the C compiler can't be executed. It fails to actually run the clean because we're not correctly passing in the toolchain. Just do what the SeaBIOS clean does directly and delete the 'out' directory without actually calling the SeaBIOS clean. Here were the previous warnings: % make clean Unable to execute the C compiler (). Please install a working compiler and retry. Makefile:104: *** "Please upgrade the build environment". Stop. or % make clean The SeaBIOS project requires the 'iasl' package be installed. Many Linux distributions have this package. Try: sudo yum install iasl Or: sudo apt-get install iasl Please install iasl and retry. Makefile:106: *** "Please upgrade the build environment". Stop. Change-Id: Ice41376bc242f1f622d849e7628f8a9b6ef47404 Signed-off-by: Martin Roth <gaumless@gmail.com> Reviewed-on: http://review.coreboot.org/10655 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
61 lines
1.9 KiB
Makefile
61 lines
1.9 KiB
Makefile
TAG-$(CONFIG_SEABIOS_MASTER)=origin/master
|
|
TAG-$(CONFIG_SEABIOS_STABLE)=e51488c5f8800a52ac5c8da7a31b85cca5cc95d2
|
|
|
|
unexport KCONFIG_AUTOHEADER
|
|
unexport KCONFIG_AUTOCONFIG
|
|
unexport KCONFIG_DEPENDENCIES
|
|
unexport KCONFIG_SPLITCONFIG
|
|
unexport KCONFIG_TRISTATE
|
|
unexport KCONFIG_NEGATIVES
|
|
|
|
all: build
|
|
|
|
seabios:
|
|
echo " Cloning SeaBIOS from Git"
|
|
git clone http://review.coreboot.org/p/seabios.git seabios
|
|
|
|
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)"
|
|
echo "CONFIG_COREBOOT=y" > seabios/.config
|
|
ifeq ($(CONFIG_CONSOLE_SERIAL),y)
|
|
echo "CONFIG_DEBUG_SERIAL=y" >> seabios/.config
|
|
echo "CONFIG_DEBUG_SERIAL_PORT=$(CONFIG_TTYS0_BASE)" >> seabios/.config
|
|
else
|
|
echo "# CONFIG_DEBUG_SERIAL is not set" >> seabios/.config
|
|
endif
|
|
ifneq ($(CONFIG_SEABIOS_MALLOC_UPPERMEMORY),y)
|
|
echo "# CONFIG_MALLOC_UPPERMEMORY is not set" >> seabios/.config
|
|
endif
|
|
ifneq ($(CONFIG_SEABIOS_THREAD_OPTIONROMS),y)
|
|
echo "# CONFIG_THREAD_OPTIONROMS is not set" >> seabios/.config
|
|
endif
|
|
ifeq ($(CONFIG_SEABIOS_VGA_COREBOOT),y)
|
|
echo "CONFIG_VGA_COREBOOT=y" >> seabios/.config
|
|
echo "CONFIG_BUILD_VGABIOS=y" >> seabios/.config
|
|
endif
|
|
# This shows how to force a previously set .config option *off*
|
|
#echo "# CONFIG_SMBIOS is not set" >> seabios/.config
|
|
$(MAKE) -C seabios olddefconfig OUT=out/
|
|
|
|
build: config
|
|
echo " MAKE SeaBIOS $(TAG-y)"
|
|
export VERSION=$$(cd seabios && \
|
|
git describe --tags --long --dirty 2>/dev/null || \
|
|
echo "unknown") ; \
|
|
$(MAKE) -C seabios OUT=out/
|
|
|
|
clean:
|
|
test -d seabios/out && rm -rf seabios/out || exit 0
|
|
|
|
distclean:
|
|
rm -rf seabios
|
|
|
|
.PHONY: checkout config build clean distclean clone fetch
|