Kconfig 582 B

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