2014-07-30 13:08:14 +08:00
|
|
|
CONFIG_PPC=y
|
2016-07-29 18:01:47 +08:00
|
|
|
CONFIG_IDENT_STRING=" controlcenterd trailblazer 0.01"
|
2014-07-30 13:08:14 +08:00
|
|
|
CONFIG_MPC85xx=y
|
2017-05-17 17:25:15 +08:00
|
|
|
# CONFIG_CMD_ERRATA is not set
|
2014-07-30 13:08:14 +08:00
|
|
|
CONFIG_TARGET_CONTROLCENTERD=y
|
2015-05-13 03:46:24 +08:00
|
|
|
CONFIG_SYS_EXTRA_OPTIONS="TRAILBLAZER,SPIFLASH"
|
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 15:23:01 +08:00
|
|
|
CONFIG_BOOTDELAY=-2
|
2016-10-18 10:12:37 +08:00
|
|
|
CONFIG_SYS_CONSOLE_IS_IN_ENV=y
|
2016-10-12 09:33:46 +08:00
|
|
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
2017-01-24 04:31:20 +08:00
|
|
|
CONFIG_BOARD_EARLY_INIT_F=y
|
2014-09-16 15:33:00 +08:00
|
|
|
# CONFIG_CMD_BOOTM is not set
|
2015-06-23 05:15:30 +08:00
|
|
|
# CONFIG_CMD_IMLS is not set
|
2017-05-17 17:25:10 +08:00
|
|
|
CONFIG_CMD_EEPROM=y
|
2015-06-23 05:15:30 +08:00
|
|
|
# CONFIG_CMD_FLASH is not set
|
2016-04-25 05:29:26 +08:00
|
|
|
CONFIG_CMD_MMC=y
|
2015-06-23 05:15:30 +08:00
|
|
|
# CONFIG_CMD_SETEXPR is not set
|
2017-05-17 17:25:25 +08:00
|
|
|
# CONFIG_CMD_HASH is not set
|
2015-08-23 08:31:20 +08:00
|
|
|
CONFIG_CMD_TPM=y
|
2017-05-17 17:25:39 +08:00
|
|
|
# CONFIG_CMD_IRQ is not set
|
2017-01-27 18:00:37 +08:00
|
|
|
CONFIG_DOS_PARTITION=y
|
2015-10-07 04:54:42 +08:00
|
|
|
CONFIG_DM=y
|
2016-10-27 05:15:37 +08:00
|
|
|
# CONFIG_PCI is not set
|
2015-11-19 21:48:14 +08:00
|
|
|
CONFIG_SYS_NS16550=y
|
2015-08-23 08:31:20 +08:00
|
|
|
CONFIG_TPM_AUTH_SESSIONS=y
|
|
|
|
CONFIG_TPM=y
|
2017-05-16 00:17:49 +08:00
|
|
|
CONFIG_SHA1=y
|