summaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-11-05 19:24:58 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-11-05 19:25:13 +0100
commit9bba838316cc5aeca29c12ec7feb71a6edaa9737 (patch)
tree05aa8236c6d6e592c906acf9130b44e96451ab04 /target
parentff3e6ae831fe3c41d7b70518b9c10f5b776f4080 (diff)
preempt kernel options, add missing options, make a choice
Diffstat (limited to 'target')
-rw-r--r--target/linux/config/Config.in.kernel98
1 files changed, 63 insertions, 35 deletions
diff --git a/target/linux/config/Config.in.kernel b/target/linux/config/Config.in.kernel
index 36e338861..80485daf8 100644
--- a/target/linux/config/Config.in.kernel
+++ b/target/linux/config/Config.in.kernel
@@ -132,7 +132,7 @@ config ADK_KERNEL_CPU_LITTLE_ENDIAN
default y if ADK_TARGET_LITTLE_ENDIAN
choice
-prompt "Kernel Compression"
+prompt "Kernel compression"
default ADK_KERNEL_COMPRESS_NONE if ADK_TARGET_SYSTEM_MIKROTIK_RB532 \
|| ADK_TARGET_SYSTEM_KINETIS_K70 \
|| ADK_TARGET_SYSTEM_OR1K_SIM
@@ -232,40 +232,45 @@ config ADK_KERNEL_KERNEL_MODE_NEON
bool
default y if ADK_TARGET_ARCH_ARM_WITH_NEON
-config ADK_TARGET_NO_CMDLINE
- bool "Do not builtin any kernel cmdline"
+choice
+prompt "preemptive mode"
+
+config ADK_KERNEL_PREEMPT_NONE
+ bool "No Forced Preemption (Server)"
help
- No kernel command line modifictaion is done.
+ No Forced Preemption (Server)
-config ADK_KERNEL_SMP
- bool "Enable symmetric multi processing"
- depends on ADK_TARGET_WITH_SMP
- default y if ADK_TARGET_WITH_SMP
- default n
+config ADK_KERNEL_PREEMPT_VOLUNTARY
+ bool "Voluntary Kernel Preemption (Desktop)"
+ select ADK_KERNEL_HIGH_RES_TIMERS
help
- Enable symmetric multi processing support.
+ Voluntary Kernel Preemption (Desktop)
-config ADK_KERNEL_HIGHMEM
- bool "Enable high memory"
- default y if ADK_TARGET_SYSTEM_IBM_X40
- default y if ADK_TARGET_SYSTEM_RASPBERRY_PI2
- default y if ADK_TARGET_MODEL_CUBOX_I4PRO
- default y if ADK_TARGET_MODEL_CUBOX_I2ULTRA
- default y if ADK_TARGET_MODEL_CUBOX_I2EX
- default n
+config ADK_KERNEL_PREEMPT__LL
+ bool "Preemptible Kernel (Low-Latency Desktop)"
+ select ADK_KERNEL_HIGH_RES_TIMERS
help
- Enable high memory support.
+ Preemptible Kernel (Low-Latency Desktop)
-config ADK_KERNEL_CC_OPTIMIZE_FOR_SIZE
- bool "Optimize for size"
- # does not boot in qemu-microblaze
- depends on !ADK_TARGET_ARCH_MICROBLAZE
- default y
+config ADK_KERNEL_PREEMPT_RTB
+ bool "Preemptible Kernel (Basic RealTime)"
+ select ADK_KERNEL_HIGH_RES_TIMERS
+ depends on ADK_TARGET_KERNEL_VERSION_4_1
+ help
+ Preemptible Kernel (Basic RT)
-config ADK_KERNEL_PREEMPT
- bool "Enable preemptive kernel"
- help
- Enable preemptive mode.
+config ADK_KERNEL_PREEMPT_RT_FULL
+ bool "Fully Preemptible Kernel (RealTime)"
+ select ADK_KERNEL_HIGH_RES_TIMERS
+ depends on ADK_TARGET_KERNEL_VERSION_4_1
+ help
+ Fully Preemptible Kernel (RealTime)
+ https://www.kernel.org/pub/linux/kernel/projects/rt/
+
+endchoice
+
+config ADK_KERNEL_HIGH_RES_TIMERS
+ bool "Enable high resolution timers"
choice
prompt "tick configuration"
@@ -296,14 +301,36 @@ config ADK_KERNEL_HZ_1000
endchoice
-config ADK_KERNEL_HIGH_RES_TIMERS
- bool "Enable high resolution timers"
+config ADK_TARGET_NO_CMDLINE
+ bool "Do not builtin any kernel cmdline"
+ help
+ No kernel command line modifictaion is done.
+
+config ADK_KERNEL_SMP
+ bool "Enable symmetric multi processing"
+ depends on ADK_TARGET_WITH_SMP
+ default y if ADK_TARGET_WITH_SMP
+ default n
+ help
+ Enable symmetric multi processing support.
+
+config ADK_KERNEL_HIGHMEM
+ bool "Enable high memory"
+ default y if ADK_TARGET_SYSTEM_IBM_X40
+ default y if ADK_TARGET_SYSTEM_RASPBERRY_PI2
+ default y if ADK_TARGET_MODEL_CUBOX_I4PRO
+ default y if ADK_TARGET_MODEL_CUBOX_I2ULTRA
+ default y if ADK_TARGET_MODEL_CUBOX_I2EX
+ default n
+ help
+ Enable high memory support.
+
+config ADK_KERNEL_CC_OPTIMIZE_FOR_SIZE
+ bool "Optimize for size"
+ # does not boot in qemu-microblaze
+ depends on !ADK_TARGET_ARCH_MICROBLAZE
+ default y
-config ADK_KERNEL_PREEMPT_RT_FULL
- bool "Enable Full Realtime support (external kernel patch)"
- depends on ADK_TARGET_KERNEL_VERSION_4_1
- help
- https://www.kernel.org/pub/linux/kernel/projects/rt/
choice
prompt "Page size"
@@ -321,4 +348,5 @@ config ADK_KERNEL_PAGE_SIZE_64KB
bool "64kB"
endchoice
+
endmenu