Kconfig 1.2 KB

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