summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-connectivity/connman
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2011-04-10 13:24:47 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2011-04-10 14:43:41 +0200
commit89500c583e0f1dc1b4ffdf72914e08e505e427e0 (patch)
treeb073036cc61aa34ca5ac9eec4d617366e0dcb3d5 /meta-oe/recipes-connectivity/connman
parente66079da37992abd54486488aa06a99bf7a4198c (diff)
downloadmeta-openembedded-89500c583e0f1dc1b4ffdf72914e08e505e427e0.tar.gz
recipes,classes: import a lot of recipes from meta-shr
* tested on shr-lite-image for om-gta02 and nokia900 (with meta-shr layer)
Diffstat (limited to 'meta-oe/recipes-connectivity/connman')
-rw-r--r--meta-oe/recipes-connectivity/connman/connman.inc79
-rwxr-xr-xmeta-oe/recipes-connectivity/connman/connman/connman42
-rw-r--r--meta-oe/recipes-connectivity/connman/connman/link-against-libnl2.patch13
-rwxr-xr-xmeta-oe/recipes-connectivity/connman/connman/shr/connman42
-rw-r--r--meta-oe/recipes-connectivity/connman/connman_0.72.bb31
5 files changed, 207 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/connman/connman.inc b/meta-oe/recipes-connectivity/connman/connman.inc
new file mode 100644
index 0000000000..69f91b3a3a
--- /dev/null
+++ b/meta-oe/recipes-connectivity/connman/connman.inc
@@ -0,0 +1,79 @@
1SUMMARY = "A daemon for managing internet connections within embedded devices"
2DESCRIPTION = "The ConnMan project provides a daemon for managing \
3internet connections within embedded devices running the Linux \
4operating system. The Connection Manager is designed to be slim and \
5to use as few resources as possible, so it can be easily integrated. \
6It is a fully modular system that can be extended, through plug-ins, \
7to support all kinds of wired or wireless technologies. Also, \
8configuration methods, like DHCP and domain name resolving, are \
9implemented using plug-ins."
10HOMEPAGE = "http://connman.net/"
11BUGTRACKER = "http://bugs.meego.com/buglist.cgi?quicksearch=connman"
12LICENSE = "GPLv2"
13LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \
14 file://src/main.c;beginline=1;endline=20;md5=4b55b550fa6b33cc2055ef30dd262b3e"
15
16# we need to define the depends here, the dynamic stuff is too late
17DEPENDS = "libnl wpa-supplicant dbus glib-2.0 ppp busybox dhcp resolvconf bluez4"
18
19EXTRA_OECONF += "\
20 ac_cv_path_WPASUPPLICANT=/usr/sbin/wpa_supplicant \
21 ac_cv_path_DHCLIENT=/sbin/dhclient \
22 ac_cv_path_UDHCPC=/sbin/udhcpc \
23 ac_cv_path_RESOLVCONF=/sbin/resolvconf \
24 ac_cv_path_PPPD=/usr/sbin/pppd \
25"
26
27INITSCRIPT_NAME = "connman"
28INITSCRIPT_PARAMS = "start 05 5 2 . stop 22 0 1 6 ."
29
30PARALLEL_MAKE = ""
31
32inherit autotools pkgconfig update-rc.d
33
34do_configure_append() {
35 ln -sf . include/connman
36}
37
38do_compile_append() {
39 sed -i -e s:deny:allow:g src/connman-dbus.conf
40}
41
42do_install_append() {
43 install -d ${D}${sysconfdir}/init.d
44 install -m 0755 ${WORKDIR}/connman ${D}${sysconfdir}/init.d/connman
45}
46
47python populate_packages_prepend() {
48 depmap = dict( pppd="ppp", udhcp="busybox connman-scripts", dhclient="dhcp-client", wifi="wpa-supplicant", resolvconf="resolvconf", bluetooth="bluez4" )
49 packages = []
50 hook = lambda file,pkg,b,c,d:packages.append((file,pkg))
51 plugin_dir = bb.data.expand('${libdir}/connman/plugins/', d)
52 plugin_name = bb.data.expand('${PN}-plugin-%s', d)
53 do_split_packages(d, plugin_dir, '^(.*).so$', plugin_name, '${PN} plugin for %s', extra_depends='', hook=hook )
54 for (file, package) in packages:
55 plugintype = package.split( '-' )[-1]
56 if plugintype in depmap:
57 rdepends = bb.data.getVar( "RDEPENDS_%s" % package, d )
58 bb.note( "Adding rdependency on %s to package %s" % ( depmap[plugintype], package ) )
59 bb.data.setVar("RDEPENDS_%s" % package, depmap[plugintype], d)
60}
61
62PACKAGES_DYNAMIC = "${PN}-plugin-*"
63
64PACKAGES += "${PN}-scripts ${PN}-test-utils"
65
66FILES_${PN} = "${bindir}/* ${sbindir}/* ${libexecdir}/* ${libdir}/lib*.so.* \
67 ${sysconfdir} ${sharedstatedir} ${localstatedir} \
68 ${base_bindir}/* ${base_sbindir}/* ${base_libdir}/*.so* ${datadir}/${PN} \
69 ${datadir}/pixmaps ${datadir}/applications \
70 ${datadir}/idl ${datadir}/omf ${datadir}/sounds \
71 ${libdir}/bonobo/servers \
72 ${datadir}/dbus-1/system-services/*"
73
74FILES_${PN}-test-utils += "${libdir}/connman/test/*"
75
76FILES_${PN}-scripts += "${libdir}/connman/scripts"
77FILES_${PN}-dbg += "${libdir}/connman/*/.debug"
78FILES_${PN}-dev += "${libdir}/connman/*/*.la"
79
diff --git a/meta-oe/recipes-connectivity/connman/connman/connman b/meta-oe/recipes-connectivity/connman/connman/connman
new file mode 100755
index 0000000000..f8154f68f9
--- /dev/null
+++ b/meta-oe/recipes-connectivity/connman/connman/connman
@@ -0,0 +1,42 @@
1#!/bin/sh
2
3DAEMON=/usr/sbin/connmand
4PIDFILE=/var/run/connmand.pid
5DESC="Connection Manager"
6
7if [ -f /etc/default/connman ] ; then
8 . /etc/default/connman
9fi
10
11set -e
12
13do_start() {
14 $DAEMON
15}
16
17do_stop() {
18 start-stop-daemon --stop --name connmand --quiet
19}
20
21case "$1" in
22 start)
23 echo "Starting $DESC"
24 do_start
25 ;;
26 stop)
27 echo "Stopping $DESC"
28 do_stop
29 ;;
30 restart|force-reload)
31 echo "Restarting $DESC"
32 do_stop
33 sleep 1
34 do_start
35 ;;
36 *)
37 echo "Usage: $0 {start|stop|restart|force-reload}" >&2
38 exit 1
39 ;;
40esac
41
42exit 0
diff --git a/meta-oe/recipes-connectivity/connman/connman/link-against-libnl2.patch b/meta-oe/recipes-connectivity/connman/connman/link-against-libnl2.patch
new file mode 100644
index 0000000000..5be1618209
--- /dev/null
+++ b/meta-oe/recipes-connectivity/connman/connman/link-against-libnl2.patch
@@ -0,0 +1,13 @@
1Index: connman-0.46/configure.ac
2===================================================================
3--- connman-0.46.orig/configure.ac
4+++ connman-0.46/configure.ac
5@@ -326,7 +326,7 @@
6 AC_ARG_ENABLE(tools, AC_HELP_STRING([--enable-tools],
7 [enable testing tools]), [enable_tools=${enableval}])
8 if (test "${enable_tools}" = "yes"); then
9- PKG_CHECK_MODULES(NETLINK, libnl-1, dummy=yes,
10+ PKG_CHECK_MODULES(NETLINK, libnl-2.0, dummy=yes,
11 AC_MSG_ERROR(Netlink library is required))
12 AC_SUBST(NETLINK_CFLAGS)
13 AC_SUBST(NETLINK_LIBS)
diff --git a/meta-oe/recipes-connectivity/connman/connman/shr/connman b/meta-oe/recipes-connectivity/connman/connman/shr/connman
new file mode 100755
index 0000000000..708b1b4cd1
--- /dev/null
+++ b/meta-oe/recipes-connectivity/connman/connman/shr/connman
@@ -0,0 +1,42 @@
1#!/bin/sh
2
3DAEMON="/usr/sbin/connmand -I usb0"
4PIDFILE=/var/run/connmand.pid
5DESC="Connection Manager"
6
7if [ -f /etc/default/connman ] ; then
8 . /etc/default/connman
9fi
10
11set -e
12
13do_start() {
14 $DAEMON
15}
16
17do_stop() {
18 start-stop-daemon --stop --name connmand --quiet
19}
20
21case "$1" in
22 start)
23 echo "Starting $DESC"
24 do_start
25 ;;
26 stop)
27 echo "Stopping $DESC"
28 do_stop
29 ;;
30 restart|force-reload)
31 echo "Restarting $DESC"
32 do_stop
33 sleep 1
34 do_start
35 ;;
36 *)
37 echo "Usage: $0 {start|stop|restart|force-reload}" >&2
38 exit 1
39 ;;
40esac
41
42exit 0
diff --git a/meta-oe/recipes-connectivity/connman/connman_0.72.bb b/meta-oe/recipes-connectivity/connman/connman_0.72.bb
new file mode 100644
index 0000000000..8eb1e147f0
--- /dev/null
+++ b/meta-oe/recipes-connectivity/connman/connman_0.72.bb
@@ -0,0 +1,31 @@
1require connman.inc
2# connman requires libXtables now
3DEPENDS += "iptables"
4PR = "r0"
5
6EXTRA_OECONF += "\
7 --disable-gtk-doc \
8 --enable-debug \
9 --enable-threads \
10 --enable-loopback \
11 --enable-ethernet \
12 --enable-wifi \
13 --disable-wimax \
14 --enable-bluetooth \
15 --enable-ofono \
16 --enable-resolvconf \
17 --enable-dnsproxy \
18 --enable-tools \
19 --disable-polkit \
20 --enable-client \
21 --enable-fake \
22"
23
24SRC_URI = "\
25 http://www.kernel.org/pub/linux/network/connman/connman-${PV}.tar.gz \
26 file://link-against-libnl2.patch \
27 file://connman \
28"
29
30SRC_URI[md5sum] = "800f9356e0471c88819eee7184713a1f"
31SRC_URI[sha256sum] = "9c8ad312573683fc9f50d5042d4a87ddc8e0700b27ac1b0fb8dc2e8b7424a60f"