abuild: replace hardcoded values by their variables
Some coreboot-builds/ and makes made their way into abuild. Stop them. Change-Id: I5784e1fd623ada30e2fadcc74a7da3ee75c5ee96 Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/5772 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
262f31c352
commit
443fbcf6a3
|
@ -545,9 +545,9 @@ build_all_targets()
|
|||
if [ "$enable_blobs" = "true" ]; then
|
||||
echo "CONFIG_USE_BLOBS=y" > $TMPCFG
|
||||
fi
|
||||
make -j $cpus DOTCONFIG=$TMPCFG obj=coreboot-builds/temp objutil=coreboot-builds/sharedutils allnoconfig
|
||||
make -j $cpus DOTCONFIG=$TMPCFG obj=coreboot-builds/temp objutil=coreboot-builds/sharedutils tools || exit 1
|
||||
rm -rf coreboot-builds/temp $TMPCFG
|
||||
$MAKE -j $cpus DOTCONFIG=$TMPCFG obj=$TARGET/temp objutil=$TARGET/sharedutils allnoconfig
|
||||
$MAKE -j $cpus DOTCONFIG=$TMPCFG obj=$TARGET/temp objutil=$TARGET/sharedutils tools || exit 1
|
||||
rm -rf $TARGET/temp $TMPCFG
|
||||
for VENDOR in $( vendors ); do
|
||||
for MAINBOARD in $( mainboards $VENDOR ); do
|
||||
echo $VENDOR/$MAINBOARD
|
||||
|
|
Loading…
Reference in New Issue