u-boot-imx8-mek: remove recipe

BSP is not longer available.

BugzID: 63879

Signed-off-by: Ramon Moesching <ramon.moesching@netmodule.com>
This commit is contained in:
Ramon Moesching 2020-06-30 16:38:26 +02:00
parent 57486cf692
commit 6f1f6a73ee
1 changed files with 0 additions and 36 deletions

View File

@ -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
}