-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
60 lines (45 loc) · 839 Bytes
/
Kconfig
File metadata and controls
60 lines (45 loc) · 839 Bytes
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
57
58
59
60
mainmenu "FastRC v1.0.4 Configuration"
menu "General options"
config STATIC
bool "Link statically"
default n
choice
prompt "Build architecture"
default TARGET_HOST
config TARGET_HOST
bool "Host"
config TARGET_I386
bool "i386"
config TARGET_X86_64
bool "x86_64"
endchoice
endmenu
menu "Startup system"
config MOUNT_FS
bool "Auto-mount filesystems on startup"
default n
config MOUNT_FS_DEV
bool "Mount /dev"
default n
depends on MOUNT_FS
config MOUNT_FS_DEVPTS
bool "Mount /dev/pts"
default n
depends on MOUNT_FS_DEV
config MOUNT_FS_PROC
bool "Mount /proc"
default n
depends on MOUNT_FS
config MOUNT_FS_SYS
bool "Mount /sys"
default n
depends on MOUNT_FS
config MOUNT_FS_TMP
bool "Mount /tmp"
default n
depends on MOUNT_FS
config MOUNT_FS_RUN
bool "Mount /run"
default n
depends on MOUNT_FS
endmenu