Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. config API
  2. bool "Enable U-Boot API"
  3. depends on CC_IS_GCC
  4. help
  5. This option enables the U-Boot API. See api/README for more information.
  6. menu "API"
  7. depends on API
  8. config SYS_MMC_MAX_DEVICE
  9. int "Maximum number of MMC devices exposed via the API"
  10. default 1
  11. config EXAMPLES
  12. bool "Compile API examples"
  13. depends on !SANDBOX
  14. default y if ARCH_QEMU
  15. help
  16. U-Boot provides an API for standalone applications. Examples are
  17. provided in directory examples/.
  18. config STANDALONE_LOAD_ADDR
  19. depends on EXAMPLES
  20. hex "Address in memory to link standalone applications to"
  21. default 0xffffffff80200000 if MIPS && 64BIT
  22. default 0x8c000000 if SH
  23. default 0x82000000 if ARC
  24. default 0x80f00000 if MICROBLAZE
  25. default 0x80300000 if ARCH_OMAP2PLUS || FSL_LSCH2 || FSL_LSCH3
  26. default 0x80200000 if MIPS && 32BIT
  27. default 0x0c100000 if ARM
  28. default 0x02000000 if NIOS2
  29. default 0x00040000 if PPC || X86
  30. default 0x00020000 if M68K
  31. default 0x0 if RISCV
  32. default SYS_LOAD_ADDR
  33. help
  34. This option defines a board specific value for the address where
  35. standalone program gets loaded, thus overwriting the architecture
  36. dependent default settings.
  37. endmenu