Kconfig 475 B

1234567891011121314151617181920212223242526272829
  1. menu "MicroBlaze architecture"
  2. depends on MICROBLAZE
  3. config SYS_ARCH
  4. default "microblaze"
  5. choice
  6. prompt "Target select"
  7. optional
  8. config TARGET_MICROBLAZE_GENERIC
  9. bool "Support microblaze-generic"
  10. select BOARD_LATE_INIT
  11. select DM
  12. select DM_SERIAL
  13. select OF_CONTROL
  14. select SUPPORT_SPL
  15. select SYSRESET
  16. select DM_SPI
  17. select DM_SPI_FLASH
  18. select SPI
  19. imply CMD_DM
  20. endchoice
  21. source "board/xilinx/Kconfig"
  22. source "board/xilinx/microblaze-generic/Kconfig"
  23. endmenu