diff options
| author | Evan Wilson <evan@oliodevices.com> | 2014-09-01 10:53:38 -0700 |
|---|---|---|
| committer | Evan Wilson <evan@oliodevices.com> | 2014-09-01 10:53:38 -0700 |
| commit | 78fd77df08033f0cb846c5deccc7144e888fd9a8 (patch) | |
| tree | f9f4d8b20e6232f68d6c24fff7f3d8b2c8aeef78 | |
| parent | a8cbf39614e5c9a59ae8f505c1d3255a68d87477 (diff) | |
| download | olio-uboot-2014.01-78fd77df08033f0cb846c5deccc7144e888fd9a8.tar.xz olio-uboot-2014.01-78fd77df08033f0cb846c5deccc7144e888fd9a8.zip | |
Enabling NAND UNLOCK command on H1 board
| -rw-r--r-- | arch/arm/cpu/armv7/omap3/board.c | 2 | ||||
| -rw-r--r-- | include/configs/omap3_h1.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/omap3/board.c b/arch/arm/cpu/armv7/omap3/board.c index 26cee8062..29228160c 100644 --- a/arch/arm/cpu/armv7/omap3/board.c +++ b/arch/arm/cpu/armv7/omap3/board.c @@ -75,7 +75,7 @@ u32 spl_boot_mode(void) u32 spl_boot_device(void) { - return BOOT_DEVICE_NAND; + return omap3_boot_device; } int board_mmc_init(bd_t *bis) diff --git a/include/configs/omap3_h1.h b/include/configs/omap3_h1.h index d367093d1..199dd98c9 100644 --- a/include/configs/omap3_h1.h +++ b/include/configs/omap3_h1.h @@ -93,6 +93,7 @@ #define CONFIG_CMD_ASKENV +#define CONFIG_CMD_NAND_LOCK_UNLOCK #define CONFIG_CMD_CACHE #define CONFIG_CMD_EXT2 /* EXT2 Support */ #define CONFIG_CMD_FS_GENERIC /* Generic FS support */ |