Config.i386 2.5 KB

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