Kconfig 408 B

1234567891011121314151617181920212223
  1. if TARGET_DRA7XX_EVM
  2. config SYS_BOARD
  3. default "dra7xx"
  4. config SYS_VENDOR
  5. default "ti"
  6. config SYS_CONFIG_NAME
  7. default "dra7xx_evm"
  8. config CONS_INDEX
  9. int "UART used for console"
  10. range 1 6
  11. default 1
  12. help
  13. The DRA7xx (and AM57x) SoC has a total of 6 UARTs available to it.
  14. Depending on your specific board you may want something other than UART1
  15. here.
  16. source "board/ti/common/Kconfig"
  17. endif