diff options
author | Alexander Graf <agraf@suse.de> | 2019-02-20 17:14:49 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-03-22 12:15:03 -0400 |
commit | ef331e3685fed584708055ad81804c6e4a1f64e2 (patch) | |
tree | 6c0d7d1f7a5eb26ed38c0af773b982eaea08fc48 /arch/arm/cpu/armv8/Kconfig | |
parent | 7a77836996837e07f3ba42da090010cb4b3af7ea (diff) | |
download | u-boot-ef331e3685fed584708055ad81804c6e4a1f64e2.tar.gz u-boot-ef331e3685fed584708055ad81804c6e4a1f64e2.tar.xz u-boot-ef331e3685fed584708055ad81804c6e4a1f64e2.zip |
armv8: Disable exception vectors in SPL by default
Commit 1416e2d2253 ("armv8: make SPL exception vectors optional") had a
typo in it which effectively disabled exception handling in SPL code always.
Since nobody complained, I guess we may as well disable exception handling
in SPL always by default.
So fix the bug to make the config option effective, but disable exception
handling in SPL by default. This gets us to the same functionality as before
by default, but with much less code included in the binary.
Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Matthias Brugger <mbrugger@suse.com>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'arch/arm/cpu/armv8/Kconfig')
-rw-r--r-- | arch/arm/cpu/armv8/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv8/Kconfig b/arch/arm/cpu/armv8/Kconfig index f0536038d6..7405c3a4a1 100644 --- a/arch/arm/cpu/armv8/Kconfig +++ b/arch/arm/cpu/armv8/Kconfig @@ -3,7 +3,7 @@ if ARM64 config ARMV8_SPL_EXCEPTION_VECTORS bool "Install crash dump exception vectors" depends on SPL - default y + default n help The default exception vector table is only used for the crash dump, but still takes quite a lot of space in the image size. |