Merge branch 'master' of github.com:OpenELEC/OpenELEC.tv

This commit is contained in:
Stephan Raue 2012-03-27 05:33:25 +02:00
commit aff3ce7d44

View File

@ -160,9 +160,12 @@ NBD_DEVS="0"
mount_nfs() {
# Mount NFS export
NFS_OPTIONS="nolock,retrans=10"
NFS_EXPORT="${1%%,*}"
NFS_OPTIONS="${1#*,}"
mount_common "$1" "$2" "$3,$NFS_OPTIONS" "nfs"
[ "$NFS_OPTIONS" = "$1" ] && NFS_OPTIONS=
mount_common "$NFS_EXPORT" "$2" "$3,nolock,retrans=10,$NFS_OPTIONS" "nfs"
}
mount_part() {