Guest User

Untitled

a guest
Feb 17th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
  2. SRC_URI += "file://ppp_provider \
  3. file://ppp-on-dialer \
  4. file://08setupdns \
  5. "
  6.  
  7.  
  8.  
  9. do_install_append() {
  10. install -d ${D}${sysconfdir}/ppp
  11. install -d ${D}${sysconfdir}/ppp/peers
  12. install -d ${D}${sysconfdir}/ppp/chat
  13. install -d ${D}${sysconfdir}/ppp/ip-up.d
  14. install -m 0644 ${WORKDIR}/ppp_provider ${D}${sysconfdir}/ppp/peers/provider
  15. install -m 0755 ${WORKDIR}/ppp-on-dialer ${D}${sysconfdir}/ppp/chat
  16. install -m 0755 ${WORKDIR}/08setupdns ${D}${sysconfdir}/ppp/ip-up.d
  17. ln -s ${PN}@.service ${D}${systemd_unitdir}/system/${PN}@provider.service
  18. }
Add Comment
Please, Sign In to add comment