Kconfig 353 B

123456789101112131415161718
  1. # SPDX-License-Identifier: GPL-2.0
  2. menu "Development boards selection"
  3. choice BOARD_SELECTION
  4. bool "Development boards selection"
  5. default VISIONFIVE_V1
  6. config VISIONFIVE_V1
  7. bool "StarFive VisionFive V1 (StarFive JH7100)"
  8. endchoice
  9. config CONFIG_FILE
  10. string "config file name for target board"
  11. default "visionfive_v1" if VISIONFIVE_V1
  12. endmenu