u-boot-brain/board/ti/am335x/Kconfig
Tom Rini 1286b7f6ca am335x_evm: Convert CONFIG_CONS_INDEX into a menu choice
- Drop CONFIG_SERIAL[1-6] and use CONFIG_CONS_INDEX tests instead
- Add choice and help text to board/ti/am335x/Kconfig
- Correct comment about IDK in board/ti/am335x/mux.c
- Remove am335x_evm_uart* defconfig files as they're just variations
  on a config option now.

Signed-off-by: Tom Rini <trini@ti.com>
2014-08-25 10:48:13 -04:00

33 lines
560 B
Plaintext

if TARGET_AM335X_EVM
config SYS_CPU
string
default "armv7"
config SYS_BOARD
string
default "am335x"
config SYS_VENDOR
string
default "ti"
config SYS_SOC
string
default "am33xx"
config SYS_CONFIG_NAME
string
default "am335x_evm"
config CONS_INDEX
int "UART used for console"
default 1
help
The AM335x SoC has a total of 6 UARTs (UART0 to UART5 as referenced
in documentation, etc) available to it. Depending on your specific
board you may want something other than UART0 as for example the IDK
uses UART3 so enter 4 here.
endif