diff options
author | Enric Balletbo i Serra <eballetbo@iseebcn.com> | 2013-02-07 00:40:06 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-18 13:51:19 -0500 |
commit | d9aacf4190136225763407a4c1ce2dccd30edf5e (patch) | |
tree | 7c4eac6a67cf1f7f87f14720e0fd826810ee2c9f /include/configs | |
parent | aa127df60ecf5ab1450936902e3374d5a92bd0fb (diff) | |
download | u-boot-imx-d9aacf4190136225763407a4c1ce2dccd30edf5e.zip u-boot-imx-d9aacf4190136225763407a4c1ce2dccd30edf5e.tar.gz u-boot-imx-d9aacf4190136225763407a4c1ce2dccd30edf5e.tar.bz2 |
OMAP3: igep00x0: Add new IGEP COM PROTON.
The IGEP COM PROTON is a new ultra compact module design with an
on-board ethernet controller.
Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/igep00x0.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/configs/igep00x0.h b/include/configs/igep00x0.h index 0e539ef..559e375 100644 --- a/include/configs/igep00x0.h +++ b/include/configs/igep00x0.h @@ -87,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 @@ -119,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 |