Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_PACKAGE_PPPD
  2. bool "pppd"
  3. depends on !BR2_STATIC_LIBS
  4. depends on !BR2_TOOLCHAIN_USES_MUSL # Use __P() macro all over the tree
  5. depends on BR2_USE_MMU
  6. select BR2_PACKAGE_OPENSSL if BR2_TOOLCHAIN_USES_GLIBC
  7. help
  8. An implementation of the Point-to-point protocol.
  9. http://www.samba.org/ppp/
  10. if BR2_PACKAGE_PPPD
  11. config BR2_PACKAGE_PPPD_FILTER
  12. bool "filtering"
  13. select BR2_PACKAGE_LIBPCAP
  14. help
  15. Packet filtering abilities for pppd. If enabled,
  16. the pppd active-filter and pass-filter options
  17. are available.
  18. config BR2_PACKAGE_PPPD_RADIUS
  19. bool "radius"
  20. help
  21. Install RADIUS support for pppd
  22. config BR2_PACKAGE_PPPD_OVERWRITE_RESOLV_CONF
  23. bool "overwrite /etc/resolv.conf"
  24. default y
  25. help
  26. Overwrite /etc/resolv.conf instead of maintaining the
  27. separate list of nameservers in /etc/ppp/resolv.conf
  28. Note that the pppd default of writing to /etc/ppp/resolv.conf
  29. does not work on a read-only rootfs unless you make it
  30. writable in your rootfs customizations (e.g. by linking it to
  31. a file in tmpfs or by mounting a writable filesystem on it).
  32. endif
  33. comment "pppd needs a uClibc or glibc toolchain w/ dynamic library"
  34. depends on BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL
  35. depends on BR2_USE_MMU