summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDirk Brandewie <dirk.j.brandewie@intel.com>2015-09-29 07:08:58 -0700
committerAnas Nashif <anas.nashif@intel.com>2016-02-05 20:24:20 -0500
commitf37a4fcd71e09fde122657beddc5ee6e6b94c65e (patch)
tree48a395f3aac2335c9825c6668dfceadd6972c324 /misc
parent98a9c4abfa2db3d2f2092a20677b13850aab0ce0 (diff)
kernel: kconfig: remove dependencies on EXPERIMENTAL
Remove the hard dependencies on EXPERIMENTAL symbol. Mark all the symbols the relied on EXPERIMENTAL as EXPERIMENTAL in their prompt Change-Id: I2779b0ed0776b3d510a8e2e44b35b83d7ad2377c Signed-off-by: Dirk Brandewie <dirk.j.brandewie@intel.com> Signed-off-by: Anas Nashif <anas.nashif@intel.com>
Diffstat (limited to 'misc')
-rw-r--r--misc/Kconfig24
1 files changed, 4 insertions, 20 deletions
diff --git a/misc/Kconfig b/misc/Kconfig
index cc3e1e6c5..32b235a3e 100644
--- a/misc/Kconfig
+++ b/misc/Kconfig
@@ -31,20 +31,6 @@
#
-menu "General Setup"
-config EXPERIMENTAL
- bool
- prompt "Experimental Options"
- default n
- help
- This option enables all experimental options in the project.
- If it is disabled, all options marked as EXPERIMENTAL will
- be disabled.
- If it is enabled, all options marked as EXPERIMENTAL will
- be available for selection.
-
-endmenu
-
menu "Cryptography"
source "lib/crypto/tinycrypt/Kconfig"
endmenu
@@ -122,9 +108,9 @@ endchoice
config MINIMAL_LIBC_EXTENDED
- bool "Build additional libc functions"
+ bool "Build additional libc functions [EXPERIMENTAL]"
default n
- depends on MINIMAL_LIBC && EXPERIMENTAL
+ depends on MINIMAL_LIBC
help
This option enables building some optional libc functions that
are not used directly by the kernel but can be used in applications.
@@ -225,13 +211,11 @@ config BOOTLOADER_UNKNOWN
endmenu
menu "System Monitoring Options"
- depends on EXPERIMENTAL
config PERFORMANCE_METRICS
bool
- prompt "Enable performance metrics"
+ prompt "Enable performance metrics [EXPERIMENTAL]"
default n
- depends on EXPERIMENTAL
help
Enable Performance Metrics.
@@ -239,7 +223,7 @@ config BOOT_TIME_MEASUREMENT
bool
prompt "Boot time measurements [EXPERIMENTAL]"
default n
- depends on EXPERIMENTAL && PERFORMANCE_METRICS
+ depends on PERFORMANCE_METRICS
help
This option enables the recording of timestamps during system start
up. The global variable __start_tsc records the time kernel begins