busybox-initramfs: init: cosmetics

Don't add general mount options to NFS_OPTIONS, pass them as combined options
instead.

Signed-off-by: Alain Kalker <a.c.kalker@gmail.com>
This commit is contained in:
Alain Kalker 2012-03-20 04:50:01 +01:00
parent 4f0052a875
commit 0de52e9de0

View File

@ -153,9 +153,9 @@ NBD_DEVS="0"
mount_nfs() {
# Mount NFS export
NFS_OPTIONS="$3,nolock,retrans=10"
NFS_OPTIONS="nolock,retrans=10"
mount_common "$1" "$2" "$NFS_OPTIONS" "nfs"
mount_common "$1" "$2" "$3,$NFS_OPTIONS" "nfs"
}
mount_part() {