Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. if TEGRA20
  2. choice
  3. prompt "Tegra20 board select"
  4. optional
  5. config TARGET_HARMONY
  6. bool "NVIDIA Tegra20 Harmony evaluation board"
  7. select BOARD_LATE_INIT
  8. config TARGET_MEDCOM_WIDE
  9. bool "Avionic Design Medcom-Wide board"
  10. select BOARD_LATE_INIT
  11. config TARGET_PAZ00
  12. bool "Paz00 board"
  13. select BOARD_LATE_INIT
  14. config TARGET_PLUTUX
  15. bool "Avionic Design Plutux board"
  16. select BOARD_LATE_INIT
  17. config TARGET_SEABOARD
  18. bool "NVIDIA Seaboard"
  19. select BOARD_LATE_INIT
  20. config TARGET_TEC
  21. bool "Avionic Design Tamonten Evaluation Carrier"
  22. select BOARD_LATE_INIT
  23. config TARGET_TRIMSLICE
  24. bool "Compulab TrimSlice board"
  25. select BOARD_LATE_INIT
  26. config TARGET_VENTANA
  27. bool "NVIDIA Tegra20 Ventana evaluation board"
  28. select BOARD_LATE_INIT
  29. config TARGET_COLIBRI_T20
  30. bool "Toradex Colibri T20 board"
  31. select BOARD_LATE_INIT
  32. endchoice
  33. config SYS_SOC
  34. default "tegra20"
  35. source "board/nvidia/harmony/Kconfig"
  36. source "board/avionic-design/medcom-wide/Kconfig"
  37. source "board/compal/paz00/Kconfig"
  38. source "board/avionic-design/plutux/Kconfig"
  39. source "board/nvidia/seaboard/Kconfig"
  40. source "board/avionic-design/tec/Kconfig"
  41. source "board/compulab/trimslice/Kconfig"
  42. source "board/nvidia/ventana/Kconfig"
  43. source "board/toradex/colibri_t20/Kconfig"
  44. endif