-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 2852 b: refs/heads/master c: 3a9da76 h: refs/heads/master v: v3
- Loading branch information
Dave Hansen
authored and
Linus Torvalds
committed
Jun 23, 2005
1 parent
2167214
commit 9910101
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 5b505b90b2d54e526cc8d123bdef3b98c9f0bbc6 | ||
refs/heads/master: 3a9da7655d2d5b7f790a370328cf093440c80496 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
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 | ||
|