mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
461be2f96e
Now the types of CONFIG_SYS_{ARCH, CPU, SOC, VENDOR, BOARD, CONFIG_NAME} are specified in arch/Kconfig. We can delete the ones in arch and board Kconfig files. This commit can be easily reproduced by the following command: find . -name Kconfig -a ! -path ./arch/Kconfig | xargs sed -i -e ' /config[[:space:]]SYS_\(ARCH\|CPU\|SOC\|\VENDOR\|BOARD\|CONFIG_NAME\)/ { N s/\n[[:space:]]*string// } ' Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
28 lines
531 B
Text
28 lines
531 B
Text
if TARGET_AM335X_EVM
|
|
|
|
config SYS_CPU
|
|
default "armv7"
|
|
|
|
config SYS_BOARD
|
|
default "am335x"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_SOC
|
|
default "am33xx"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "am335x_evm"
|
|
|
|
config CONS_INDEX
|
|
int "UART used for console"
|
|
range 1 6
|
|
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
|