Kconfig 397 B

12345678910111213141516171819202122232425
  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. imply CMD_DM
  17. endchoice
  18. source "board/xilinx/microblaze-generic/Kconfig"
  19. endmenu