2015-03-12 04:24:39 +00:00
|
|
|
CONFIG_ARM=y
|
2017-04-25 04:10:11 +00:00
|
|
|
CONFIG_ARCH_OMAP2PLUS=y
|
2017-07-28 13:32:52 +00:00
|
|
|
CONFIG_SYS_TEXT_BASE=0x80100000
|
2015-03-12 04:24:39 +00:00
|
|
|
CONFIG_TARGET_OMAP3_CAIRO=y
|
2017-07-24 03:19:39 +00:00
|
|
|
CONFIG_ENV_IS_IN_NAND=y
|
autoboot: remove CONFIG_ZERO_BOOTDELAY_CHECK
As the help message of CONFIG_BOOTDELAY says, CONFIG_BOOTDELAY=-2
means the autoboot with no delay, with no abort check even if
CONFIG_ZERO_BOOTDELAY_CHECK is defined.
To sum up, the autoboot behaves as follows:
[1] CONFIG_BOOTDELAY=0 && CONFIG_ZERO_BOOTDELAY_CHECK=y
autoboot with no delay, but you can abort it by key input
[2] CONFIG_BOOTDELAY=0 && CONFIG_ZERO_BOOTDELAY_CHECK=n
autoboot with no delay, with no check for abort
[3] CONFIG_BOOTDELAY=-1
disable autoboot
[4] CONFIG_BOOTDELAY=-2
autoboot with no delay, with no check for abort
As you notice, [2] and [4] come to the same result, which means we
do not need CONFIG_ZERO_BOOTDELAY_CHECK. We can control all the
cases only by CONFIG_BOOTDELAY, like this:
[1] CONFIG_BOOTDELAY=0
autoboot with no delay, but you can abort it by key input
[2] CONFIG_BOOTDELAY=-1
disable autoboot
[3] CONFIG_BOOTDELAY=-2
autoboot with no delay, with no check for abort
This commit converts the logic as follow:
CONFIG_BOOTDELAY=0 && CONFIG_ZERO_BOOTDELAY_CHECK=n
--> CONFIG_BOOTDELAY=-2
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Stefan Roese <sr@denx.de>
Acked-by: Igor Grinberg <grinberg@compulab.co.il>
Reviewed-by: Simon Glass <sjg@chromium.org>
Acked-by: Vladimir Zapolskiy <vz@mleia.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
Acked-by: Christian Riesch <christian.riesch@omicronenergy.com>
Acked-by: Hannes Schmelzer <hannes.schmelzer@br-automation.com>
2016-06-27 07:23:01 +00:00
|
|
|
CONFIG_BOOTDELAY=-2
|
2016-10-18 02:13:00 +00:00
|
|
|
CONFIG_SYS_CONSOLE_INFO_QUIET=y
|
2016-09-09 06:12:49 +00:00
|
|
|
CONFIG_VERSION_VARIABLE=y
|
2016-09-13 05:18:22 +00:00
|
|
|
CONFIG_SPL=y
|
2016-09-13 05:18:46 +00:00
|
|
|
CONFIG_SPL_MTD_SUPPORT=y
|
2016-10-06 05:55:15 +00:00
|
|
|
CONFIG_SPL_OS_BOOT=y
|
2016-04-22 01:37:19 +00:00
|
|
|
CONFIG_HUSH_PARSER=y
|
2015-09-28 12:14:15 +00:00
|
|
|
CONFIG_SYS_PROMPT="Cairo # "
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_BOOTZ=y
|
2015-06-22 21:15:30 +00:00
|
|
|
# CONFIG_CMD_IMI is not set
|
|
|
|
# CONFIG_CMD_IMLS is not set
|
2017-08-04 22:34:48 +00:00
|
|
|
CONFIG_CMD_SPL=y
|
2017-08-04 22:34:49 +00:00
|
|
|
CONFIG_CMD_SPL_NAND_OFS=0x240000
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_ASKENV=y
|
2015-06-22 21:15:30 +00:00
|
|
|
# CONFIG_CMD_FLASH is not set
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_MMC=y
|
2017-07-29 01:31:42 +00:00
|
|
|
CONFIG_CMD_NAND=y
|
|
|
|
CONFIG_CMD_NAND_LOCK_UNLOCK=y
|
2017-01-27 10:00:42 +00:00
|
|
|
CONFIG_CMD_PART=y
|
2016-04-22 20:41:25 +00:00
|
|
|
CONFIG_CMD_SPI=y
|
|
|
|
CONFIG_CMD_I2C=y
|
2015-06-22 21:15:30 +00:00
|
|
|
# CONFIG_CMD_FPGA is not set
|
2015-11-11 13:39:33 +00:00
|
|
|
CONFIG_CMD_GPIO=y
|
2015-06-22 21:15:30 +00:00
|
|
|
# CONFIG_CMD_NET is not set
|
2016-04-22 20:41:25 +00:00
|
|
|
CONFIG_CMD_DHCP=y
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_MII=y
|
2016-04-22 20:41:25 +00:00
|
|
|
CONFIG_CMD_PING=y
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_EXT2=y
|
|
|
|
CONFIG_CMD_EXT4=y
|
|
|
|
CONFIG_CMD_EXT4_WRITE=y
|
|
|
|
CONFIG_CMD_FAT=y
|
|
|
|
CONFIG_CMD_FS_GENERIC=y
|
2017-07-22 22:36:16 +00:00
|
|
|
CONFIG_CMD_MTDPARTS=y
|
2017-01-27 10:00:38 +00:00
|
|
|
CONFIG_ISO_PARTITION=y
|
2017-01-27 10:00:41 +00:00
|
|
|
CONFIG_EFI_PARTITION=y
|
2017-01-10 04:32:07 +00:00
|
|
|
CONFIG_MMC_OMAP_HS=y
|
2015-11-19 13:48:14 +00:00
|
|
|
CONFIG_SYS_NS16550=y
|
2017-06-02 15:03:50 +00:00
|
|
|
CONFIG_FAT_WRITE=y
|
2016-02-23 05:55:42 +00:00
|
|
|
CONFIG_OF_LIBFDT=y
|