blob: ba4e047af7013e0bf8074011242dca7aafe18c72 (
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
|
menu "pppoe - Roaring Penguin PPPoE (PPP over Ethernet) implementation"
config BR2_COMPILE_RP_PPPOE
bool
default n
depends BR2_PACKAGE_PPPOE_CLIENT || BR2_PACKAGE_PPPOE_RELAY || BR2_PACKAGE_PPPOE_SERVER || BR2_PACKAGE_PPPOE_SNIFF
config BR2_PACKAGE_PPPOE_CLIENT
tristate
prompt "pppoe-client - PPPoE (PPP over Ethernet) client"
default m if DEVELOPER
select BR2_COMPILE_RP_PPPOE
select BR2_PACKAGE_PPP
help
PPPoE (PPP over Ethernet) client
http://roaringpenguin.com/penguin/open_source_rp-pppoe.php
config BR2_PACKAGE_PPPOE_RELAY
tristate
prompt "pppoe-relay - PPPoE (PPP over Ethernet) relay"
default m if DEVELOPER
select BR2_COMPILE_RP_PPPOE
help
PPPoE (PPP over Ethernet) relay
http://roaringpenguin.com/penguin/open_source_rp-pppoe.php
config BR2_PACKAGE_PPPOE_SERVER
tristate
prompt "pppoe-server - PPPoE (PPP over Ethernet) server"
default m if DEVELOPER
select BR2_COMPILE_RP_PPPOE
select BR2_PACKAGE_PPP
help
PPPoE (PPP over Ethernet) server
http://roaringpenguin.com/penguin/open_source_rp-pppoe.php
config BR2_PACKAGE_PPPOE_SNIFF
tristate
prompt "pppoe-sniff - PPPoE (PPP over Ethernet) frame sniffer"
default m if DEVELOPER
select BR2_COMPILE_RP_PPPOE
help
PPPoE (PPP over Ethernet) frame sniffer
http://roaringpenguin.com/penguin/open_source_rp-pppoe.php
endmenu
|