-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathKconfig
More file actions
56 lines (48 loc) · 1.63 KB
/
Kconfig
File metadata and controls
56 lines (48 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
config ARCH
string
option env="ARCH"
config KERNELVERSION
string
option env="KERNELVERSION"
menu "General setup"
config LOCALVERSION
string "Local version - append to kernel release"
default "-default"
---help---
Append an extra string to the end of your kernel version.
This will show up when you type uname, for example.
The string you set here will be appended after the contents of
any files with a filename matching localversion* in your
object and source tree, in that order. Your total string can
be a maximum of 64 characters.
config OPTIMIZE_FOR_SIZE
bool "Optimize for size (Look out for broken compilers!)"
default n
---help---
Enabling this option will pass "-Os" instead of "-O2" to gcc
resulting in a smaller code.
WARNING: some versions of gcc may generate incorrect code with this
option. If problems are observed, a gcc upgrade may be needed.
config FRAME_POINTER
bool "Compile with frame pointers"
default n
---help---
Enabling this will compile code with frame pointers (larger and slower code).
config NR_PROCS
int "Number of slots in the table for non-kernel processes"
default 100
---help---
Specify the number of slots in the table for non-kernel processes. User
processes share the same properties and count for one.
config NR_SYS_PROCS
int "Number of slots in the table with special privileges"
default 32
---help---
Specify the number of slots in the table for non-kernel processes with
special privileges.
config NR_CTRLRS
int "Number of controller tasks (/dev/cN device classes)"
default 2
---help---
Number of controller tasks (/dev/cN device classes).
endmenu