summaryrefslogtreecommitdiff
path: root/Config_bundle.in
blob: 4db598598d5d1a63605bc0c705a18554e741182b (plain)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
mainmenu "Polux Configuration"

config BR2_HAVE_DOT_CONFIG
	bool
	default y
#	Tip to indent sections
	select BR2_APP_SYSTEM
	select BR2_APP_NETWORK
	select BR2_APP_WEB
	select BR2_APP_8021X
	select BR2_APP_SNMP

config BR2_VERSION
	string
	default "0.1"

choice
       prompt "Final target type"
config BR2_CONFIG_MASTER
       bool "Master/ad-hoc modem (for 32MB board only)"

config BR2_CONFIG_SLAVE
       bool "Slave modem (for 16/32MB board)"
       select BR2_PACKAGE_SH
       select BR2_PACKAGE_MININIT
       select BR2_PACKAGE_TINYLOGIN
       select BR2_PACKAGE_MTDUTILS

endchoice

choice
		prompt "CPU selection"
config BR2_CONFIG_MARCH_SPC200C
	   bool "SPC200c board"
config BR2_CONFIG_MARCH_SPC200E
	   bool "SPC200e board"
endchoice

menu "Linux kernel options"
source "package/linux/Config.in"
endmenu

menu "Applications options"

menu "busybox"
source "package/busybox/Config.in"
endmenu

# comment "System"
config BR2_APP_SYSTEM
       bool "System"

source "package/mininit/Config.in"
source "package/tinylogin/Config.in"
source "package/sh/Config.in"
source "package/mtd-utils/Config.in"
source "package/safe-return/Config.in"
source "package/nvramutility/Config.in"

# comment "Network"
config BR2_APP_NETWORK
	bool "Network"

source "package/bridge-utils/Config.in"
source "package/tinyftp/Config.in"
source "package/ebtables/Config.in"
source "package/iptables/Config.in"
source "package/iproute2/Config.in"
source "package/udhcp/Config.in"
source "package/ethtool/Config.in"
source "package/smm/Config.in"
source "package/ndd/Config.in"

# comment "Web server"
config BR2_APP_WEB
       bool "Web server"

source "package/boa/Config.in"
source "package/uphp/Config.in"

# comment "SNMP agent"
config BR2_APP_SNMP
	bool "SNMP agent"

source "package/agent/Config.in"

# comment "802.1x autentication"
config BR2_APP_8021X
	bool "802.1x authentication"

source "package/wpa_supplicant/Config.in"
source "package/hostapd/Config.in"

source "package/voip/Config.in"

endmenu