diff options
author | Jukka Rissanen <jukka.rissanen@linux.intel.com> | 2013-05-14 11:10:45 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-16 00:09:49 +0300 |
commit | 9fa1590474a25614a4e4ff52fb678832162d32c2 (patch) | |
tree | f0dfb6099d6c1b1d46202eebc87aff2c3107eaae /meta/recipes-connectivity/connman/connman.inc | |
parent | 6707538b5297cc3f8da4b6ced2c635ca06e13e28 (diff) | |
download | poky-9fa1590474a25614a4e4ff52fb678832162d32c2.tar.gz |
connman: Add PPTP support
(From OE-Core rev: 8f1ecefc0c3d86ee6c467a9cc7119be237f74083)
Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/connman/connman.inc')
-rw-r--r-- | meta/recipes-connectivity/connman/connman.inc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc index b26555c3db..8d6f68ceb7 100644 --- a/meta/recipes-connectivity/connman/connman.inc +++ b/meta/recipes-connectivity/connman/connman.inc | |||
@@ -49,6 +49,7 @@ PACKAGECONFIG[tist] = "--enable-tist,--disable-tist," | |||
49 | PACKAGECONFIG[openvpn] = "--enable-openvpn,--disable-openvpn,,openvpn" | 49 | PACKAGECONFIG[openvpn] = "--enable-openvpn,--disable-openvpn,,openvpn" |
50 | PACKAGECONFIG[vpnc] = "--enable-vpnc,--disable-vpnc,,vpnc" | 50 | PACKAGECONFIG[vpnc] = "--enable-vpnc,--disable-vpnc,,vpnc" |
51 | PACKAGECONFIG[l2tp] = "--enable-l2tp,--disable-l2tp,,xl2tpd" | 51 | PACKAGECONFIG[l2tp] = "--enable-l2tp,--disable-l2tp,,xl2tpd" |
52 | PACKAGECONFIG[pptp] = "--enable-pptp,--disable-pptp,,pptp-linux" | ||
52 | 53 | ||
53 | INITSCRIPT_NAME = "connman" | 54 | INITSCRIPT_NAME = "connman" |
54 | INITSCRIPT_PARAMS = "start 05 5 2 3 . stop 22 0 1 6 ." | 55 | INITSCRIPT_PARAMS = "start 05 5 2 3 . stop 22 0 1 6 ." |
@@ -199,3 +200,11 @@ FILES_${PN}-plugin-vpn-l2tp += "${libdir}/connman/scripts/libppp-plugin.so* \ | |||
199 | ${libdir}/connman/plugins-vpn/l2tp.so" | 200 | ${libdir}/connman/plugins-vpn/l2tp.so" |
200 | RDEPENDS_${PN}-plugin-vpn-l2tp += "${PN}-vpn" | 201 | RDEPENDS_${PN}-plugin-vpn-l2tp += "${PN}-vpn" |
201 | RRECOMMENDS_${PN} += "${@base_contains('PACKAGECONFIG','l2tp','${PN}-plugin-vpn-l2tp', '', d)}" | 202 | RRECOMMENDS_${PN} += "${@base_contains('PACKAGECONFIG','l2tp','${PN}-plugin-vpn-l2tp', '', d)}" |
203 | |||
204 | SUMMARY_${PN}-plugin-vpn-pptp = "A PPTP plugin for ConnMan VPN" | ||
205 | DESCRIPTION_${PN}-plugin-vpn-pptp = "The ConnMan PPTP plugin uses pptp-linux client \ | ||
206 | to create a VPN connection to PPTP server." | ||
207 | FILES_${PN}-plugin-vpn-pptp += "${libdir}/connman/scripts/libppp-plugin.so* \ | ||
208 | ${libdir}/connman/plugins-vpn/pptp.so" | ||
209 | RDEPENDS_${PN}-plugin-vpn-pptp += "${PN}-vpn" | ||
210 | RRECOMMENDS_${PN} += "${@base_contains('PACKAGECONFIG','pptp','${PN}-plugin-vpn-pptp', '', d)}" | ||