summaryrefslogtreecommitdiff
path: root/recipes-bsp/u-boot/u-boot-toradex-common_2018.03.inc
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2020-08-04 18:50:27 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2020-08-20 14:44:11 +0200
commitd3da0283a9a7e8acd49fc6e9ef5b1fd703c7e2af (patch)
treecd3c7864cd15e3ce8b7ef50d6e14d47f97765870 /recipes-bsp/u-boot/u-boot-toradex-common_2018.03.inc
parent649da1c35dec52b96a317a14e71559c15e3dda34 (diff)
u-boot-toradex: update to nxp 2020.04
Related-to: ELB-2758 Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Diffstat (limited to 'recipes-bsp/u-boot/u-boot-toradex-common_2018.03.inc')
-rw-r--r--recipes-bsp/u-boot/u-boot-toradex-common_2018.03.inc45
1 files changed, 0 insertions, 45 deletions
diff --git a/recipes-bsp/u-boot/u-boot-toradex-common_2018.03.inc b/recipes-bsp/u-boot/u-boot-toradex-common_2018.03.inc
deleted file mode 100644
index 999ed4f..0000000
--- a/recipes-bsp/u-boot/u-boot-toradex-common_2018.03.inc
+++ /dev/null
@@ -1,45 +0,0 @@
-HOMEPAGE = "http://www.denx.de/wiki/U-Boot/WebHome"
-SECTION = "bootloaders"
-
-LICENSE = "GPLv2+"
-LIC_FILES_CHKSUM = "file://Licenses/gpl-2.0.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-
-SRC_URI = " \
- git://git.toradex.com/u-boot-toradex.git;protocol=https;branch=${SRCBRANCH} \
- file://fw_env.config \
-"
-
-SRCREV = "548a7dcc242452d447634beef792447515c324f8"
-SRCREV_use-head-next = "${AUTOREV}"
-SRCBRANCH = "toradex_imx_v2018.03_4.14.98_2.3.0_bringup"
-
-S = "${WORKDIR}/git"
-
-inherit toradex-u-boot-localversion
-
-UBOOT_INITIAL_ENV = "u-boot-initial-env"
-
-COMPATIBLE_MACHINE = "(mx8)"
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-
-do_deploy_append_mx8m() {
- # Deploy the mkimage, u-boot-nodtb.bin and fsl-imx8m*-XX.dtb for mkimage to generate boot binary
- if [ -n "${UBOOT_CONFIG}" ]
- then
- for config in ${UBOOT_MACHINE}; do
- i=$(expr $i + 1);
- for type in ${UBOOT_CONFIG}; do
- j=$(expr $j + 1);
- if [ $j -eq $i ]
- then
- install -d ${DEPLOYDIR}/${BOOT_TOOLS}
- install -m 0777 ${B}/${config}/arch/arm/dts/${UBOOT_DTB_NAME} ${DEPLOYDIR}/${BOOT_TOOLS}
- install -m 0777 ${B}/${config}/tools/mkimage ${DEPLOYDIR}/${BOOT_TOOLS}/mkimage_uboot
- install -m 0777 ${B}/${config}/u-boot-nodtb.bin ${DEPLOYDIR}/${BOOT_TOOLS}/u-boot-nodtb.bin-${MACHINE}-${UBOOT_CONFIG}
- fi
- done
- unset j
- done
- unset i
- fi
-}