1comment "rp-pppoe needs a uClibc or glibc toolchain w/ dynamic library" 2 depends on BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL 3 depends on BR2_USE_MMU 4 5config BR2_PACKAGE_RP_PPPOE 6 bool "rp-pppoe" 7 depends on !BR2_STATIC_LIBS 8 depends on !BR2_TOOLCHAIN_USES_MUSL # pppd 9 depends on BR2_USE_MMU # fork() 10 select BR2_PACKAGE_PPPD 11 help 12 An implementation of the Point-to-point protocol over 13 Ethernet. Has userspace client and server deamons. You 14 likely only need this package if you are implementing the 15 pppoe server that will service other pppoe client 16 devices. Otherwise the normal client functionality already 17 exists in the pppd package (and kernel). 18 19 https://dianne.skoll.ca/projects/rp-pppoe/ 20