diff mbox

[U-Boot] mx6: Add initial SPL support for HummingBoard-i2eX

Message ID 20150415223513.GU16702@bill-the-cat
State Changes Requested
Delegated to: Stefano Babic
Headers show

Commit Message

Tom Rini April 15, 2015, 10:35 p.m. UTC
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:

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>

Comments

Fabio Estevam April 16, 2015, 12:40 a.m. UTC | #1
Hi Tom,

On Wed, Apr 15, 2015 at 7:35 PM, Tom Rini <trini@konsulko.com> wrote:

> 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

Thanks, I can add this option in v2.

Regards,

Fabio Estevam
diff mbox

Patch

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