-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathKconfig
81 lines (64 loc) · 1.69 KB
/
Kconfig
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
mainmenu "RLX Linux Configuration"
comment "select components"
choice
prompt "Selected Target"
config BOARD_rtl8197F
bool "rtl8197F"
endchoice
config BOARDDIR
string
##############################################################
choice
prompt "Selected Kernel"
default LINUX_3.10
config LINUX_3.10
bool "linux-3.10"
endchoice
config LINUXDIR
string
choice
prompt "Selected Busybox"
config BZBOX_busybox-1.13
bool "busybox-1.13"
endchoice
config BZBOXDIR
string
if BOARD_rtl8196e||BOARD_rtl8196eu
choice
prompt "Selected toolchain"
config RSDK_rsdk-1.5.5-4181-EB-2.6.30-0.9.30.3-110225
bool "rsdk-1.5.5-4181-EB-2.6.30-0.9.30.3-110225"
config RSDK_rsdk-4.4.7-4181-EB-2.6.30-0.9.30-m32u-140129
bool "rsdk-4.4.7-4181-EB-2.6.30-0.9.30-m32u-140129"
config RSDK_rsdk-4.6.4-4181-EB-3.10-0.9.33-m32u-20141111
bool "rsdk-4.6.4-4181-EB-3.10-0.9.33-m32u-20141111"
config RSDK_rsdk-4.6.4-4181-EB-3.10-u0.9.33-m32-150324
bool "rsdk-4.6.4-4181-EB-3.10-u0.9.33-m32-150324"
endchoice
endif
if !BOARD_rtl8196e && !BOARD_rtl8196eu
choice
prompt "Selected toolchain"
config RSDK_msdk-4.4.7-mips-EL-3.10-u0.9.33-m32t-140827
bool "msdk-4.4.7-mips-EL-3.10-u0.9.33-m32t-140827"
config RSDK_msdk-4.8.5-mips-EL-3.10-u0.9.33-m32ut-180418
bool "msdk-4.8.5-mips-EL-3.10-u0.9.33-m32ut-180418"
endchoice
endif
config RSDKDIR
string
if BOARD_rtl8197F
source "boards/rtl8197F/board-configuration.in"
endif
##############################################################
comment "config components"
config MCONF_LINUX
bool "Config kernel"
config MCONF_USERS
bool "Config users"
config MCONF_BZBOX
bool "Config busybox"
config MCONF_LOAD
bool "Load default settings"
config MCONF_SAVE
bool "Save default settings"