summaryrefslogtreecommitdiff
path: root/polux/Config_bundle.in
blob: acd0ce923d0f424786978b8322d49e4acfb4d232 (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
97
98
99
100
101
102
103
104
105
106
107
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_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)"
       select BR2_APP_WEB_BOA

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
       select BR2_APP_WEB_NONE

endchoice

choice
		prompt "CPU selection"
config BR2_CONFIG_MARCH_MSE500DINI_200
	   bool "MSE500 DINI board (200 mode)"
config BR2_CONFIG_MARCH_MSE500_200
       bool "MSE500 board (200 mode)"
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"
source "package/autodiscod/Config.in"
source "package/openssh/Config.in"

choice
       prompt "HTTP server selection"
config BR2_APP_WEB_BOA
       bool "Web server (boa)"
       source "package/boa/Config.in"
       source "package/uphp/Config.in"
config BR2_APP_WEB_GOAHEAD
       bool "Web server (goAhead)"
       source "package/goahead/Config.in"
config BR2_APP_WEB_NONE
       bool "None"
endchoice

# 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"

endmenu