Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. if TARGET_AM335X_SHC
  2. config SYS_BOARD
  3. default "shc"
  4. config SYS_VENDOR
  5. default "bosch"
  6. config SYS_SOC
  7. default "am33xx"
  8. config SYS_CONFIG_NAME
  9. default "am335x_shc"
  10. choice
  11. prompt "enable different boot versions for the shc board"
  12. default SHC_EMMC
  13. help
  14. Select the boot version of the shc board.
  15. config SHC_EMMC
  16. bool "enable eMMC"
  17. help
  18. enable here the eMMC functionality on the bosch shc board.
  19. config SHC_ICT
  20. bool "enable ICT"
  21. help
  22. enable here the ICT functionality on the bosch shc board
  23. config SHC_NETBOOT
  24. bool "enable NETBOOT"
  25. help
  26. enable here the NETBOOT functionality on the bosch shc board
  27. config SHC_SDBOOT
  28. bool "enable SDBOOT"
  29. help
  30. enable here the SDBOOT functionality on the bosch shc board
  31. endchoice
  32. choice
  33. prompt "enable different board versions for the shc board"
  34. default C3_SAMPLE
  35. help
  36. Select the board version of the shc board.
  37. config B_SAMPLE
  38. bool "B Sample board version"
  39. help
  40. activate, if you want to build for the B sample version
  41. of the bosch shc board
  42. config B2_SAMPLE
  43. bool "B2 Sample board version"
  44. help
  45. activate, if you want to build for the B2 sample version
  46. of the bosch shc board
  47. config C_SAMPLE
  48. bool "C Sample board version"
  49. help
  50. activate, if you want to build for the C sample version
  51. of the bosch shc board
  52. config C2_SAMPLE
  53. bool "C2 Sample board version"
  54. help
  55. activate, if you want to build for the C2 sample version
  56. of the bosch shc board
  57. config C3_SAMPLE
  58. bool "C3 Sample board version"
  59. help
  60. activate, if you want to build for the C3 sample version
  61. of the bosch shc board
  62. config SERIES
  63. bool "Series board version"
  64. help
  65. activate, if you want to build for the Series version
  66. of the bosch shc board
  67. endchoice
  68. endif