mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
Having this as a 'default y' is rather annoying because it doesn't
actually compile unless other options are defined in the board header:
../cmd/bootm.c: In function 'do_imls_nor':
../cmd/bootm.c:330:7: error: 'CONFIG_SYS_MAX_FLASH_BANKS' undeclared (first use in this function); did you mean 'CONFIG_SYS_MAX_FLASH_SECT'?
i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Make it 'default n' so people who develop new boards that start from a
blank defconfig have one less compilation failure to debug.
Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
24 lines
557 B
Text
24 lines
557 B
Text
CONFIG_ARM=y
|
|
CONFIG_ARCH_ASPEED=y
|
|
CONFIG_ASPEED_AST2500=y
|
|
CONFIG_TARGET_EVB_AST2500=y
|
|
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
|
CONFIG_DEFAULT_DEVICE_TREE="ast2500-evb"
|
|
CONFIG_USE_BOOTARGS=y
|
|
CONFIG_BOOTARGS="console=ttyS4,115200n8 root=/dev/ram rw"
|
|
CONFIG_PRE_CONSOLE_BUFFER=y
|
|
CONFIG_PRE_CON_BUF_ADDR=0x1e720000
|
|
# CONFIG_DISPLAY_CPUINFO is not set
|
|
CONFIG_CMD_I2C=y
|
|
CONFIG_REGMAP=y
|
|
CONFIG_CLK=y
|
|
CONFIG_DM_I2C=y
|
|
CONFIG_SYS_I2C_ASPEED=y
|
|
CONFIG_PINCTRL=y
|
|
CONFIG_RAM=y
|
|
CONFIG_DM_RESET=y
|
|
CONFIG_DM_SERIAL=y
|
|
CONFIG_SYS_NS16550=y
|
|
CONFIG_SYSRESET=y
|
|
CONFIG_TIMER=y
|
|
CONFIG_WDT=y
|