projects/*/options: add option to make 'netmount' package optional

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-12-10 05:28:36 +01:00
parent d6a4d512e4
commit 9149c86a75
6 changed files with 18 additions and 3 deletions

View File

@ -5,6 +5,6 @@
$SCRIPTS/install connman
$SCRIPTS/install dropbear
$SCRIPTS/install ethtool
$SCRIPTS/install netmount
[ $NETMOUNT="yes" ] && $SCRIPTS/install netmount
#[ "$PPP_DAEMON" = yes ] && $SCRIPTS/install ppp

View File

@ -4,8 +4,11 @@
mkdir -p $INSTALL/usr/bin
cp $PKG_BUILD/source3/bin/smbtree $INSTALL/usr/bin
cp $PKG_BUILD/source3/bin/mount.cifs $INSTALL/usr/bin
cp $PKG_BUILD/source3/bin/umount.cifs $INSTALL/usr/bin
if [ $NETMOUNT = "yes" ]; then
cp $PKG_BUILD/source3/bin/mount.cifs $INSTALL/usr/bin
cp $PKG_BUILD/source3/bin/umount.cifs $INSTALL/usr/bin
fi
mkdir -p $INSTALL/usr/lib
cp -P $PKG_BUILD/source3/bin/libsmbclient.so* $INSTALL/usr/lib

View File

@ -93,6 +93,9 @@
# build with network support (yes / no)
NETWORK="yes"
# build with netmount (mounting network drives on boot) support (yes / no)
NETMOUNT="yes"
# build ppp daemon (for configuring adsl etc...) (yes / no)
PPP_DAEMON="no"

View File

@ -92,6 +92,9 @@
# build with network support (yes / no)
NETWORK="yes"
# build with netmount (mounting network drives on boot) support (yes / no)
NETMOUNT="yes"
# build ppp daemon (for configuring adsl etc...) (yes / no)
PPP_DAEMON="no"

View File

@ -92,6 +92,9 @@
# build with network support (yes / no)
NETWORK="yes"
# build with netmount (mounting network drives on boot) support (yes / no)
NETMOUNT="yes"
# build ppp daemon (for configuring adsl etc...) (yes / no)
PPP_DAEMON="no"

View File

@ -92,6 +92,9 @@
# build with network support (yes / no)
NETWORK="yes"
# build with netmount (mounting network drives on boot) support (yes / no)
NETMOUNT="yes"
# build ppp daemon (for configuring adsl etc...) (yes / no)
PPP_DAEMON="no"