diff options
author | Simon Glass <sjg@chromium.org> | 2017-07-23 21:19:48 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-07-25 21:34:39 -0400 |
commit | 609bf924117950b88987a5fa477acf1239bfdbc1 (patch) | |
tree | 812a615e2547e14c9a8108fa88553c4ce12024cb /include | |
parent | b31e065f8999d2dc70f3deb430c9b66a5d0d02ea (diff) | |
download | u-boot-609bf924117950b88987a5fa477acf1239bfdbc1.tar.gz |
Convert CONFIG_ENV_IS_IN_ONENAND to Kconfig
This converts the following to Kconfig:
CONFIG_ENV_IS_IN_ONENAND
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/omap3_evm.h | 1 | ||||
-rw-r--r-- | include/configs/smdkc100.h | 1 | ||||
-rw-r--r-- | include/configs/vct.h | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/include/configs/omap3_evm.h b/include/configs/omap3_evm.h index 76c00d4efa6..15eb08bba8e 100644 --- a/include/configs/omap3_evm.h +++ b/include/configs/omap3_evm.h @@ -267,7 +267,6 @@ #if !defined(CONFIG_ENV_IS_NOWHERE) #if defined(CONFIG_CMD_NAND) #elif defined(CONFIG_CMD_ONENAND) -#define CONFIG_ENV_IS_IN_ONENAND #define CONFIG_ENV_OFFSET ONENAND_ENV_OFFSET #endif #endif /* CONFIG_ENV_IS_NOWHERE */ diff --git a/include/configs/smdkc100.h b/include/configs/smdkc100.h index dded4d4bf90..14b49c4fafc 100644 --- a/include/configs/smdkc100.h +++ b/include/configs/smdkc100.h @@ -174,7 +174,6 @@ /*----------------------------------------------------------------------- * Boot configuration */ -#define CONFIG_ENV_IS_IN_ONENAND 1 #define CONFIG_ENV_SIZE (128 << 10) /* 128KiB, 0x20000 */ #define CONFIG_ENV_ADDR (256 << 10) /* 256KiB, 0x40000 */ #define CONFIG_ENV_OFFSET (256 << 10) /* 256KiB, 0x40000 */ diff --git a/include/configs/vct.h b/include/configs/vct.h index 5a62e3fb825..f3c6c27696b 100644 --- a/include/configs/vct.h +++ b/include/configs/vct.h @@ -183,7 +183,6 @@ #if defined(CONFIG_VCT_ONENAND) #define CONFIG_USE_ONENAND_BOARD_INIT -#define CONFIG_ENV_IS_IN_ONENAND #define CONFIG_SYS_ONENAND_BASE 0x00000000 /* this is not real address */ #define CONFIG_SYS_FLASH_BASE 0x00000000 #define CONFIG_ENV_ADDR (128 << 10) /* after compr. U-Boot image */ |