Kconfig 317 B

12345678910111213141516
  1. menu "Development boards selection"
  2. choice BOARD_SELECTION
  3. bool "Development boards selection"
  4. default VISIONFIVE_V1
  5. config VISIONFIVE_V1
  6. bool "StarFive VisionFive V1 (StarFive JH7100)"
  7. endchoice
  8. config CONFIG_FILE
  9. string "config file name for target board"
  10. default "visionfive_v1" if VISIONFIVE_V1
  11. endmenu