mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 21:26:49 +00:00
projects/*/options: add option to make 'netmount' package optional
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
d6a4d512e4
commit
9149c86a75
@ -5,6 +5,6 @@
|
|||||||
$SCRIPTS/install connman
|
$SCRIPTS/install connman
|
||||||
$SCRIPTS/install dropbear
|
$SCRIPTS/install dropbear
|
||||||
$SCRIPTS/install ethtool
|
$SCRIPTS/install ethtool
|
||||||
$SCRIPTS/install netmount
|
[ $NETMOUNT="yes" ] && $SCRIPTS/install netmount
|
||||||
|
|
||||||
#[ "$PPP_DAEMON" = yes ] && $SCRIPTS/install ppp
|
#[ "$PPP_DAEMON" = yes ] && $SCRIPTS/install ppp
|
||||||
|
@ -4,8 +4,11 @@
|
|||||||
|
|
||||||
mkdir -p $INSTALL/usr/bin
|
mkdir -p $INSTALL/usr/bin
|
||||||
cp $PKG_BUILD/source3/bin/smbtree $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
|
mkdir -p $INSTALL/usr/lib
|
||||||
cp -P $PKG_BUILD/source3/bin/libsmbclient.so* $INSTALL/usr/lib
|
cp -P $PKG_BUILD/source3/bin/libsmbclient.so* $INSTALL/usr/lib
|
||||||
|
@ -93,6 +93,9 @@
|
|||||||
# build with network support (yes / no)
|
# build with network support (yes / no)
|
||||||
NETWORK="yes"
|
NETWORK="yes"
|
||||||
|
|
||||||
|
# build with netmount (mounting network drives on boot) support (yes / no)
|
||||||
|
NETMOUNT="yes"
|
||||||
|
|
||||||
# build ppp daemon (for configuring adsl etc...) (yes / no)
|
# build ppp daemon (for configuring adsl etc...) (yes / no)
|
||||||
PPP_DAEMON="no"
|
PPP_DAEMON="no"
|
||||||
|
|
||||||
|
@ -92,6 +92,9 @@
|
|||||||
# build with network support (yes / no)
|
# build with network support (yes / no)
|
||||||
NETWORK="yes"
|
NETWORK="yes"
|
||||||
|
|
||||||
|
# build with netmount (mounting network drives on boot) support (yes / no)
|
||||||
|
NETMOUNT="yes"
|
||||||
|
|
||||||
# build ppp daemon (for configuring adsl etc...) (yes / no)
|
# build ppp daemon (for configuring adsl etc...) (yes / no)
|
||||||
PPP_DAEMON="no"
|
PPP_DAEMON="no"
|
||||||
|
|
||||||
|
@ -92,6 +92,9 @@
|
|||||||
# build with network support (yes / no)
|
# build with network support (yes / no)
|
||||||
NETWORK="yes"
|
NETWORK="yes"
|
||||||
|
|
||||||
|
# build with netmount (mounting network drives on boot) support (yes / no)
|
||||||
|
NETMOUNT="yes"
|
||||||
|
|
||||||
# build ppp daemon (for configuring adsl etc...) (yes / no)
|
# build ppp daemon (for configuring adsl etc...) (yes / no)
|
||||||
PPP_DAEMON="no"
|
PPP_DAEMON="no"
|
||||||
|
|
||||||
|
@ -92,6 +92,9 @@
|
|||||||
# build with network support (yes / no)
|
# build with network support (yes / no)
|
||||||
NETWORK="yes"
|
NETWORK="yes"
|
||||||
|
|
||||||
|
# build with netmount (mounting network drives on boot) support (yes / no)
|
||||||
|
NETMOUNT="yes"
|
||||||
|
|
||||||
# build ppp daemon (for configuring adsl etc...) (yes / no)
|
# build ppp daemon (for configuring adsl etc...) (yes / no)
|
||||||
PPP_DAEMON="no"
|
PPP_DAEMON="no"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user