mkimage: remove support for 'vendor' u-boot, we use 'box' now

This commit is contained in:
chewitt 2019-06-18 06:21:18 +00:00
parent c66f66395b
commit 4228404417

View File

@ -212,11 +212,11 @@ EOF
mcopy -s "${RELEASE_DIR}/3rdparty/bootloader/overlays" ::
fi
elif [ "${BOOTLOADER}" = "u-boot" -a \( -n "${UBOOT_SYSTEM}" -o "${UBOOT_VERSION}" = "vendor" \) ]; then
elif [ "${BOOTLOADER}" = "u-boot" -a -n "${UBOOT_SYSTEM}" ]; then
# create bootloader configuration
echo "image: creating bootloader configuration..."
if [ "${UBOOT_VERSION}" != "vendor" ]; then
if [ "${UBOOT_SYSTEM}" != "box" ]; then
DTB="$(${SCRIPTS}/uboot_helper ${PROJECT} ${DEVICE} ${UBOOT_SYSTEM} dtb)"
if [ -f "${RELEASE_DIR}/3rdparty/bootloader/${DTB}" ]; then