From c31e3ac2583bb39bb48f255f7fb4dd9df44cd365 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Sun, 7 Oct 2012 15:05:42 +0200 Subject: [PATCH] abuild: allow building with no payload Change-Id: I167f0bb57bb40f0426182c0abe868bdad58eb120 Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/1563 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- util/abuild/abuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/util/abuild/abuild b/util/abuild/abuild index 04b8e05955..e625ee5ec1 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -160,6 +160,8 @@ function create_config exit 1 fi printf "Using payload $PAYLOAD\n" + elif [ "$payloads" = "none" ]; then + PAYLOAD=none fi mkdir -p ${build_dir} @@ -179,7 +181,9 @@ function create_config grep "select[\t ]*ARCH" src/mainboard/$VENDOR/$MAINBOARD/Kconfig | \ sed "s,^.*\(ARCH_.*\)[^A-Z0-9_]*,CONFIG_\1=y," >> ${build_dir}/config.build echo "CONFIG_MAINBOARD_DIR=\"$VENDOR/$MAINBOARD\"" >> ${build_dir}/config.build - if [ "$PAYLOAD" != "/dev/null" ]; then + if [ "$PAYLOAD" = "none" ]; then + echo "CONFIG_PAYLOAD_NONE=y" >> ${build_dir}/config.build + elif [ "$PAYLOAD" != "/dev/null" ]; then echo "# CONFIG_PAYLOAD_NONE is not set" >> ${build_dir}/config.build echo "# CONFIG_PAYLOAD_SEABIOS is not set" >> ${build_dir}/config.build echo "CONFIG_PAYLOAD_ELF=y" >> ${build_dir}/config.build