blob: 898d95f0ee26a9239f353df3bc8344fe24e6a5a3 [file] [log] [blame]
Eric Andersenf6940162004-10-09 06:13:40 +00001config BR2_PACKAGE_PPPD
Mike Frysinger6d9728e2004-12-26 07:36:59 +00002 bool "pppd"
Thomas Petazzoni665e13c2014-12-03 22:41:29 +01003 depends on !BR2_STATIC_LIBS
Axel Lin4cfb3fc2013-09-30 17:18:47 +08004 depends on BR2_USE_MMU
Alexander Mukhinb519bca2019-09-07 21:35:17 +03005 select BR2_PACKAGE_OPENSSL if BR2_TOOLCHAIN_USES_GLIBC
Fabrice Fontaine98648152021-12-14 23:08:27 +01006 select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
Eric Andersenf6940162004-10-09 06:13:40 +00007 help
Mike Frysinger6d9728e2004-12-26 07:36:59 +00008 An implementation of the Point-to-point protocol.
Eric Andersenf6940162004-10-09 06:13:40 +00009
Mike Frysinger6d9728e2004-12-26 07:36:59 +000010 http://www.samba.org/ppp/
Hamish Moffatta83dddf2009-02-19 05:31:05 +000011
Thomas De Schampheleire35eaed82013-12-20 22:31:30 +010012if BR2_PACKAGE_PPPD
13
Hamish Moffatta83dddf2009-02-19 05:31:05 +000014config BR2_PACKAGE_PPPD_FILTER
Hamish Moffatta83dddf2009-02-19 05:31:05 +000015 bool "filtering"
Adam Duskett289137e2017-04-22 13:18:02 -040016 select BR2_PACKAGE_LIBPCAP
Hamish Moffatta83dddf2009-02-19 05:31:05 +000017 help
18 Packet filtering abilities for pppd. If enabled,
19 the pppd active-filter and pass-filter options
20 are available.
Gustavo Zacarias61e61ae2010-10-06 14:34:47 -030021
22config BR2_PACKAGE_PPPD_RADIUS
Gustavo Zacarias61e61ae2010-10-06 14:34:47 -030023 bool "radius"
24 help
25 Install RADIUS support for pppd
Axel Lin4cfb3fc2013-09-30 17:18:47 +080026
Maksim Salau1bb454b2017-10-17 12:54:14 +030027config BR2_PACKAGE_PPPD_OVERWRITE_RESOLV_CONF
28 bool "overwrite /etc/resolv.conf"
29 default y
30 help
31 Overwrite /etc/resolv.conf instead of maintaining the
32 separate list of nameservers in /etc/ppp/resolv.conf
33
34 Note that the pppd default of writing to /etc/ppp/resolv.conf
35 does not work on a read-only rootfs unless you make it
36 writable in your rootfs customizations (e.g. by linking it to
37 a file in tmpfs or by mounting a writable filesystem on it).
38
Thomas De Schampheleire35eaed82013-12-20 22:31:30 +010039endif
40
Fabrice Fontaine075b01f2021-11-14 17:29:04 +010041comment "pppd needs a toolchain w/ dynamic library"
42 depends on BR2_STATIC_LIBS
Axel Lin4cfb3fc2013-09-30 17:18:47 +080043 depends on BR2_USE_MMU