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