2015-03-12 12:24:39 +08:00
|
|
|
CONFIG_ARM=y
|
2019-08-14 21:29:25 +08:00
|
|
|
CONFIG_ARCH_CPU_INIT=y
|
2020-05-06 20:02:38 +08:00
|
|
|
CONFIG_ARCH_ORION5X=y
|
2020-05-06 20:02:39 +08:00
|
|
|
CONFIG_SPL_LDSCRIPT="arch/arm/mach-orion5x/u-boot-spl.lds"
|
2018-02-04 01:10:38 +08:00
|
|
|
CONFIG_SYS_TEXT_BASE=0x00800000
|
2021-11-01 20:19:22 +08:00
|
|
|
CONFIG_SYS_MALLOC_LEN=0x40000
|
2016-09-13 13:18:41 +08:00
|
|
|
CONFIG_SPL_LIBCOMMON_SUPPORT=y
|
2016-09-13 13:18:43 +08:00
|
|
|
CONFIG_SPL_LIBGENERIC_SUPPORT=y
|
2020-08-11 03:31:07 +08:00
|
|
|
CONFIG_NR_DRAM_BANKS=1
|
2020-01-23 02:38:00 +08:00
|
|
|
CONFIG_ENV_SIZE=0x2000
|
|
|
|
CONFIG_ENV_SECT_SIZE=0x2000
|
2020-07-07 01:54:25 +08:00
|
|
|
CONFIG_SPL_TEXT_BASE=0xffff0000
|
2015-03-12 12:24:39 +08:00
|
|
|
CONFIG_TARGET_EDMINIV2=y
|
2021-08-09 02:20:12 +08:00
|
|
|
CONFIG_SPL_SERIAL=y
|
2018-04-08 08:27:54 +08:00
|
|
|
CONFIG_SPL=y
|
2016-07-29 18:01:47 +08:00
|
|
|
CONFIG_IDENT_STRING=" EDMiniV2"
|
2021-08-23 22:25:31 +08:00
|
|
|
CONFIG_SYS_LOAD_ADDR=0x800000
|
2016-06-07 14:31:14 +08:00
|
|
|
CONFIG_BOOTDELAY=3
|
2016-10-12 09:33:46 +08:00
|
|
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
2017-01-24 04:31:21 +08:00
|
|
|
CONFIG_ARCH_MISC_INIT=y
|
2017-05-03 17:13:32 +08:00
|
|
|
CONFIG_SPL_BOARD_INIT=y
|
2016-09-13 13:18:51 +08:00
|
|
|
CONFIG_SPL_NOR_SUPPORT=y
|
2016-04-22 09:37:19 +08:00
|
|
|
CONFIG_HUSH_PARSER=y
|
2018-02-06 21:58:59 +08:00
|
|
|
# CONFIG_AUTO_COMPLETE is not set
|
kconfig: add config option for shell prompt
Add option to set shell prompt string from menuconfig and migrate
boards globally.
The migration is done as follows:
- Boards that explicitly and unconditionally set CONFIG_SYS_PROMPT had the
entry moved to their defconfig files.
- Boards that defined some kind of #ifdef logic which selects the
CONFIG_SYS_PROMPT (for example qemu-mips) got an #undef CONFIG_SYS_PROMPT
right before the #ifdef logic and were left alone.
- This change forces CONFIG_SYS_PROMPT to be a per board decision, and thus
CONFIG_SYS_PROMPT was removed from all <soc>_common.h and <arch>_common.h
files. This results in a streamlined default value across platforms, and
includes the following files: spear-common, sunxi-common, mv-common,
ti_armv7_common, tegra-common, at91-sama5_common, and zynq-common.
- Boards that relied on <arch/soc>_common.h values of CONFIG_SYS_PROMPT were
not updated in their respective defconfig files under the assumption that
since they did not explicitly define a value, they're fine with whatever
the default is.
- On the other hand, boards that relied on a value defined in some
<boards>_common.h file such as woodburn_common, rpi-common,
bur_am335x_common, ls2085a_common, siemens_am33x_common, and
omap3_evm_common, had their values moved to the respective defconfig files.
- The define V_PROMPT was removed, since it is not used anywhere except for
assigning a value for CONFIG_SYS_PROMPT.
Cc: Tom Rini <trini@konsulko.com>
Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Igor Grinberg <grinberg@compulab.co.il>
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
[trini: Add spring, sniper, smartweb to conversion]
Signed-off-by: Tom Rini <trini@konsulko.com>
2015-08-03 17:36:58 +08:00
|
|
|
CONFIG_SYS_PROMPT="EDMiniV2> "
|
2017-10-09 02:48:01 +08:00
|
|
|
CONFIG_CMD_IMLS=y
|
2017-05-17 17:25:29 +08:00
|
|
|
CONFIG_CMD_IDE=y
|
2016-04-23 04:41:25 +08:00
|
|
|
CONFIG_CMD_I2C=y
|
2015-09-28 20:14:15 +08:00
|
|
|
# CONFIG_CMD_SETEXPR is not set
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_EXT2=y
|
2017-01-27 18:00:38 +08:00
|
|
|
CONFIG_ISO_PARTITION=y
|
2020-07-03 19:48:56 +08:00
|
|
|
CONFIG_ENV_OVERWRITE=y
|
2017-08-28 19:16:32 +08:00
|
|
|
CONFIG_ENV_IS_IN_FLASH=y
|
2019-11-19 09:02:10 +08:00
|
|
|
CONFIG_ENV_ADDR=0xFFF84000
|
2020-08-24 01:06:36 +08:00
|
|
|
CONFIG_NETCONSOLE=y
|
2021-08-19 11:12:24 +08:00
|
|
|
CONFIG_SYS_I2C_LEGACY=y
|
|
|
|
CONFIG_SPL_SYS_I2C_LEGACY=y
|
2021-08-18 05:59:47 +08:00
|
|
|
CONFIG_SYS_I2C_MVTWSI=y
|
2021-08-19 11:12:32 +08:00
|
|
|
CONFIG_SYS_I2C_SLAVE=0x0
|
2017-03-14 01:48:42 +08:00
|
|
|
# CONFIG_MMC is not set
|
2017-02-11 21:43:54 +08:00
|
|
|
CONFIG_MTD_NOR_FLASH=y
|
2018-10-15 04:10:50 +08:00
|
|
|
CONFIG_FLASH_CFI_DRIVER=y
|
|
|
|
CONFIG_SYS_FLASH_CFI=y
|
2018-05-16 16:31:43 +08:00
|
|
|
CONFIG_MVGBE=y
|
2018-07-21 12:03:57 +08:00
|
|
|
CONFIG_MII=y
|
2015-11-19 21:48:14 +08:00
|
|
|
CONFIG_SYS_NS16550=y
|
2016-09-09 04:31:26 +08:00
|
|
|
CONFIG_USB=y
|