Kconfig 499 B

12345678910111213141516171819202122232425
  1. if TARGET_AM335X_SL50
  2. config SYS_BOARD
  3. default "sl50"
  4. config SYS_VENDOR
  5. default "tcl"
  6. config SYS_SOC
  7. default "am33xx"
  8. config SYS_CONFIG_NAME
  9. default "am335x_sl50"
  10. config CONS_INDEX
  11. int "UART used for console"
  12. range 1 6
  13. default 1
  14. help
  15. The AM335x SoC has a total of 6 UARTs (UART0 to UART5 as referenced
  16. in documentation, etc) available to it. Depending on your specific
  17. board you may want something other than UART0 as for example the IDK
  18. uses UART3 so enter 4 here.
  19. endif