U-BOOT ships with the `mx6qsabresd` configuration file to configure a bootloader suitable for booting the Freescale i.MX6q SABRE evaluation board from SD card. Expose this option in the uboot-imx6 Makefile.
Signed-off-by: Keno Fischer <[email protected]> --- Resending this after fixing my subscription settings to openwrt-devel. My apologies if you receive this twice. This is my first patch submission to OpenWRT. Please let me know if anything is incorrect. I verified that this patch generates a usable bootloader for my SABRE board. diff --git a/package/boot/uboot-imx6/Makefile b/package/boot/uboot-imx6/Makefile index 7074da9..5a94913 100644 --- a/package/boot/uboot-imx6/Makefile +++ b/package/boot/uboot-imx6/Makefile @@ -64,6 +64,10 @@ define uboot/wandboard_solo TITLE:=U-Boot for the Wandboard Solo endef +define uboot/mx6qsabresd + TITLE:=U-Boot for SABRE i.MX6Quad board +endef + UBOOTS := \ nitrogen6dl \ nitrogen6dl2g \ @@ -73,7 +77,8 @@ UBOOTS := \ nitrogen6s1g \ wandboard_dl \ wandboard_quad \ - wandboard_solo + wandboard_solo \ + mx6qsabresd define Package/uboot/template define Package/uboot-imx6-$(1) _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
