make.sh: delete u-boot.img and u-boot-dtb.img

this avoids users to be confused with uboot.img

Change-Id: Ifdbb1c483825ef065708ca81da3496bde3358e21
Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
This commit is contained in:
Joseph Chen 2018-04-16 20:38:01 +08:00 committed by Kever Yang
parent 02e4afbde6
commit 90b0cf64a7
1 changed files with 1 additions and 0 deletions

View File

@ -128,6 +128,7 @@ pack_uboot_image()
UBOOT_LOAD_ADDR=`sed -n "/CONFIG_SYS_TEXT_BASE=/s/CONFIG_SYS_TEXT_BASE=//p" ${OUTDIR}/include/autoconf.mk|tr -d '\r'`
${TOOLCHAIN_RKBIN}/loaderimage --pack --uboot ${OUTDIR}/u-boot.bin uboot.img ${UBOOT_LOAD_ADDR}
rm u-boot.img u-boot-dtb.img
echo "pack uboot okay! Input: ${OUTDIR}/u-boot.bin"
}