
On Wed, Apr 15, 2015 at 05:57:55PM -0300, Fabio Estevam wrote:
From: Fabio Estevam fabio.estevam@freescale.com
Add the initial SPL support for HummingBoard-i2eX, which is based on a MX6 Dual.
For more information about HummingBoard, please check: http://www.solid-run.com/products/hummingboard/
Based on the work from Jon Nettleton and Rabeeh Khoury.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
If you add:
diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h index 7ded5bc..6ba04b2 100644 --- a/include/configs/mx6cuboxi.h +++ b/include/configs/mx6cuboxi.h @@ -238,6 +238,7 @@ #ifdef CONFIG_SPL #define CONFIG_SPL_LIBCOMMON_SUPPORT #define CONFIG_SPL_MMC_SUPPORT +#define CONFIG_SPL_FAT_SUPPORT #include "imx6_spl.h" #endif
Then:
+- Flash the u-boot.img image into the SD card:
+sudo dd if=u-boot.img of=/dev/mmcblk0 bs=1k seek=69; sync
Or if the first partition of the SD card is a FAT filesystem: cp u-boot.img /path/to/mount/of/mmcblk0p1/ ; sync
It will work from a FAT fs as well.
Tested-by: Tom Rini trini@konsulko.com