diff options
author | Tom Rini <trini@konsulko.com> | 2020-07-24 17:14:47 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-08 11:03:52 -0400 |
commit | 7d080773347c1f6e0e896d9284134a2a411155d6 (patch) | |
tree | d1980362503baa76640290b557206aaad17fab2f /include/configs/s5p4418_nanopi2.h | |
parent | b904d79e4809bf35cf53c2e5fee0f73647bab07a (diff) |
Convert CONFIG_SYS_MMC_ENV_DEV et al to Kconfig
This converts the following to Kconfig:
CONFIG_SYS_MMC_ENV_DEV
CONFIG_SYS_MMC_ENV_PART
Note that with this conversion we now have consistent behavior with
respect to ensuring that we have always selected the correct MMC
device and hardware partition.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs/s5p4418_nanopi2.h')
-rw-r--r-- | include/configs/s5p4418_nanopi2.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/include/configs/s5p4418_nanopi2.h b/include/configs/s5p4418_nanopi2.h index da5b29a46e..b54d2da9b4 100644 --- a/include/configs/s5p4418_nanopi2.h +++ b/include/configs/s5p4418_nanopi2.h @@ -102,11 +102,6 @@ /* Boot Argument Buffer Size */ #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE -/*----------------------------------------------------------------------- - * allow to overwrite serial and ethaddr - */ -#define CONFIG_ENV_OVERWRITE - #ifdef CONFIG_HUSH_PARSER #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " #endif @@ -152,26 +147,6 @@ #endif /*----------------------------------------------------------------------- - * SD/MMC - */ -#if defined(CONFIG_MMC) -/* eMMC = 0, SD-card = 2 */ -#define CONFIG_SYS_MMC_DEV 2 -#define CONFIG_SYS_MMC_ENV_DEV CONFIG_SYS_MMC_DEV -#endif - -/*----------------------------------------------------------------------- - * Default environment organization - */ -#if !defined(CONFIG_ENV_IS_IN_MMC) && !defined(CONFIG_ENV_IS_IN_NAND) && \ - !defined(CONFIG_ENV_IS_IN_FLASH) && !defined(CONFIG_ENV_IS_IN_EEPROM) - /* default: CONFIG_ENV_IS_NOWHERE */ - #define CONFIG_ENV_IS_NOWHERE - #define CONFIG_ENV_OFFSET 1024 - #define CONFIG_ENV_SIZE (4 * 1024) /* env size */ -#endif - -/*----------------------------------------------------------------------- * VIDEO */ |