|
|
|
CONFIG_ARM=y
|
|
|
|
CONFIG_TARGET_BRXRE1=y
|
|
|
|
CONFIG_SPL_GPIO_SUPPORT=y
|
|
|
|
CONFIG_SPL_LIBCOMMON_SUPPORT=y
|
|
|
|
CONFIG_SPL_LIBGENERIC_SUPPORT=y
|
|
|
|
CONFIG_SPL_I2C_SUPPORT=y
|
|
|
|
CONFIG_SPL_MMC_SUPPORT=y
|
|
|
|
CONFIG_SPL_POWER_SUPPORT=y
|
|
|
|
CONFIG_SPL_SERIAL_SUPPORT=y
|
|
|
|
CONFIG_SPL_YMODEM_SUPPORT=y
|
|
|
|
CONFIG_SYS_EXTRA_OPTIONS="SERIAL1,CONS_INDEX=1"
|
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>
9 years ago
|
|
|
CONFIG_BOOTDELAY=-2
|
|
|
|
# CONFIG_CONSOLE_MUX is not set
|
|
|
|
CONFIG_SYS_CONSOLE_IS_IN_ENV=y
|
|
|
|
CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE=y
|
|
|
|
CONFIG_SYS_CONSOLE_INFO_QUIET=y
|
|
|
|
CONFIG_VERSION_VARIABLE=y
|
|
|
|
# CONFIG_DISPLAY_CPUINFO is not set
|
|
|
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
|
|
|
CONFIG_SPL=y
|
|
|
|
CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR=y
|
|
|
|
CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR=0x300
|
|
|
|
CONFIG_HUSH_PARSER=y
|
|
|
|
# CONFIG_CMD_BOOTD is not set
|
|
|
|
# CONFIG_CMD_BOOTM is not set
|
|
|
|
CONFIG_CMD_BOOTZ=y
|
|
|
|
# CONFIG_CMD_GO is not set
|
|
|
|
# CONFIG_CMD_IMI is not set
|
|
|
|
# CONFIG_CMD_IMLS is not set
|
|
|
|
# CONFIG_CMD_XIMG is not set
|
|
|
|
# CONFIG_CMD_EDITENV is not set
|
|
|
|
# CONFIG_CMD_CRC32 is not set
|
|
|
|
# CONFIG_CMD_LOADB is not set
|
|
|
|
# CONFIG_CMD_LOADS is not set
|
|
|
|
# CONFIG_CMD_FLASH is not set
|
|
|
|
CONFIG_CMD_MMC=y
|
|
|
|
CONFIG_CMD_I2C=y
|
|
|
|
CONFIG_CMD_USB=y
|
|
|
|
# CONFIG_CMD_FPGA is not set
|
|
|
|
CONFIG_CMD_GPIO=y
|
|
|
|
# CONFIG_CMD_ITEST is not set
|
|
|
|
# CONFIG_CMD_SETEXPR is not set
|
|
|
|
CONFIG_CMD_DHCP=y
|
|
|
|
# CONFIG_CMD_NFS is not set
|
|
|
|
CONFIG_CMD_PING=y
|
|
|
|
CONFIG_CMD_TIME=y
|
|
|
|
CONFIG_CMD_FAT=y
|
|
|
|
CONFIG_CMD_FS_GENERIC=y
|
|
|
|
CONFIG_NETCONSOLE=y
|
|
|
|
CONFIG_SYS_NS16550=y
|
|
|
|
CONFIG_USB=y
|
|
|
|
CONFIG_USB_MUSB_HOST=y
|
|
|
|
CONFIG_USB_STORAGE=y
|
|
|
|
CONFIG_LCD=y
|
|
|
|
CONFIG_OF_LIBFDT=y
|
|
|
|
# CONFIG_EFI_LOADER is not set
|