Kernel 0.5.9-r6; Process cover stuff, paging go from experimental, lot
[ZeXOS.git] / kernel / Kconfig
blobaf4d0261b3f260a019213b2ea6f955189c5ff5d3
1 # For a description of the syntax of this configuration file,
2 # see http://lxr.linux.no/source/Documentation/kbuild/kconfig-language.txt.
4 menu "User interface"
6 config UI_KBD_LAYOUT
7         string "Keyboard layout"
8         default "us"
9         help
10           Keyboard layout used in shell.
12 config UI_SHELL_INITCMD
13         string "Shell init command"
14         default ""
15         help
16           Command, which is started when shell is spawned.
18 endmenu
20 menu "Memory management"
22 config MEM_PAGING
23         bool "Paging"
24         default y
25         help
26           Paging is a transfer of pages between main memory and an auxiliary store, such as hard disk drive. Paging is an important part of virtual memory implementation in most contemporary general-purpose operating systems, allowing them to easily use disk storage for data that does not fit into physical RAM.
28 config MEM_DLALLOC
29         bool "DLAlloc (EXPERIMENTAL)"
30         default n
31         help
32           Version of malloc/free/realloc written by Doug Lea
34 endmenu
36 source "drivers/Kconfig"