mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
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:
parent
c86762657d
commit
246234fecb
1 changed files with 2 additions and 2 deletions
|
@ -113,7 +113,7 @@ function vendors
|
||||||
{
|
{
|
||||||
# make this a function so we can easily select
|
# make this a function so we can easily select
|
||||||
# without breaking readability
|
# 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
|
function mainboards
|
||||||
|
@ -123,7 +123,7 @@ function mainboards
|
||||||
|
|
||||||
VENDOR=$1
|
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
|
function architecture
|
||||||
|
|
Loading…
Add table
Reference in a new issue