mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
Convert CONFIG_USE_ONENAND_BOARD_INIT to Kconfig
This converts the following to Kconfig: CONFIG_USE_ONENAND_BOARD_INIT Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
ddd39d0cc1
commit
dd4bf24445
8 changed files with 7 additions and 4 deletions
|
@ -1298,6 +1298,10 @@ config CMD_ONENAND
|
|||
and erasing blocks. It allso provides a way to show and change
|
||||
bad blocks, and test the device.
|
||||
|
||||
config USE_ONENAND_BOARD_INIT
|
||||
bool "Call onenand_board_init() in the onenand command"
|
||||
depends on CMD_ONENAND
|
||||
|
||||
config CMD_OSD
|
||||
bool "osd"
|
||||
help
|
||||
|
|
|
@ -52,6 +52,7 @@ CONFIG_CMD_SPL=y
|
|||
# CONFIG_CMD_FLASH is not set
|
||||
CONFIG_CMD_NAND=y
|
||||
CONFIG_CMD_ONENAND=y
|
||||
CONFIG_USE_ONENAND_BOARD_INIT=y
|
||||
# CONFIG_CMD_SETEXPR is not set
|
||||
CONFIG_CMD_CACHE=y
|
||||
CONFIG_CMD_MTDPARTS=y
|
||||
|
|
|
@ -32,6 +32,7 @@ CONFIG_CMD_DFU=y
|
|||
CONFIG_CMD_GPT=y
|
||||
CONFIG_CMD_MMC=y
|
||||
CONFIG_CMD_ONENAND=y
|
||||
CONFIG_USE_ONENAND_BOARD_INIT=y
|
||||
CONFIG_CMD_USB_MASS_STORAGE=y
|
||||
# CONFIG_CMD_SETEXPR is not set
|
||||
CONFIG_CMD_CACHE=y
|
||||
|
|
|
@ -26,6 +26,7 @@ CONFIG_SYS_CBSIZE=256
|
|||
CONFIG_SYS_PBSIZE=384
|
||||
# CONFIG_CMD_FLASH is not set
|
||||
CONFIG_CMD_ONENAND=y
|
||||
CONFIG_USE_ONENAND_BOARD_INIT=y
|
||||
# CONFIG_CMD_SETEXPR is not set
|
||||
CONFIG_CMD_CACHE=y
|
||||
CONFIG_CMD_FAT=y
|
||||
|
|
|
@ -66,7 +66,6 @@
|
|||
BOOTENV
|
||||
|
||||
/* OneNAND config */
|
||||
#define CONFIG_USE_ONENAND_BOARD_INIT
|
||||
#define CONFIG_SYS_ONENAND_BASE ONENAND_MAP
|
||||
#define CONFIG_SYS_ONENAND_BLOCK_SIZE (128*1024)
|
||||
|
||||
|
|
|
@ -126,7 +126,6 @@
|
|||
/* FLASH and environment organization */
|
||||
#define CONFIG_MMC_DEFAULT_DEV 0
|
||||
|
||||
#define CONFIG_USE_ONENAND_BOARD_INIT
|
||||
#define CONFIG_SYS_ONENAND_BASE 0xB0000000
|
||||
|
||||
#define CONFIG_USB_GADGET_DWC2_OTG_PHY
|
||||
|
|
|
@ -87,7 +87,6 @@
|
|||
"mmcrootpart=3\0" \
|
||||
"opts=always_resume=1"
|
||||
|
||||
#define CONFIG_USE_ONENAND_BOARD_INIT
|
||||
#define CONFIG_SYS_ONENAND_BASE 0x0C000000
|
||||
|
||||
#define CONFIG_USB_GADGET_DWC2_OTG_PHY
|
||||
|
|
|
@ -90,7 +90,6 @@
|
|||
* Boot configuration
|
||||
*/
|
||||
|
||||
#define CONFIG_USE_ONENAND_BOARD_INIT
|
||||
#define CONFIG_SYS_ONENAND_BASE 0xE7100000
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue