Config.i386 2.7 KB

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