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>
17 lines
420 B
Plaintext
17 lines
420 B
Plaintext
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.
|
|
|
|
config CONSOLE_HANDLER
|
|
bool
|
|
prompt "Enable console input handler"
|
|
select UART_INTERRUPT_DRIVEN
|
|
default n
|
|
help
|
|
This option enables console input handler allowing to write simple
|
|
interaction between serial console and the OS.
|