aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r--arch/arm/Kconfig22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 9124ff75fe53..fbdd8533c05d 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -45,6 +45,9 @@ config ARM
45 select GENERIC_SMP_IDLE_THREAD 45 select GENERIC_SMP_IDLE_THREAD
46 select KTIME_SCALAR 46 select KTIME_SCALAR
47 select GENERIC_CLOCKEVENTS_BROADCAST if SMP 47 select GENERIC_CLOCKEVENTS_BROADCAST if SMP
48 select GENERIC_STRNCPY_FROM_USER
49 select GENERIC_STRNLEN_USER
50 select DCACHE_WORD_ACCESS if (CPU_V6 || CPU_V6K || CPU_V7) && !CPU_BIG_ENDIAN
48 help 51 help
49 The ARM series is a line of low-power-consumption RISC chip designs 52 The ARM series is a line of low-power-consumption RISC chip designs
50 licensed by ARM Ltd and targeted at embedded applications and 53 licensed by ARM Ltd and targeted at embedded applications and
@@ -2004,6 +2007,25 @@ config ARM_ATAG_DTB_COMPAT
2004 bootloaders, this option allows zImage to extract the information 2007 bootloaders, this option allows zImage to extract the information
2005 from the ATAG list and store it at run time into the appended DTB. 2008 from the ATAG list and store it at run time into the appended DTB.
2006 2009
2010choice
2011 prompt "Kernel command line type" if ARM_ATAG_DTB_COMPAT
2012 default ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER
2013
2014config ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER
2015 bool "Use bootloader kernel arguments if available"
2016 help
2017 Uses the command-line options passed by the boot loader instead of
2018 the device tree bootargs property. If the boot loader doesn't provide
2019 any, the device tree bootargs property will be used.
2020
2021config ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND
2022 bool "Extend with bootloader kernel arguments"
2023 help
2024 The command-line arguments provided by the boot loader will be
2025 appended to the the device tree bootargs property.
2026
2027endchoice
2028
2007config CMDLINE 2029config CMDLINE
2008 string "Default kernel command string" 2030 string "Default kernel command string"
2009 default "" 2031 default ""