Config.i386 791 B

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