let ipkg fail when a package file to be installed is not found
[openwrt/openwrt.git] / openwrt / package / ppp / Config.in
1 menu "ppp............................... PPP (Point-to-Point Protocol) daemon"
2
3 config BR2_PACKAGE_PPP
4 prompt "ppp............................... PPP (Point-to-Point Protocol) daemon"
5 tristate
6 default n if BR2_LINUX_2_6_ARUBA
7 default y
8 select BR2_PACKAGE_KMOD_PPP
9
10 config BR2_PACKAGE_PPP_WITH_FILTER
11 prompt "Enable filter support"
12 bool
13 default y
14
15 config BR2_PACKAGE_PPP_MOD_PPPOA
16 prompt "ppp-mod-pppoa................... PPPoA (PPP over ATM) plugin"
17 tristate
18 default y if BR2_LINUX_2_4_AR7
19 depends on BR2_PACKAGE_PPP
20 select BR2_PACKAGE_KMOD_PPPOATM
21
22 config BR2_PACKAGE_PPP_MOD_PPPOE
23 prompt "ppp-mod-pppoe................... PPPoE (PPP over Ethernet) plugin"
24 tristate
25 default y
26 depends on BR2_PACKAGE_PPP
27 select BR2_PACKAGE_KMOD_PPPOE
28
29 config BR2_PACKAGE_PPP_MOD_RADIUS
30 prompt "ppp-mod-radius.................. RADIUS (Remote Authentication Dial-In User Service) plugin"
31 tristate
32 default m if CONFIG_DEVEL
33 depends on BR2_PACKAGE_PPP
34
35 config BR2_PACKAGE_CHAT
36 prompt "chat............................ Utility to establish conversation with other PPP servers (via a modem)"
37 tristate
38 default m if CONFIG_DEVEL
39 depends on BR2_PACKAGE_PPP
40
41 config BR2_PACKAGE_PPPDUMP
42 prompt "pppdump......................... Utility to read PPP record file"
43 tristate
44 default m if CONFIG_DEVEL
45 depends on BR2_PACKAGE_PPP
46
47 config BR2_PACKAGE_PPPSTATS
48 prompt "pppstats........................ Utility to report PPP statistics"
49 tristate
50 default m if CONFIG_DEVEL
51 depends on BR2_PACKAGE_PPP
52
53 endmenu