diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2012-10-07 15:05:42 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-10-14 20:10:15 +0200 |
commit | c31e3ac2583bb39bb48f255f7fb4dd9df44cd365 (patch) | |
tree | 140b3a139b9b35b52dd43747a4cf6509210eb836 | |
parent | 1b97bdc42a91746906b99a37ad15ba0a0039e4a3 (diff) |
abuild: allow building with no payload
Change-Id: I167f0bb57bb40f0426182c0abe868bdad58eb120
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/1563
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rwxr-xr-x | util/abuild/abuild | 6 |
1 files changed, 5 insertions, 1 deletions
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 |