Kconfig 437 B

123456789101112131415161718192021222324252627282930313233343536
  1. if TARGET_UCP1020
  2. config SYS_BOARD
  3. string
  4. default "ucp1020"
  5. config SYS_VENDOR
  6. string
  7. default "Arcturus"
  8. config SYS_CONFIG_NAME
  9. string
  10. default "UCP1020"
  11. choice
  12. prompt "Target image select"
  13. config TARGET_UCP1020_NOR
  14. bool "NOR flash u-boot image"
  15. config TARGET_UCP1020_SPIFLASH
  16. bool "SPI flash u-boot image"
  17. endchoice
  18. if TARGET_UCP1020_SPIFLASH
  19. config UCBOOT
  20. bool
  21. default y
  22. config SPIFLASH
  23. bool
  24. default y
  25. endif
  26. endif