mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
configs: migrate CONFIG_SYS_MTDPARTS_RUNTIME to defconfigs
Move CONFIG_SYS_MTDPARTS_RUNTIME into Kconfig done by moveconfig.py. Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com> Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
This commit is contained in:
parent
8cc28146f5
commit
c39e19a9b0
9 changed files with 12 additions and 8 deletions
|
@ -52,6 +52,7 @@ CONFIG_NET_RANDOM_ETHADDR=y
|
|||
CONFIG_DM_MMC=y
|
||||
CONFIG_MMC_OMAP_HS=y
|
||||
CONFIG_MTD=y
|
||||
CONFIG_SYS_MTDPARTS_RUNTIME=y
|
||||
CONFIG_MTD_RAW_NAND=y
|
||||
CONFIG_SYS_NAND_BUSWIDTH_16BIT=y
|
||||
CONFIG_SPL_NAND_SIMPLE=y
|
||||
|
|
|
@ -88,6 +88,7 @@ CONFIG_SUPPORT_EMMC_BOOT=y
|
|||
CONFIG_STM32_SDMMC2=y
|
||||
CONFIG_MTD=y
|
||||
CONFIG_DM_MTD=y
|
||||
CONFIG_SYS_MTDPARTS_RUNTIME=y
|
||||
CONFIG_MTD_RAW_NAND=y
|
||||
CONFIG_NAND_STM32_FMC2=y
|
||||
CONFIG_MTD_SPI_NAND=y
|
||||
|
|
|
@ -81,6 +81,7 @@ CONFIG_DM_MMC=y
|
|||
CONFIG_SUPPORT_EMMC_BOOT=y
|
||||
CONFIG_STM32_SDMMC2=y
|
||||
CONFIG_MTD=y
|
||||
CONFIG_SYS_MTDPARTS_RUNTIME=y
|
||||
CONFIG_DM_SPI_FLASH=y
|
||||
CONFIG_SPI_FLASH_MACRONIX=y
|
||||
CONFIG_SPI_FLASH_SPANSION=y
|
||||
|
|
|
@ -79,6 +79,7 @@ CONFIG_SUPPORT_EMMC_BOOT=y
|
|||
CONFIG_STM32_SDMMC2=y
|
||||
CONFIG_MTD=y
|
||||
CONFIG_DM_MTD=y
|
||||
CONFIG_SYS_MTDPARTS_RUNTIME=y
|
||||
CONFIG_MTD_RAW_NAND=y
|
||||
CONFIG_NAND_STM32_FMC2=y
|
||||
CONFIG_MTD_SPI_NAND=y
|
||||
|
|
|
@ -75,6 +75,7 @@ CONFIG_SUPPORT_EMMC_BOOT=y
|
|||
CONFIG_STM32_SDMMC2=y
|
||||
CONFIG_MTD=y
|
||||
CONFIG_DM_MTD=y
|
||||
CONFIG_SYS_MTDPARTS_RUNTIME=y
|
||||
CONFIG_MTD_RAW_NAND=y
|
||||
CONFIG_NAND_STM32_FMC2=y
|
||||
CONFIG_MTD_SPI_NAND=y
|
||||
|
|
|
@ -22,6 +22,13 @@ config MTD_NOR_FLASH
|
|||
help
|
||||
Enable support for parallel NOR flash.
|
||||
|
||||
config SYS_MTDPARTS_RUNTIME
|
||||
bool "Allow MTDPARTS to be configured at runtime"
|
||||
depends on MTD
|
||||
help
|
||||
This option allows to call the function board_mtdparts_default to
|
||||
dynamically build the variables mtdids and mtdparts at runtime.
|
||||
|
||||
config FLASH_CFI_DRIVER
|
||||
bool "Enable CFI Flash driver"
|
||||
help
|
||||
|
|
|
@ -71,8 +71,6 @@
|
|||
|
||||
#endif
|
||||
|
||||
#define CONFIG_SYS_MTDPARTS_RUNTIME
|
||||
|
||||
/* OneNAND config */
|
||||
#define CONFIG_USE_ONENAND_BOARD_INIT
|
||||
#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
|
||||
|
|
|
@ -85,11 +85,6 @@
|
|||
#define CONFIG_SYS_AUTOLOAD "no"
|
||||
#endif
|
||||
|
||||
/* Dynamic MTD partition support */
|
||||
#if defined(CONFIG_STM32_QSPI) || defined(CONFIG_NAND_STM32_FMC2)
|
||||
#define CONFIG_SYS_MTDPARTS_RUNTIME
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_DM_VIDEO
|
||||
#define CONFIG_VIDEO_BMP_RLE8
|
||||
#define CONFIG_BMP_16BPP
|
||||
|
|
|
@ -3191,7 +3191,6 @@ CONFIG_SYS_MRAM_SIZE
|
|||
CONFIG_SYS_MSC0_VAL
|
||||
CONFIG_SYS_MSC1_VAL
|
||||
CONFIG_SYS_MSC2_VAL
|
||||
CONFIG_SYS_MTDPARTS_RUNTIME
|
||||
CONFIG_SYS_MX5_CLK32
|
||||
CONFIG_SYS_MX5_HCLK
|
||||
CONFIG_SYS_MX6_CLK32
|
||||
|
|
Loading…
Reference in a new issue