]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/ti/am335x/Kconfig
Convert CONFIG_SPL_YMODEM_SUPPORT to Kconfig
[people/ms/u-boot.git] / board / ti / am335x / Kconfig
1 if TARGET_AM335X_EVM
2
3 config SPL_ENV_SUPPORT
4 default y
5
6 config SPL_WATCHDOG_SUPPORT
7 default y
8
9 config SPL_YMODEM_SUPPORT
10 default y
11
12 config SYS_BOARD
13 default "am335x"
14
15 config SYS_VENDOR
16 default "ti"
17
18 config SYS_SOC
19 default "am33xx"
20
21 config SYS_CONFIG_NAME
22 default "am335x_evm"
23
24 config CONS_INDEX
25 int "UART used for console"
26 range 1 6
27 default 1
28 help
29 The AM335x SoC has a total of 6 UARTs (UART0 to UART5 as referenced
30 in documentation, etc) available to it. Depending on your specific
31 board you may want something other than UART0 as for example the IDK
32 uses UART3 so enter 4 here.
33
34 config NOR
35 bool "Support for NOR flash"
36 help
37 The AM335x SoC supports having a NOR flash connected to the GPMC.
38 In practice this is seen as a NOR flash module connected to the
39 "memory cape" for the BeagleBone family.
40
41 source "board/ti/common/Kconfig"
42
43 endif