Config.i386 817 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. select ARCH_HAS_UCONTEXT
  14. select ARCH_HAS_DEPRECATED_SYSCALLS
  15. select ARCH_VDSO_SUPPORT
  16. choice
  17. prompt "Target x86 Processor Family"
  18. default CONFIG_686
  19. help
  20. This is the processor type of your CPU. This information is used for
  21. selecting different handcoded optimization functions. Nowadays, most
  22. people have an i686 CPU. If you don't, you most likely know what this
  23. means and can pick the right one for your processor.
  24. config CONFIG_386
  25. bool "386"
  26. config CONFIG_486
  27. bool "486"
  28. config CONFIG_586
  29. bool "586"
  30. config CONFIG_686
  31. bool "686"
  32. endchoice