From 6f1f6a73ee3702991253accad0e9cda0362f2ab3 Mon Sep 17 00:00:00 2001 From: Ramon Moesching Date: Tue, 30 Jun 2020 16:38:26 +0200 Subject: [PATCH] u-boot-imx8-mek: remove recipe BSP is not longer available. BugzID: 63879 Signed-off-by: Ramon Moesching --- recipes-bsp/u-boot/u-boot-imx8-mek_git.bb | 36 ----------------------- 1 file changed, 36 deletions(-) delete mode 100644 recipes-bsp/u-boot/u-boot-imx8-mek_git.bb diff --git a/recipes-bsp/u-boot/u-boot-imx8-mek_git.bb b/recipes-bsp/u-boot/u-boot-imx8-mek_git.bb deleted file mode 100644 index b167877..0000000 --- a/recipes-bsp/u-boot/u-boot-imx8-mek_git.bb +++ /dev/null @@ -1,36 +0,0 @@ -require u-boot-nm.inc - -DEPENDS += "bc-native coreutils-native dtc-native" - -# Force machine configuration for this recipe -UBOOT_MACHINE = "imx8qxp_mek_defconfig" - -# Be aware github/netmodule git -SRC_URI = "git://git.netmodule.intranet/nmrouter/u-boot;protocol=ssh;user=gitea;branch=2019.04/standard/imx8-mek" - -# License -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://Licenses/README;md5=30503fd321432fc713238f582193b78e" - -# Should be updated when a new U-Boot Version is available -SRCREV ?= "${AUTOREV}" -PV = "v2019.04pre+git${SRCPV}" - -UBOOT_BINARY = "flash.bin" -UBOOT_MAKE_TARGET = "flash.bin" - -do_compile() { - export ATF_LOAD_ADDR=0x80000000 - export BL33_LOAD_ADDR=0x80020000 - oe_runmake ${UBOOT_MACHINE} - # TODO: move this to U-Boot defconfig - echo "CONFIG_CMD_EXT2=y" >> ${B}/.config - echo "CONFIG_CMD_EXT4=y" >> ${B}/.config - echo "CONFIG_CMD_EXT4_WRITE=y" >> ${B}/.config - oe_runmake ${UBOOT_MAKE_TARGET} - dd if=${S}/u-boot.itb of=${S}/flash.bin bs=512 seek=528 -} - -do_deploy_append() { - cp ${S}/flash.bin ${DEPLOYDIR}/flash.bin -}