diff options
author | Michal Simek <michal.simek@xilinx.com> | 2018-08-20 08:24:14 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2018-09-26 10:15:00 +0200 |
commit | 8eb55e19650b7b27ba76cd93a7c2bffba9552d77 (patch) | |
tree | ddc9091374355e4d320e5a85402d825c4c57aac7 /common | |
parent | 284b27cf81da10d55070a49ee8b739f71377a4fb (diff) | |
download | u-boot-8eb55e19650b7b27ba76cd93a7c2bffba9552d77.tar.gz u-boot-8eb55e19650b7b27ba76cd93a7c2bffba9552d77.tar.xz u-boot-8eb55e19650b7b27ba76cd93a7c2bffba9552d77.zip |
arm64: zynqmp: Handle CONFIG_BOARD_LATE_INIT via Kconfig
Disable BOARD_LATE_INIT via Kconfig.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig index 3030da4fc9..be2e1b80f7 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -557,7 +557,7 @@ config VERSION_VARIABLE next reset. config BOARD_LATE_INIT - bool + bool "Execute Board late init" help Sometimes board require some initialization code that might require once the actual init done, example saving board specific env, |