mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 21:26:49 +00:00
projects/*/options: add config option to enable installation of Apple mount support (via ifuse), enable ifuse build by default
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
2bd95e1c13
commit
1965d4009f
@ -126,6 +126,9 @@
|
||||
# build and install NTFS-3G fuse support (yes / no)
|
||||
NTFS3G="yes"
|
||||
|
||||
# build and install Apple device mount support (via ifuse) (yes / no)
|
||||
APPLEMOUNT="yes"
|
||||
|
||||
# Displayserver to use (xorg-server / no)
|
||||
DISPLAYSERVER="xorg-server"
|
||||
|
||||
|
@ -125,6 +125,9 @@
|
||||
# build and install NTFS-3G fuse support (yes / no)
|
||||
NTFS3G="yes"
|
||||
|
||||
# build and install Apple device mount support (via ifuse) (yes / no)
|
||||
APPLEMOUNT="yes"
|
||||
|
||||
# Displayserver to use (xorg-server / no)
|
||||
DISPLAYSERVER="xorg-server"
|
||||
|
||||
|
@ -125,6 +125,9 @@
|
||||
# build and install NTFS-3G fuse support (yes / no)
|
||||
NTFS3G="yes"
|
||||
|
||||
# build and install Apple device mount support (via ifuse) (yes / no)
|
||||
APPLEMOUNT="yes"
|
||||
|
||||
# Displayserver to use (xorg-server / no)
|
||||
DISPLAYSERVER="xorg-server"
|
||||
|
||||
|
@ -125,6 +125,9 @@
|
||||
# build and install NTFS-3G fuse support (yes / no)
|
||||
NTFS3G="yes"
|
||||
|
||||
# build and install Apple device mount support (via ifuse) (yes / no)
|
||||
APPLEMOUNT="yes"
|
||||
|
||||
# Displayserver to use (xorg-server / no)
|
||||
DISPLAYSERVER="xorg-server"
|
||||
|
||||
|
@ -88,6 +88,9 @@ mkdir -p $INSTALL
|
||||
# NTFS 3G support
|
||||
[ "$NTFS3G" = "yes" ] && $SCRIPTS/install ntfs-3g
|
||||
|
||||
# Apple mount (ifuse) support
|
||||
[ "$APPLEMOUNT" = "yes" ] && $SCRIPTS/install ifuse
|
||||
|
||||
# Remote support
|
||||
[ "$REMOTE_SUPPORT" = "yes" ] && $SCRIPTS/install remote
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user