dect
/
linux-2.6
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/mm/Kconfig

26 lines
649 B
Plaintext
Raw Normal View History

choice
prompt "Memory model"
default FLATMEM
default SPARSEMEM if ARCH_SPARSEMEM_DEFAULT
default DISCONTIGMEM if ARCH_DISCONTIGMEM_DEFAULT
config FLATMEM
bool "Flat Memory"
depends on !ARCH_DISCONTIGMEM_ENABLE || ARCH_FLATMEM_ENABLE
help
This option allows you to change some of the ways that
Linux manages its memory internally. Most users will
only have one option here: FLATMEM. This is normal
and a correct option.
If unsure, choose this option over any other.
config DISCONTIGMEM
bool "Discontigious Memory"
depends on ARCH_DISCONTIGMEM_ENABLE
help
If unsure, choose "Flat Memory" over this option.
endchoice