From f12747a027d73aaf8e16322877ccc1463a53df74 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 26 Sep 2010 20:48:19 +0200 Subject: [PATCH] connman: add 'cmcc' script to development build Signed-off-by: Stephan Raue --- packages/network/connman/install | 6 ++++++ packages/network/connman/meta | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/packages/network/connman/install b/packages/network/connman/install index 8f9bf57853..1db5c34ca7 100755 --- a/packages/network/connman/install +++ b/packages/network/connman/install @@ -16,3 +16,9 @@ mkdir -p $INSTALL/usr/sbin mkdir -p $INSTALL/usr/config cp $PKG_DIR/config/network.conf $INSTALL/usr/config + +if [ "$DEVTOOLS" = yes ]; then + mkdir -p $INSTALL/usr/bin + cp $PKG_DIR/scripts/cmcc $INSTALL/usr/bin +fi + diff --git a/packages/network/connman/meta b/packages/network/connman/meta index ca1b6dc134..6946c15a9a 100644 --- a/packages/network/connman/meta +++ b/packages/network/connman/meta @@ -12,3 +12,7 @@ PKG_SECTION="network" PKG_SHORTDESC="connman: Network manager daemon" PKG_LONGDESC="The ConnMan project provides a daemon for managing internet connections within embedded devices running the Linux operating system. The Connection Manager is designed to be slim and to use as few resources as possible, so it can be easily integrated. It is a fully modular system that can be extended, through plug-ins, to support all kinds of wired or wireless technologies. Also, configuration methods, like DHCP and domain name resolving, are implemented using plug-ins. The plug-in approach allows for easy adaption and modification for various use cases." PKG_IS_ADDON="no" + +if [ "$DEVTOOLS" = yes ]; then + PKG_DEPENDS="$PKG_DEPENDS Python pygobject dbus-python" +fi