connman: update to connman-1.10

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2012-12-28 13:55:40 +01:00
parent ba1a615670
commit 55f6444822
4 changed files with 21 additions and 2 deletions

View File

@ -27,7 +27,7 @@ if [ "$PPTP_SUPPORT" = yes ]; then
export PPPD="/usr/sbin/pppd"
export PPTP="/usr/sbin/pptp"
else
CONNMAN_PPP="--disable-pptp"
CONNMAN_PPTP="--disable-pptp"
fi
if [ "$OPENVPN_SUPPORT" = yes ]; then

View File

@ -51,3 +51,22 @@ mkdir -p $INSTALL/usr/sbin
mkdir -p $INSTALL/usr/config
cp $PKG_DIR/config/hosts.conf $INSTALL/usr/config
if [ "$PPTP_SUPPORT" = yes -o "$OPENVPN_SUPPORT" = yes ]; then
mkdir -p $INSTALL/etc/dbus-1/system.d
cp $PKG_BUILD/vpn/connman-vpn-dbus.conf $INSTALL/etc/dbus-1/system.d
mkdir -p $INSTALL/usr/lib/connman/plugins-vpn
cp -P $PKG_BUILD/vpn/plugins/.libs/*.so $INSTALL/usr/lib/connman/plugins-vpn || true
mkdir -p $INSTALL/usr/sbin
cp -P $PKG_BUILD/vpn/connman-vpnd $INSTALL/usr/sbin
mkdir -p $INSTALL/usr/share/dbus-1/system-services
cp -P $PKG_BUILD/vpn/net.connman.vpn.service $INSTALL/usr/share/dbus-1/system-services
fi
if [ "$OPENVPN_SUPPORT" = yes ]; then
mkdir -p $INSTALL/usr/lib/connman/scripts
cp -P $PKG_BUILD/scripts/openvpn-script $INSTALL/usr/lib/connman/scripts
fi

View File

@ -19,7 +19,7 @@
################################################################################
PKG_NAME="connman"
PKG_VERSION="1.9"
PKG_VERSION="1.10"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"