From: Lech Perczak Date: Sun, 24 Apr 2022 12:16:19 +0000 (+0200) Subject: uboot-envtools: imx: cortexa7: add TechNexion PICO-PI-IMX7D X-Git-Tag: v23.05.0-rc1~2990 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=e62f1388c30efbe697c108064942ccb29b0805b3;p=openwrt%2Fstaging%2Fhauke.git uboot-envtools: imx: cortexa7: add TechNexion PICO-PI-IMX7D Add configuration for upstream U-Boot environment for booting from eMMC. Signed-off-by: Lech Perczak --- diff --git a/package/boot/uboot-envtools/files/imx_cortexa7 b/package/boot/uboot-envtools/files/imx_cortexa7 new file mode 100644 index 0000000000..df6a436260 --- /dev/null +++ b/package/boot/uboot-envtools/files/imx_cortexa7 @@ -0,0 +1,19 @@ +[ -e /etc/config/ubootenv ] && exit 0 + +touch /etc/config/ubootenv + +. /lib/uboot-envtools.sh +. /lib/functions.sh + +board=$(board_name) + +case "$board" in +technexion,imx7d-pico-pi) + ubootenv_add_uci_config "/dev/mmcblk2" "0xc0000" "0x2000" "0x2000" + ;; +esac + +config_load ubootenv +config_foreach ubootenv_add_app_config ubootenv + +exit 0