Kconfig 1.2 KB

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