mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
projects/*/options: rename $NFS_SUPPORT to $KODI_NFS_SUPPORT, add option for NFS mount support via the OS
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
ad1e4fb8fe
commit
3a164d0a84
@ -362,6 +362,7 @@ show_config() {
|
|||||||
config_message="$config_message\n $dashes$dashes"
|
config_message="$config_message\n $dashes$dashes"
|
||||||
|
|
||||||
config_message="$config_message\n - Avahi (Zeroconf) support:\t\t $AVAHI_DAEMON"
|
config_message="$config_message\n - Avahi (Zeroconf) support:\t\t $AVAHI_DAEMON"
|
||||||
|
config_message="$config_message\n - NFS mounting support:\t\t $NFS_SUPPORT"
|
||||||
config_message="$config_message\n - SAMBA server support:\t\t $SAMBA_SERVER"
|
config_message="$config_message\n - SAMBA server support:\t\t $SAMBA_SERVER"
|
||||||
config_message="$config_message\n - SFTP server support:\t\t\t $SFTP_SERVER"
|
config_message="$config_message\n - SFTP server support:\t\t\t $SFTP_SERVER"
|
||||||
config_message="$config_message\n - PPTP support:\t\t\t $PPTP_SUPPORT"
|
config_message="$config_message\n - PPTP support:\t\t\t $PPTP_SUPPORT"
|
||||||
@ -369,7 +370,7 @@ show_config() {
|
|||||||
config_message="$config_message\n - Kodi Airplay support:\t\t $KODI_AIRPLAY_SUPPORT"
|
config_message="$config_message\n - Kodi Airplay support:\t\t $KODI_AIRPLAY_SUPPORT"
|
||||||
config_message="$config_message\n - Kodi Airtunes support:\t\t $KODI_AIRTUNES_SUPPORT"
|
config_message="$config_message\n - Kodi Airtunes support:\t\t $KODI_AIRTUNES_SUPPORT"
|
||||||
config_message="$config_message\n - Kodi AFP support:\t\t\t $KODI_AFP_SUPPORT"
|
config_message="$config_message\n - Kodi AFP support:\t\t\t $KODI_AFP_SUPPORT"
|
||||||
config_message="$config_message\n - Kodi NFS support:\t\t\t $NFS_SUPPORT"
|
config_message="$config_message\n - Kodi NFS support:\t\t\t $KODI_NFS_SUPPORT"
|
||||||
config_message="$config_message\n - Kodi SAMBA client support:\t\t $SAMBA_SUPPORT"
|
config_message="$config_message\n - Kodi SAMBA client support:\t\t $SAMBA_SUPPORT"
|
||||||
config_message="$config_message\n - Kodi UPNP support:\t\t\t $KODI_UPNP_SUPPORT"
|
config_message="$config_message\n - Kodi UPNP support:\t\t\t $KODI_UPNP_SUPPORT"
|
||||||
config_message="$config_message\n - Kodi Webserver support:\t\t $KODI_WEBSERVER_SUPPORT"
|
config_message="$config_message\n - Kodi Webserver support:\t\t $KODI_WEBSERVER_SUPPORT"
|
||||||
|
@ -215,7 +215,7 @@ else
|
|||||||
KODI_AIRTUNES="--disable-airtunes"
|
KODI_AIRTUNES="--disable-airtunes"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$NFS_SUPPORT" = yes ]; then
|
if [ "$KODI_NFS_SUPPORT" = yes ]; then
|
||||||
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET libnfs"
|
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET libnfs"
|
||||||
KODI_NFS="--enable-nfs"
|
KODI_NFS="--enable-nfs"
|
||||||
else
|
else
|
||||||
|
@ -213,7 +213,7 @@
|
|||||||
KODI_AIRTUNES_SUPPORT="yes"
|
KODI_AIRTUNES_SUPPORT="yes"
|
||||||
|
|
||||||
# build with libnfs support (mounting nfs shares with KODI) (yes / no)
|
# build with libnfs support (mounting nfs shares with KODI) (yes / no)
|
||||||
NFS_SUPPORT="yes"
|
KODI_NFS_SUPPORT="yes"
|
||||||
|
|
||||||
# build with afpfs-ng support (mounting AFP shares with KODI) (yes / no)
|
# build with afpfs-ng support (mounting AFP shares with KODI) (yes / no)
|
||||||
KODI_AFP_SUPPORT="no"
|
KODI_AFP_SUPPORT="no"
|
||||||
@ -221,6 +221,9 @@
|
|||||||
# build and install Samba Client support (yes / no)
|
# build and install Samba Client support (yes / no)
|
||||||
SAMBA_SUPPORT="yes"
|
SAMBA_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build with NFS support (mounting nfs shares via the OS) (yes / no)
|
||||||
|
NFS_SUPPORT="yes"
|
||||||
|
|
||||||
# build and install Samba Server (yes / no)
|
# build and install Samba Server (yes / no)
|
||||||
SAMBA_SERVER="yes"
|
SAMBA_SERVER="yes"
|
||||||
|
|
||||||
|
@ -214,7 +214,7 @@
|
|||||||
KODI_AIRTUNES_SUPPORT="yes"
|
KODI_AIRTUNES_SUPPORT="yes"
|
||||||
|
|
||||||
# build with libnfs support (mounting nfs shares with KODI) (yes / no)
|
# build with libnfs support (mounting nfs shares with KODI) (yes / no)
|
||||||
NFS_SUPPORT="yes"
|
KODI_NFS_SUPPORT="yes"
|
||||||
|
|
||||||
# build with afpfs-ng support (mounting AFP shares with KODI) (yes / no)
|
# build with afpfs-ng support (mounting AFP shares with KODI) (yes / no)
|
||||||
KODI_AFP_SUPPORT="no"
|
KODI_AFP_SUPPORT="no"
|
||||||
@ -222,6 +222,9 @@
|
|||||||
# build and install Samba Client support (yes / no)
|
# build and install Samba Client support (yes / no)
|
||||||
SAMBA_SUPPORT="yes"
|
SAMBA_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build with NFS support (mounting nfs shares via the OS) (yes / no)
|
||||||
|
NFS_SUPPORT="yes"
|
||||||
|
|
||||||
# build and install Samba Server (yes / no)
|
# build and install Samba Server (yes / no)
|
||||||
SAMBA_SERVER="yes"
|
SAMBA_SERVER="yes"
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@
|
|||||||
KODI_AIRTUNES_SUPPORT="yes"
|
KODI_AIRTUNES_SUPPORT="yes"
|
||||||
|
|
||||||
# build with libnfs support (mounting nfs shares with KODI) (yes / no)
|
# build with libnfs support (mounting nfs shares with KODI) (yes / no)
|
||||||
NFS_SUPPORT="yes"
|
KODI_NFS_SUPPORT="yes"
|
||||||
|
|
||||||
# build with afpfs-ng support (mounting AFP shares with KODI) (yes / no)
|
# build with afpfs-ng support (mounting AFP shares with KODI) (yes / no)
|
||||||
KODI_AFP_SUPPORT="no"
|
KODI_AFP_SUPPORT="no"
|
||||||
@ -223,6 +223,9 @@
|
|||||||
# build and install Samba Client support (yes / no)
|
# build and install Samba Client support (yes / no)
|
||||||
SAMBA_SUPPORT="yes"
|
SAMBA_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build with NFS support (mounting nfs shares via the OS) (yes / no)
|
||||||
|
NFS_SUPPORT="yes"
|
||||||
|
|
||||||
# build and install Samba Server (yes / no)
|
# build and install Samba Server (yes / no)
|
||||||
SAMBA_SERVER="yes"
|
SAMBA_SERVER="yes"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user