Config.mips 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. choice
  13. prompt "Target ABI"
  14. default CONFIG_MIPS_O32_ABI
  15. help
  16. This is the ABI you wish to build use. Choose either O32, N32
  17. or N64.
  18. config CONFIG_MIPS_O32_ABI
  19. bool "O32 ABI"
  20. config CONFIG_MIPS_N32_ABI
  21. bool "N32 ABI"
  22. config CONFIG_MIPS_N64_ABI
  23. bool "N64 ABI"
  24. endchoice
  25. choice
  26. prompt "Target Processor Architecture"
  27. default CONFIG_MIPS_ISA_1 if CONFIG_MIPS_O32_ABI
  28. default CONFIG_MIPS_ISA_3 if CONFIG_MIPS_N32_ABI
  29. default CONFIG_MIPS_ISA_3 if CONFIG_MIPS_N64_ABI
  30. help
  31. This selects the instruction set architecture of your MIPS CPU. This
  32. information is used for optimizing purposes. To build a library that
  33. will run on any MIPS CPU, you can specify "Generic (MIPS I)" here.
  34. If you pick anything other than "Generic (MIPS I)," there is no
  35. guarantee that uClibc will even run on anything other than the
  36. selected processor type.
  37. You should probably select the MIPS ISA that best matches the
  38. CPU you will be using on your device. uClibc will be tuned
  39. for that architecture.
  40. If you don't know what to do, choose "Generic (MIPS I)"
  41. config CONFIG_MIPS_ISA_1
  42. bool "Generic (MIPS I)"
  43. config CONFIG_MIPS_ISA_2
  44. bool "MIPS II"
  45. config CONFIG_MIPS_ISA_3
  46. bool "MIPS III"
  47. config CONFIG_MIPS_ISA_4
  48. bool "MIPS IV"
  49. config CONFIG_MIPS_ISA_MIPS32
  50. bool "MIPS32"
  51. config CONFIG_MIPS_ISA_MIPS32R2
  52. bool "MIPS32r2"
  53. config CONFIG_MIPS_ISA_MIPS64
  54. bool "MIPS64"
  55. endchoice