device/common: remove the loader-all by default

The Boardconfig.mk can select the correct the loader bin
for generating.

Change-Id: Ia8f0751cad2202ff2f41745af74d568aa82b33bd
Signed-off-by: Caesar Wang <wxt@rock-chips.com>
This commit is contained in:
Caesar Wang
2018-12-18 11:52:14 +08:00
parent 5b76933e74
commit 7d086efa6d

View File

@ -45,7 +45,7 @@ function build_uboot(){
if [ -f u-boot/*_loader_*.bin ]; then
rm u-boot/*_loader_*.bin
fi
cd u-boot && ./make.sh $RK_UBOOT_DEFCONFIG && ./make.sh loader-all && cd -
cd u-boot && ./make.sh $RK_UBOOT_DEFCONFIG && cd -
if [ $? -eq 0 ]; then
echo "====Build uboot ok!===="
else