mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
connman: Add VPN support
One needs to add following statement into local.conf or distro config PACKAGECONFIG_append_pn-connman = " openvpn vpnc l2tp pptp" in order to activate support for these VPN technogies in ConnMan. (From OE-Core rev: 92da847ed6cea6342bdc86de121534259332a2c3) 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>
This commit is contained in:
committed by
Richard Purdie
parent
ca64333d0b
commit
7c41d839f9
@@ -38,6 +38,10 @@ PACKAGECONFIG ??= "\
|
|||||||
${@base_contains('DISTRO_FEATURES', '3g','3g', '', d)} \
|
${@base_contains('DISTRO_FEATURES', '3g','3g', '', d)} \
|
||||||
"
|
"
|
||||||
|
|
||||||
|
# If you want ConnMan to support VPN, add following statement into
|
||||||
|
# local.conf or distro config
|
||||||
|
# PACKAGECONFIG_append_pn-connman = " openvpn vpnc l2tp pptp"
|
||||||
|
|
||||||
PACKAGECONFIG[wifi] = "--enable-wifi, --disable-wifi, wpa-supplicant"
|
PACKAGECONFIG[wifi] = "--enable-wifi, --disable-wifi, wpa-supplicant"
|
||||||
PACKAGECONFIG[bluetooth] = "--enable-bluetooth, --disable-bluetooth, bluez4"
|
PACKAGECONFIG[bluetooth] = "--enable-bluetooth, --disable-bluetooth, bluez4"
|
||||||
PACKAGECONFIG[3g] = "--enable-ofono, --disable-ofono, ofono"
|
PACKAGECONFIG[3g] = "--enable-ofono, --disable-ofono, ofono"
|
||||||
@@ -47,6 +51,7 @@ INITSCRIPT_NAME = "connman"
|
|||||||
INITSCRIPT_PARAMS = "start 05 5 2 3 . stop 22 0 1 6 ."
|
INITSCRIPT_PARAMS = "start 05 5 2 3 . stop 22 0 1 6 ."
|
||||||
|
|
||||||
SYSTEMD_SERVICE_${PN} = "connman.service"
|
SYSTEMD_SERVICE_${PN} = "connman.service"
|
||||||
|
SYSTEMD_SERVICE_${PN}-vpn = "connman-vpn.service"
|
||||||
SYSTEMD_WIRED_SETUP = "ExecStartPre=-/usr/lib/connman/wired-setup"
|
SYSTEMD_WIRED_SETUP = "ExecStartPre=-/usr/lib/connman/wired-setup"
|
||||||
|
|
||||||
# IMPORTANT: because xuser is shared with rootless X, please make sure the
|
# IMPORTANT: because xuser is shared with rootless X, please make sure the
|
||||||
@@ -67,6 +72,7 @@ do_configure_append () {
|
|||||||
# both this and the xuser patch can be dropped.
|
# both this and the xuser patch can be dropped.
|
||||||
do_compile_append() {
|
do_compile_append() {
|
||||||
sed -i -e s:deny:allow:g src/connman-dbus.conf
|
sed -i -e s:deny:allow:g src/connman-dbus.conf
|
||||||
|
sed -i -e s:deny:allow:g vpn/vpn-dbus.conf
|
||||||
}
|
}
|
||||||
|
|
||||||
do_install_append() {
|
do_install_append() {
|
||||||
@@ -81,7 +87,7 @@ do_install_append() {
|
|||||||
install -m 0755 ${B}/client/connmanctl ${D}${bindir}
|
install -m 0755 ${B}/client/connmanctl ${D}${bindir}
|
||||||
|
|
||||||
# We don't need to package an empty directory
|
# We don't need to package an empty directory
|
||||||
rmdir ${D}${libdir}/connman/scripts
|
rmdir --ignore-fail-on-non-empty ${D}${libdir}/connman/scripts
|
||||||
|
|
||||||
# Automake 1.12 won't install empty directories, but we need the
|
# Automake 1.12 won't install empty directories, but we need the
|
||||||
# plugins directory to be present for ownership
|
# plugins directory to be present for ownership
|
||||||
@@ -106,20 +112,32 @@ RDEPENDS_${PN} = "\
|
|||||||
|
|
||||||
PACKAGES_DYNAMIC += "^${PN}-plugin-.*"
|
PACKAGES_DYNAMIC += "^${PN}-plugin-.*"
|
||||||
|
|
||||||
|
def add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, add_insane_skip):
|
||||||
|
plugintype = pkg.split( '-' )[-1]
|
||||||
|
if plugintype in depmap:
|
||||||
|
rdepends = map(lambda x: multilib_prefix + x, \
|
||||||
|
depmap[plugintype].split())
|
||||||
|
d.setVar("RDEPENDS_%s" % pkg, " ".join(rdepends))
|
||||||
|
if add_insane_skip:
|
||||||
|
d.appendVar("INSANE_SKIP_%s" % pkg, "dev-so")
|
||||||
|
|
||||||
python populate_packages_prepend() {
|
python populate_packages_prepend() {
|
||||||
depmap = dict(pppd="ppp")
|
depmap = dict(pppd="ppp")
|
||||||
packages = []
|
|
||||||
multilib_prefix = (d.getVar("MLPREFIX", True) or "")
|
multilib_prefix = (d.getVar("MLPREFIX", True) or "")
|
||||||
hook = lambda file,pkg,b,c,d:packages.append((file,pkg))
|
|
||||||
|
hook = lambda file,pkg,x,y,z: \
|
||||||
|
add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, False)
|
||||||
plugin_dir = d.expand('${libdir}/connman/plugins/')
|
plugin_dir = d.expand('${libdir}/connman/plugins/')
|
||||||
plugin_name = d.expand('${PN}-plugin-%s')
|
plugin_name = d.expand('${PN}-plugin-%s')
|
||||||
do_split_packages(d, plugin_dir, '^(.*).so$', plugin_name, '${PN} plugin for %s', extra_depends='', hook=hook, prepend=True )
|
do_split_packages(d, plugin_dir, '^(.*).so$', plugin_name, \
|
||||||
for (file, package) in packages:
|
'${PN} plugin for %s', extra_depends='', hook=hook, prepend=True )
|
||||||
plugintype = package.split( '-' )[-1]
|
|
||||||
if plugintype in depmap:
|
hook = lambda file,pkg,x,y,z: \
|
||||||
rdepends = map(lambda x: multilib_prefix + x, depmap[plugintype].split())
|
add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, True)
|
||||||
bb.note( "Adding rdependency on %s to %s" % ( rdepends, package ) )
|
plugin_dir = d.expand('${libdir}/connman/plugins-vpn/')
|
||||||
d.setVar("RDEPENDS_%s" % package, " ".join(rdepends))
|
plugin_name = d.expand('${PN}-plugin-vpn-%s')
|
||||||
|
do_split_packages(d, plugin_dir, '^(.*).so$', plugin_name, \
|
||||||
|
'${PN} VPN plugin for %s', extra_depends='', hook=hook, prepend=True )
|
||||||
}
|
}
|
||||||
|
|
||||||
PACKAGES =+ "${PN}-tools ${PN}-tests ${PN}-client"
|
PACKAGES =+ "${PN}-tools ${PN}-tests ${PN}-client"
|
||||||
@@ -140,3 +158,17 @@ FILES_${PN} = "${bindir}/* ${sbindir}/* ${libexecdir}/* ${libdir}/lib*.so.* \
|
|||||||
FILES_${PN}-dbg += "${libdir}/connman/*/.debug"
|
FILES_${PN}-dbg += "${libdir}/connman/*/.debug"
|
||||||
|
|
||||||
FILES_${PN}-dev += "${libdir}/connman/*/*.la"
|
FILES_${PN}-dev += "${libdir}/connman/*/*.la"
|
||||||
|
|
||||||
|
PACKAGES =+ "${PN}-vpn"
|
||||||
|
|
||||||
|
SUMMARY_${PN}-vpn = "A daemon for managing VPN connections within embedded devices"
|
||||||
|
DESCRIPTION_${PN}-vpn = "The ConnMan VPN provides a daemon for \
|
||||||
|
managing VPN connections within embedded devices running the Linux \
|
||||||
|
operating system. The connman-vpnd handles all the VPN connections \
|
||||||
|
and starts/stops VPN client processes when necessary. The connman-vpnd \
|
||||||
|
provides a DBus API for managing VPN connections. All the different \
|
||||||
|
VPN technogies are implemented using plug-ins."
|
||||||
|
FILES_${PN}-vpn += "${sbindir}/connman-vpnd \
|
||||||
|
${sysconfdir}/dbus-1/system.d/connman-vpn-dbus.conf \
|
||||||
|
${datadir}/dbus-1/system-services/net.connman.vpn.service \
|
||||||
|
${systemd_unitdir}/system/connman-vpn.service"
|
||||||
|
|||||||
Reference in New Issue
Block a user