In the case of booting from NAND on these boards, remove MMC support from SPL so that we can continue to fit into the safest partitioning of the available SRAM.
Reported-by: Heiko Schocher <[email protected]> Cc: Enric Balletbo i Serra <[email protected]> Signed-off-by: Tom Rini <[email protected]> --- include/configs/omap3_igep00x0.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/configs/omap3_igep00x0.h b/include/configs/omap3_igep00x0.h index 5e33845..3cdee02 100644 --- a/include/configs/omap3_igep00x0.h +++ b/include/configs/omap3_igep00x0.h @@ -20,6 +20,16 @@ #include <asm/mach-types.h> /* + * Remove non-NAND boot modes. + */ +#ifdef CONFIG_BOOT_NAND +#undef CONFIG_SPL_LIBDISK_SUPPORT +#undef CONFIG_SPL_MMC_SUPPORT +#undef CONFIG_SPL_FAT_SUPPORT +#undef CONFIG_SPL_EXT_SUPPORT +#endif + +/* * Display CPU and Board information */ #define CONFIG_DISPLAY_CPUINFO 1 -- 1.9.1 _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

