Config.mips 1.6 KB

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