clean up board-dependent files, add pppoatm support, add proper config examples
[10.03/openwrt.git] / 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 y
7         select BR2_PACKAGE_KMOD_PPP
8
9 config BR2_PACKAGE_PPP_MOD_PPPOA
10         prompt "...-mod-pppoa - PPPoA (PPP over ATM) plugin"
11         tristate
12         default y if BR2_LINUX_2_4_AR7
13         depends on BR2_PACKAGE_PPP
14         select BR2_PACKAGE_KMOD_PPPOA
15
16 config BR2_PACKAGE_PPP_MOD_PPPOE
17         prompt "...-mod-pppoe - PPPoE (PPP over Ethernet) plugin"
18         tristate
19         default y
20         depends on BR2_PACKAGE_PPP
21         select BR2_PACKAGE_KMOD_PPPOE
22
23 config BR2_PACKAGE_PPP_MOD_RADIUS
24         prompt "...-mod-radius - RADIUS (Remote Authentication Dial-In User Service) plugin"
25         tristate
26         default m if CONFIG_DEVEL
27         depends on BR2_PACKAGE_PPP
28
29 config BR2_PACKAGE_CHAT
30         prompt "chat - Utility to establish conversation with other PPP servers (via a modem)"
31         tristate
32         default m if CONFIG_DEVEL
33         depends on BR2_PACKAGE_PPP
34
35 config BR2_PACKAGE_PPPDUMP
36         prompt "pppdump - Utility to read PPP record file"
37         tristate
38         default m if CONFIG_DEVEL
39         depends on BR2_PACKAGE_PPP
40
41 config BR2_PACKAGE_PPPSTATS
42         prompt "pppstats - Utility to report PPP statistics"
43         tristate
44         default m if CONFIG_DEVEL
45         depends on BR2_PACKAGE_PPP
46
47 endmenu