connman: add 'cmcc' script to development build

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-09-26 20:48:19 +02:00
parent 708c7440b5
commit f12747a027
2 changed files with 10 additions and 0 deletions

View File

@ -16,3 +16,9 @@ mkdir -p $INSTALL/usr/sbin
mkdir -p $INSTALL/usr/config mkdir -p $INSTALL/usr/config
cp $PKG_DIR/config/network.conf $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

View File

@ -12,3 +12,7 @@ PKG_SECTION="network"
PKG_SHORTDESC="connman: Network manager daemon" 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_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" PKG_IS_ADDON="no"
if [ "$DEVTOOLS" = yes ]; then
PKG_DEPENDS="$PKG_DEPENDS Python pygobject dbus-python"
fi