abuild: Only build boards with Kconfig

We have dupes in the tree for aliases,
board variants and the like,
for board-status reporting purposes.
But we don't need to build all of them.

Change-Id: Ic1c6415568800350bdc0db97471e3875d9eac98c
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/5776
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
Patrick Georgi 2014-05-17 21:50:06 +02:00 committed by Kyösti Mälkki
parent c86762657d
commit 246234fecb
1 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ function vendors
{
# make this a function so we can easily select
# without breaking readability
ls -1 "$ROOT/src/mainboard" | grep -v Kconfig | grep -v Makefile
ls -1 $ROOT/src/mainboard/*/Kconfig 2>/dev/null | sed "s:^$ROOT/src/mainboard/\(.*\)/Kconfig$:\1:"
}
function mainboards
@ -123,7 +123,7 @@ function mainboards
VENDOR=$1
ls -1 $ROOT/src/mainboard/$VENDOR | grep -v Kconfig
ls -1 $ROOT/src/mainboard/$VENDOR/*/Kconfig 2>/dev/null | sed "s:^$ROOT/src/mainboard/$VENDOR/\(.*\)/Kconfig$:\1:"
}
function architecture