fix rock3a UBOOT_TARGET_MAP (#3845)

This commit is contained in:
Jianfeng Liu
2022-06-01 23:10:36 +08:00
committed by GitHub
parent 0c438d8c56
commit 9a491c50c5

View File

@@ -142,7 +142,9 @@ prepare_boot_configuration() {
if [[ $BOOT_SUPPORT_SPI == yes ]]; then
UBOOT_TARGET_MAP="BL31=$RKBIN_DIR/$BL31_BLOB tpl/u-boot-tpl.bin spl/u-boot-spl.bin u-boot.itb ${UBOOT_TARGET_MAP} rkspi_loader.img"
if [[ $BOARD != "rock-3a" ]]; then
UBOOT_TARGET_MAP="BL31=$RKBIN_DIR/$BL31_BLOB tpl/u-boot-tpl.bin spl/u-boot-spl.bin u-boot.itb ${UBOOT_TARGET_MAP} rkspi_loader.img"
fi
fi
}