Kconfig 492 B

123456789101112131415161718192021222324252627282930313233343536
  1. if TARGET_CONTROLCENTERDC
  2. config SYS_BOARD
  3. default "a38x"
  4. config SYS_VENDOR
  5. default "gdsys"
  6. config SYS_SOC
  7. default "mvebu"
  8. config SYS_CONFIG_NAME
  9. default "controlcenterdc"
  10. menu "Controlcenter DC board options"
  11. choice
  12. prompt "Select boot method"
  13. config SPL_BOOT_DEVICE_SPI
  14. bool "SPI"
  15. config SPL_BOOT_DEVICE_MMC
  16. bool "MMC"
  17. select SPL_LIBDISK_SUPPORT
  18. endchoice
  19. #config SPL_BOOT_DEVICE
  20. # int
  21. # default 1 if SPL_BOOT_DEVICE_SPI
  22. # default 2 if SPL_BOOT_DEVICE_MMC
  23. endmenu
  24. endif