Config.i386 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. config HAVE_ELF
  6. bool
  7. select ARCH_HAS_MMU
  8. default y
  9. config TARGET_ARCH
  10. string
  11. default "i386"
  12. config ARCH_CFLAGS
  13. string
  14. config ARCH_LDFLAGS
  15. string
  16. config LIBGCC_CFLAGS
  17. string
  18. config ARCH_SUPPORTS_LITTLE_ENDIAN
  19. bool
  20. default y
  21. choice
  22. prompt "Target x86 Processor Family"
  23. default CONFIG_GENERIC_386
  24. help
  25. This is the processor type of your CPU. This information is used for
  26. optimizing purposes. To build a library that will run on all x86 CPU
  27. types (albeit not optimally fast), you can specify "386" here. If
  28. you pick anything other than "386", there is no guarantee that uClibc
  29. will even run on anything other than the selected processor type.
  30. Here are the settings recommended for greatest speed:
  31. - "Generic 386" select this if your compiler is already setup to
  32. optimize things properly.
  33. - "386" for the AMD/Cyrix/Intel 386DX/DXL/SL/SLC/SX, Cyrix/TI
  34. 486DLC/DLC2, UMC 486SX-S and NexGen Nx586. Only "386" kernels
  35. will run on a 386 class machine.
  36. - "486" for the AMD/Cyrix/IBM/Intel 486DX/DX2/DX4 or
  37. SL/SLC/SLC2/SLC3/SX/SX2 and UMC U5D or U5S.
  38. - "586" for Intel Pentium and other generic Pentium CPUs
  39. - "Pentium-MMX" for the Intel Pentium MMX.
  40. - "Pentium-Pro" for the Intel Pentium Pro/Celeron/Pentium II.
  41. - "Pentium-III" for the Intel Pentium III
  42. and Celerons based on the Coppermine core.
  43. - "Pentium-4" for the Intel Pentium 4.
  44. - "K6" for the AMD K6, K6-II and K6-III (aka K6-3D).
  45. - "Athlon" for the AMD K7 family (Athlon/Duron/Thunderbird).
  46. - "Crusoe" for the Transmeta Crusoe series.
  47. - "Winchip-C6" for original IDT Winchip.
  48. - "Winchip-2" for IDT Winchip 2.
  49. - "Winchip-2A" for IDT Winchips with 3dNow! capabilities.
  50. - "CyrixIII/VIA C3" for VIA Cyrix III or VIA C3.
  51. If you don't know what to do, choose "386".
  52. config CONFIG_GENERIC_386
  53. bool "Generic 386"
  54. config CONFIG_386
  55. bool "386"
  56. config CONFIG_486
  57. bool "486"
  58. config CONFIG_586
  59. bool "Pentium/586/K5/5x86/6x86/6x86MX/Winchip-2A/Winchip-3"
  60. config CONFIG_586MMX
  61. bool "Pentium-MMX"
  62. config CONFIG_686
  63. bool "Pentium-Pro/Celeron/Pentium-II"
  64. config CONFIG_PENTIUMIII
  65. bool "Pentium-III/Celeron(Coppermine)"
  66. config CONFIG_PENTIUM4
  67. bool "Pentium-4"
  68. config CONFIG_K6
  69. bool "K6/K6-II/K6-III"
  70. config CONFIG_K7
  71. bool "Athlon/Duron/K7"
  72. config CONFIG_CRUSOE
  73. bool "Crusoe"
  74. config CONFIG_WINCHIPC6
  75. bool "Winchip-C6"
  76. config CONFIG_WINCHIP2
  77. bool "Winchip-2"
  78. config CONFIG_CYRIXIII
  79. bool "CyrixIII/VIA-C3"
  80. endchoice