diff options
author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-02-21 21:30:47 +0100 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-02-21 21:30:47 +0100 |
commit | a5627914daad144727655a72bd3c8a8958fbcdcf (patch) | |
tree | f24eb6b8bbf9a8080fd29f22eace1beade2e314c /include/configs/igep00x0.h | |
parent | 03268374db9133686b738acca212247023840ffc (diff) | |
parent | 4adfcd68cc10449e2fda0f9fac8b09f2b5c09a02 (diff) | |
download | u-boot-imx-a5627914daad144727655a72bd3c8a8958fbcdcf.zip u-boot-imx-a5627914daad144727655a72bd3c8a8958fbcdcf.tar.gz u-boot-imx-a5627914daad144727655a72bd3c8a8958fbcdcf.tar.bz2 |
Merge branch 'u-boot-ti/master' into 'u-boot-arm/master'
Diffstat (limited to 'include/configs/igep00x0.h')
-rw-r--r-- | include/configs/igep00x0.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/configs/igep00x0.h b/include/configs/igep00x0.h index 0e7f924..559e375 100644 --- a/include/configs/igep00x0.h +++ b/include/configs/igep00x0.h @@ -36,6 +36,7 @@ #include <asm/arch/cpu.h> #include <asm/arch/omap3.h> +#include <asm/mach-types.h> /* * Display CPU and Board information @@ -86,7 +87,10 @@ #define CONFIG_DOS_PARTITION 1 /* define to enable boot progress via leds */ +#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0020) || \ + (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0030) #define CONFIG_SHOW_BOOT_PROGRESS +#endif /* USB */ #define CONFIG_MUSB_UDC 1 @@ -118,7 +122,8 @@ #ifdef CONFIG_BOOT_NAND #define CONFIG_CMD_NAND #endif -#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0020) +#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0020) || \ + (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0032) #define CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */ #endif #define CONFIG_CMD_DHCP |