Kconfig.x86 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. source "arch/um/Kconfig.common"
  2. menu "UML-specific options"
  3. menu "Host processor type and features"
  4. config CMPXCHG_LOCAL
  5. bool
  6. default n
  7. source "arch/x86/Kconfig.cpu"
  8. endmenu
  9. config UML_X86
  10. def_bool y
  11. select GENERIC_FIND_FIRST_BIT
  12. config 64BIT
  13. bool
  14. default SUBARCH = "x86_64"
  15. config X86_32
  16. def_bool !64BIT
  17. select HAVE_AOUT
  18. config X86_64
  19. def_bool 64BIT
  20. config RWSEM_XCHGADD_ALGORITHM
  21. def_bool X86_XADD && 64BIT
  22. config RWSEM_GENERIC_SPINLOCK
  23. def_bool !RWSEM_XCHGADD_ALGORITHM
  24. config 3_LEVEL_PGTABLES
  25. bool "Three-level pagetables (EXPERIMENTAL)" if !64BIT
  26. default 64BIT
  27. depends on EXPERIMENTAL
  28. help
  29. Three-level pagetables will let UML have more than 4G of physical
  30. memory. All the memory that can't be mapped directly will be treated
  31. as high memory.
  32. However, this it experimental on 32-bit architectures, so if unsure say
  33. N (on x86-64 it's automatically enabled, instead, as it's safe there).
  34. config ARCH_HAS_SC_SIGNALS
  35. def_bool !64BIT
  36. config ARCH_REUSE_HOST_VSYSCALL_AREA
  37. def_bool !64BIT
  38. config SMP_BROKEN
  39. def_bool 64BIT
  40. config GENERIC_HWEIGHT
  41. def_bool y
  42. source "arch/um/Kconfig.um"
  43. endmenu
  44. source "arch/um/Kconfig.rest"