From 371f39a211885c65bf001115348e674c31547f10 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Thu, 2 May 2019 17:56:42 +0200 Subject: u-boot: add inc to generate U-Boot default environment Including u-boot-toradex-initial-env.inc will generate a uEnv.txt for newer U-Boot versions using U-Boot's u-boot-initial-env Makfile target. It essential does what u-boot-toradex-env.inc did before. Note: Since there is now support for an exported environment in upstream U-Boot, we should upstream the OE logic to the official U-Boot too. Signed-off-by: Stefan Agner --- recipes-bsp/u-boot/u-boot-toradex-initial-env.inc | 71 +++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 recipes-bsp/u-boot/u-boot-toradex-initial-env.inc diff --git a/recipes-bsp/u-boot/u-boot-toradex-initial-env.inc b/recipes-bsp/u-boot/u-boot-toradex-initial-env.inc new file mode 100644 index 0000000..2287242 --- /dev/null +++ b/recipes-bsp/u-boot/u-boot-toradex-initial-env.inc @@ -0,0 +1,71 @@ +# This provides uEnv.txt files containing default environment using +# U-Boot build system + +do_compile_append() { + + if [ -n "${UBOOT_CONFIG}" ]; then + unset i j k + 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 + oe_runmake -C ${S} O=${B}/${config} u-boot-initial-env + cp ${B}/${config}/u-boot-initial-env ${B}/${config}/uEnv-${type}.txt + fi + done + unset j + done + unset i + else + oe_runmake -C ${S} O=${B} u-boot-initial-env + cp ${B}/u-boot-initial-env ${B}/uEnv.txt + fi +} + + +do_install_append() { + 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 ${D}/boot + install -m 644 ${B}/${config}/uEnv-${type}.txt ${D}/boot/uEnv-${type}-${PV}-${PR}.txt + ln -sf uEnv-${type}-${PV}-${PR}.txt ${D}/boot/uEnv-${type}.txt + ln -sf uEnv-${type}-${PV}-${PR}.txt ${D}/boot/uEnv.txt + fi + done + unset j + done + unset i + else + install -d ${D}/boot + install -m 644 ${B}/uEnv.txt ${D}/boot/uEnv-${MACHINE}-${PV}-${PR}.txt + ln -sf uEnv-${MACHINE}-${PV}-${PR}.txt ${D}/boot/uEnv.txt + fi +} + +do_deploy_append() { + 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} + install -m 644 ${B}/${config}/uEnv-${type}.txt ${DEPLOYDIR}/uEnv-${type}-${PV}-${PR}.txt + ln -sf uEnv-${type}-${PV}-${PR}.txt ${DEPLOYDIR}/uEnv-${type}.txt + ln -sf uEnv-${type}-${PV}-${PR}.txt ${DEPLOYDIR}/uEnv.txt + fi + done + unset j + done + unset i + else + install -d ${DEPLOYDIR} + install -m 644 ${B}/uEnv.txt ${DEPLOYDIR}/uEnv-${MACHINE}-${PV}-${PR}.txt + ln -sf uEnv-${MACHINE}-${PV}-${PR}.txt ${DEPLOYDIR}/uEnv.txt + fi +} -- cgit v1.2.3