This commit adds the following Kconfig symbols: - INIT_STACKS - UART_INTERRUPT_DRIVEN - CONSOLE_HANDLER - BUILD_TIMESTAMP - TICKLESS_KERNEL - CONTEXT_CUSTOM_DATA Change-Id: Id96a7e759c8beac73f27193df07b5c7562379b2f Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@linux.intel.com>
32 lines
774 B
Plaintext
32 lines
774 B
Plaintext
config DRV_NS16550
|
|
bool
|
|
default n
|
|
help
|
|
This option enables the NS16550 serial driver.
|
|
This specific driver can be used for the serial hardware
|
|
available at the Generic PC and Quark.
|
|
|
|
config DRV_K20_UART
|
|
bool
|
|
default n
|
|
help
|
|
This option enables the K20 serial driver.
|
|
This specific driver can be used for the serial hardware
|
|
available at the Freescale FRDM K64F BSP.
|
|
|
|
config DRV_STELLARIS_UART
|
|
bool
|
|
default n
|
|
help
|
|
This option enables the Stellaris serial driver.
|
|
This specific driver can be used for the serial hardware
|
|
available at the Texas Instrument LM3S6965 BSP.
|
|
|
|
config UART_INTERRUPT_DRIVEN
|
|
bool
|
|
prompt "Interrupt driven UART support"
|
|
default n
|
|
help
|
|
This option enables interrupt support for UART allowing console
|
|
input and UART based drivers.
|