diff options
author | Jukka Rissanen <jukka.rissanen@linux.intel.com> | 2013-05-14 11:10:43 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-16 00:09:48 +0300 |
commit | 951aa13825765f18abb3e71d37999a01f6facca0 (patch) | |
tree | 554a52404f83e8e3fe370387d78414151485a70c /meta/recipes-connectivity | |
parent | 48d0f528bb9369156b3027a23c1d2779601ef3d4 (diff) | |
download | poky-951aa13825765f18abb3e71d37999a01f6facca0.tar.gz |
connman: Add vpnc support
(From OE-Core rev: 6c23a3f66cad6f66b5ca599773d7cc3925fd777d)
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')
-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 b7466f58bf..8fd38eead6 100644 --- a/meta/recipes-connectivity/connman/connman.inc +++ b/meta/recipes-connectivity/connman/connman.inc | |||
@@ -47,6 +47,7 @@ PACKAGECONFIG[bluetooth] = "--enable-bluetooth, --disable-bluetooth, bluez4" | |||
47 | PACKAGECONFIG[3g] = "--enable-ofono, --disable-ofono, ofono" | 47 | PACKAGECONFIG[3g] = "--enable-ofono, --disable-ofono, ofono" |
48 | PACKAGECONFIG[tist] = "--enable-tist,--disable-tist," | 48 | 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 | 51 | ||
51 | INITSCRIPT_NAME = "connman" | 52 | INITSCRIPT_NAME = "connman" |
52 | INITSCRIPT_PARAMS = "start 05 5 2 3 . stop 22 0 1 6 ." | 53 | INITSCRIPT_PARAMS = "start 05 5 2 3 . stop 22 0 1 6 ." |
@@ -181,3 +182,11 @@ FILES_${PN}-plugin-vpn-openvpn += "${libdir}/connman/scripts/openvpn-script \ | |||
181 | ${libdir}/connman/plugins-vpn/openvpn.so" | 182 | ${libdir}/connman/plugins-vpn/openvpn.so" |
182 | RDEPENDS_${PN}-plugin-vpn-openvpn += "${PN}-vpn" | 183 | RDEPENDS_${PN}-plugin-vpn-openvpn += "${PN}-vpn" |
183 | RRECOMMENDS_${PN} += "${@base_contains('PACKAGECONFIG','openvpn','${PN}-plugin-vpn-openvpn', '', d)}" | 184 | RRECOMMENDS_${PN} += "${@base_contains('PACKAGECONFIG','openvpn','${PN}-plugin-vpn-openvpn', '', d)}" |
185 | |||
186 | SUMMARY_${PN}-plugin-vpn-vpnc = "A vpnc plugin for ConnMan VPN" | ||
187 | DESCRIPTION_${PN}-plugin-vpn-vpnc = "The ConnMan vpnc plugin uses vpnc client \ | ||
188 | to create a VPN connection to Cisco3000 VPN Concentrator." | ||
189 | FILES_${PN}-plugin-vpn-vpnc += "${libdir}/connman/scripts/openconnect-script \ | ||
190 | ${libdir}/connman/plugins-vpn/vpnc.so" | ||
191 | RDEPENDS_${PN}-plugin-vpn-vpnc += "${PN}-vpn" | ||
192 | RRECOMMENDS_${PN} += "${@base_contains('PACKAGECONFIG','vpnc','${PN}-plugin-vpn-vpnc', '', d)}" | ||