Kconfig 643 B

123456789101112131415161718192021222324252627282930313233
  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. config STACK_SIZE
  19. hex "Define max stack size that can be used by u-boot"
  20. default 0x200000
  21. help
  22. Defines Max stack size that can be used by u-boot so that the
  23. initrd_high will be calculated as base stack pointer minus this
  24. stack size.
  25. source "board/xilinx/microblaze-generic/Kconfig"
  26. endmenu