2014-07-30 05:08:14 +00:00
|
|
|
CONFIG_PPC=y
|
2018-02-03 17:10:38 +00:00
|
|
|
CONFIG_SYS_TEXT_BASE=0xf8fc0000
|
2019-11-19 01:02:10 +00:00
|
|
|
CONFIG_ENV_SIZE=0x2000
|
2016-07-29 10:01:47 +00:00
|
|
|
CONFIG_IDENT_STRING=" controlcenterd trailblazer 0.01"
|
2014-07-30 05:08:14 +00:00
|
|
|
CONFIG_MPC85xx=y
|
2017-05-17 09:25:15 +00:00
|
|
|
# CONFIG_CMD_ERRATA is not set
|
2014-07-30 05:08:14 +00:00
|
|
|
CONFIG_TARGET_CONTROLCENTERD=y
|
2015-05-12 19:46:24 +00: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 07:23:01 +00:00
|
|
|
CONFIG_BOOTDELAY=-2
|
2016-10-18 02:12:37 +00:00
|
|
|
CONFIG_SYS_CONSOLE_IS_IN_ENV=y
|
2018-07-29 18:13:29 +00:00
|
|
|
# CONFIG_MISC_INIT_R is not set
|
2016-10-12 01:33:46 +00:00
|
|
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
2017-01-23 20:31:20 +00:00
|
|
|
CONFIG_BOARD_EARLY_INIT_F=y
|
2018-03-28 12:38:15 +00:00
|
|
|
CONFIG_BOARD_EARLY_INIT_R=y
|
2018-03-28 12:38:16 +00:00
|
|
|
CONFIG_LAST_STAGE_INIT=y
|
2018-02-06 13:58:59 +00:00
|
|
|
# CONFIG_CMDLINE_EDITING is not set
|
|
|
|
# CONFIG_AUTO_COMPLETE is not set
|
|
|
|
# CONFIG_SYS_LONGHELP is not set
|
2014-09-16 07:33:00 +00:00
|
|
|
# CONFIG_CMD_BOOTM is not set
|
2017-05-17 09:25:10 +00:00
|
|
|
CONFIG_CMD_EEPROM=y
|
2016-04-24 21:29:26 +00:00
|
|
|
CONFIG_CMD_MMC=y
|
2015-06-22 21:15:30 +00:00
|
|
|
# CONFIG_CMD_SETEXPR is not set
|
2018-06-19 10:24:23 +00:00
|
|
|
CONFIG_MP=y
|
2017-05-17 09:25:25 +00:00
|
|
|
# CONFIG_CMD_HASH is not set
|
2015-08-23 00:31:20 +00:00
|
|
|
CONFIG_CMD_TPM=y
|
2017-05-17 09:25:39 +00:00
|
|
|
# CONFIG_CMD_IRQ is not set
|
2017-01-27 10:00:37 +00:00
|
|
|
CONFIG_DOS_PARTITION=y
|
2019-11-13 03:46:36 +00:00
|
|
|
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
2015-10-06 20:54:42 +00:00
|
|
|
CONFIG_DM=y
|
2018-03-28 12:38:19 +00:00
|
|
|
CONFIG_FSL_ESDHC=y
|
2016-10-26 21:15:37 +00:00
|
|
|
# CONFIG_PCI is not set
|
2018-03-07 00:02:27 +00:00
|
|
|
CONFIG_CONS_INDEX=2
|
2015-11-19 13:48:14 +00:00
|
|
|
CONFIG_SYS_NS16550=y
|
2015-08-23 00:31:20 +00:00
|
|
|
CONFIG_TPM_AUTH_SESSIONS=y
|
|
|
|
CONFIG_TPM=y
|
2017-05-15 16:17:49 +00:00
|
|
|
CONFIG_SHA1=y
|