kconfig: move dts Kconfigs to dts/
Those were placed under kernel/ for no good reason. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
11acc391dc
commit
c6ba67fe3f
3 changed files with 23 additions and 21 deletions
|
@ -14,6 +14,8 @@ source "arch/Kconfig"
|
||||||
|
|
||||||
source "kernel/Kconfig"
|
source "kernel/Kconfig"
|
||||||
|
|
||||||
|
source "dts/Kconfig"
|
||||||
|
|
||||||
source "drivers/Kconfig"
|
source "drivers/Kconfig"
|
||||||
|
|
||||||
source "net/Kconfig"
|
source "net/Kconfig"
|
||||||
|
|
21
dts/Kconfig
Normal file
21
dts/Kconfig
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
config HAS_DTS
|
||||||
|
bool "Uses Device Tree"
|
||||||
|
help
|
||||||
|
This option specifies that the target platform supports device tree
|
||||||
|
configuration.
|
||||||
|
|
||||||
|
config HAS_DTS_ADC
|
||||||
|
bool "ADC uses Device Tree"
|
||||||
|
depends on HAS_DTS
|
||||||
|
help
|
||||||
|
This option specifies that the target platform supports device tree
|
||||||
|
configuration for ADC.
|
||||||
|
|
||||||
|
config HAS_DTS_I2C
|
||||||
|
bool "I2C uses Device Tree"
|
||||||
|
default n
|
||||||
|
depends on HAS_DTS
|
||||||
|
help
|
||||||
|
This option specifies that the target platform supports device tree
|
||||||
|
configuration for I2c.
|
||||||
|
|
|
@ -9,27 +9,6 @@
|
||||||
|
|
||||||
menu "General Kernel Options"
|
menu "General Kernel Options"
|
||||||
|
|
||||||
config HAS_DTS
|
|
||||||
bool "Uses Device Tree"
|
|
||||||
help
|
|
||||||
This option specifies that the target platform supports device tree
|
|
||||||
configuration.
|
|
||||||
|
|
||||||
config HAS_DTS_ADC
|
|
||||||
bool "ADC uses Device Tree"
|
|
||||||
depends on HAS_DTS
|
|
||||||
help
|
|
||||||
This option specifies that the target platform supports device tree
|
|
||||||
configuration for ADC.
|
|
||||||
|
|
||||||
config HAS_DTS_I2C
|
|
||||||
bool "I2C uses Device Tree"
|
|
||||||
default n
|
|
||||||
depends on HAS_DTS
|
|
||||||
help
|
|
||||||
This option specifies that the target platform supports device tree
|
|
||||||
configuration for I2c.
|
|
||||||
|
|
||||||
config MULTITHREADING
|
config MULTITHREADING
|
||||||
bool
|
bool
|
||||||
prompt "Multi-threading"
|
prompt "Multi-threading"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue