summaryrefslogtreecommitdiff
path: root/recipes-bsp/imx-mkimage
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-bsp/imx-mkimage')
-rw-r--r--recipes-bsp/imx-mkimage/imx-boot_%.bbappend13
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes-bsp/imx-mkimage/imx-boot_%.bbappend b/recipes-bsp/imx-mkimage/imx-boot_%.bbappend
new file mode 100644
index 0000000..5fa1774
--- /dev/null
+++ b/recipes-bsp/imx-mkimage/imx-boot_%.bbappend
@@ -0,0 +1,13 @@
+do_compile_preppend () {
+ make_file=${S}/iMX8M/soc.mak
+ if [ -e ${make_file} ]; then
+ sed -i "s/^dtbs = .*dtb/dtbs = ${UBOOT_DTB_NAME}/g" ${make_file}
+ if [ ! -z ${DDR_FIRMWARE_VERSION} ]; then
+ sed -i "/^lpddr4_.mem_.d = / i LPDDR_FW_VERSION = _${DDR_FIRMWARE_VERSION}" ${make_file}
+ fi
+ fi
+}
+
+addtask compile_preppend before do_compile after do_configure
+
+COMPATIBLE_MACHINE = "(cl-imx8)"