2014-07-30 14:08:14 +09:00
|
|
|
CONFIG_PPC=y
|
2018-02-03 12:10:38 -05:00
|
|
|
CONFIG_SYS_TEXT_BASE=0xf8fc0000
|
2019-11-18 20:02:10 -05:00
|
|
|
CONFIG_ENV_SIZE=0x2000
|
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,DEVELOP"
|
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
|
2018-07-29 13:13:29 -05:00
|
|
|
# CONFIG_MISC_INIT_R is not set
|
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
|
2018-03-28 14:38:15 +02:00
|
|
|
CONFIG_BOARD_EARLY_INIT_R=y
|
2018-03-28 14:38:16 +02:00
|
|
|
CONFIG_LAST_STAGE_INIT=y
|
2018-02-06 07:58:59 -06:00
|
|
|
# CONFIG_CMDLINE_EDITING is not set
|
|
|
|
# CONFIG_AUTO_COMPLETE is not set
|
|
|
|
# CONFIG_SYS_LONGHELP is not set
|
2014-09-16 16:33:00 +09:00
|
|
|
# CONFIG_CMD_BOOTM is not set
|
2017-05-17 03:25:10 -06:00
|
|
|
CONFIG_CMD_EEPROM=y
|
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
|
2018-06-19 12:24:23 +02:00
|
|
|
CONFIG_MP=y
|
2017-05-17 03:25:25 -06:00
|
|
|
# CONFIG_CMD_HASH is not set
|
2015-08-22 18:31:20 -06:00
|
|
|
CONFIG_CMD_TPM=y
|
2017-05-17 03:25:39 -06:00
|
|
|
# CONFIG_CMD_IRQ is not set
|
2017-01-27 11:00:37 +01:00
|
|
|
CONFIG_DOS_PARTITION=y
|
2019-11-12 22:46:36 -05:00
|
|
|
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
2015-10-06 22:54:42 +02:00
|
|
|
CONFIG_DM=y
|
2018-03-28 14:38:19 +02:00
|
|
|
CONFIG_FSL_ESDHC=y
|
2016-10-26 17:15:37 -04:00
|
|
|
# CONFIG_PCI is not set
|
2018-03-06 19:02:27 -05:00
|
|
|
CONFIG_CONS_INDEX=2
|
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
|