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