diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2015-04-21 07:18:39 +0200 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2015-05-13 09:24:16 -0700 |
commit | a8f2d01967d1e5304435024927a147abb7ad0f1e (patch) | |
tree | 03b2562f32dff5afade1fcde8137afdf73dcefd7 /arch/arm | |
parent | 79cf644e2d330cf6fdd3ef489e44f9fb1c6f196a (diff) | |
download | u-boot-imx-a8f2d01967d1e5304435024927a147abb7ad0f1e.zip u-boot-imx-a8f2d01967d1e5304435024927a147abb7ad0f1e.tar.gz u-boot-imx-a8f2d01967d1e5304435024927a147abb7ad0f1e.tar.bz2 |
tegra: Boot in non-secure mode by default
Upstream Linux is broken with default configs when PSCI, thus non-secure
mode is enabled. So the user should explicitly enable this mode, e.g.
when she disabled CONFIG_CPU_IDLE in Linux (in which case it's safe to
use). We can revert this workaround once Linux got fixed.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/cpu/armv7/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/Kconfig b/arch/arm/cpu/armv7/Kconfig index 61e7c82..6c5d5dd 100644 --- a/arch/arm/cpu/armv7/Kconfig +++ b/arch/arm/cpu/armv7/Kconfig @@ -16,7 +16,7 @@ config ARMV7_NONSEC config ARMV7_BOOT_SEC_DEFAULT boolean "Boot in secure mode by default" if EXPERT depends on ARMV7_NONSEC - default n + default y if TEGRA ---help--- Say Y here to boot in secure mode by default even if non-secure mode is supported. This option is useful to boot kernels which do not |