zephyr/drivers/Kconfig
Juan Manuel Cruz b7fcfd53e5 Kconfig: Organization of Ksymbols for bluetooth.
This commit organizes the bluetooth Ksymbols in:
 - Driver symbols at drivers/bluetooth/Kconfig
 - Stack symbols at net/bluetooth/Kconfig

Change-Id: I8ebadeb8ac7f8a769d7620e4e44077a05915dc86
Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@linux.intel.com>
2016-02-05 20:14:08 -05:00

51 lines
749 B
Text

source "drivers/bluetooth/Kconfig"
config DRV_CONSOLE
bool
default y
help
This option enables the UART console driver.
if DRV_CONSOLE
source "drivers/console/Kconfig"
endif
config DRV_SERIAL
bool
default n
help
This option enables the serial driver.
if DRV_SERIAL
source "drivers/serial/Kconfig"
endif
config DRV_TIMER
bool
default n
help
This option enables the timer driver.
if DRV_TIMER
source "drivers/timer/Kconfig"
endif
config DRV_INTCTL
bool
default n
help
This option enables the interrupt controller driver.
config DRV_PCI
bool
default n
help
This option enables the PCI driver.
config DRV_RANDOM
bool
default n
help
This option enables the random number generator driver.
source "drivers/random/Kconfig"