Kconfig 457 B

123456789101112131415161718192021222324252627
  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 SUPPORT_SPL
  12. select OF_CONTROL
  13. select DM
  14. select DM_SERIAL
  15. select ENV_IS_IN_FLASH
  16. endchoice
  17. source "board/xilinx/microblaze-generic/Kconfig"
  18. config SPL_LDSCRIPT
  19. default "arch/microblaze/cpu/u-boot-spl.lds"
  20. endmenu