Config.mips 569 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. config TARGET_ARCH
  6. string
  7. default "mips"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_ANY_ENDIAN
  12. select ARCH_HAS_UCONTEXT
  13. select ARCH_HAS_DEPRECATED_SYSCALLS
  14. choice
  15. prompt "Target ABI"
  16. default CONFIG_MIPS_O32_ABI
  17. help
  18. This is the ABI you wish to build use. Choose either O32, N32
  19. or N64.
  20. config CONFIG_MIPS_O32_ABI
  21. bool "O32 ABI"
  22. config CONFIG_MIPS_N32_ABI
  23. bool "N32 ABI"
  24. config CONFIG_MIPS_N64_ABI
  25. bool "N64 ABI"
  26. endchoice