summaryrefslogtreecommitdiffstats
path: root/scripts/runqemu-export-rootfs
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/runqemu-export-rootfs')
-rwxr-xr-xscripts/runqemu-export-rootfs10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/runqemu-export-rootfs b/scripts/runqemu-export-rootfs
index 0dd3eba8b6..7ebc07194d 100755
--- a/scripts/runqemu-export-rootfs
+++ b/scripts/runqemu-export-rootfs
@@ -78,13 +78,13 @@ if [ ! -d "$PSEUDO_LOCALSTATEDIR" ]; then
78fi 78fi
79 79
80# rpc.mountd RPC port 80# rpc.mountd RPC port
81MOUNTD_RPCPORT=$[ 21111 + $NFS_INSTANCE ] 81MOUNTD_RPCPORT=${MOUNTD_RPCPORT:=$[ 21111 + $NFS_INSTANCE ]}
82# rpc.nfsd RPC port 82# rpc.nfsd RPC port
83NFSD_RPCPORT=$[ 11111 + $NFS_INSTANCE ] 83NFSD_RPCPORT=${NFSD_RPCPORT:=$[ 11111 + $NFS_INSTANCE ]}
84# NFS server port number 84# NFS server port number
85NFSD_PORT=$[ 3049 + 2 * $NFS_INSTANCE ] 85NFSD_PORT=${NFSD_PORT:=$[ 3049 + 2 * $NFS_INSTANCE ]}
86# mountd port number 86# mountd port number
87MOUNTD_PORT=$[ 3048 + 2 * $NFS_INSTANCE ] 87MOUNTD_PORT=${MOUNTD_PORT:=$[ 3048 + 2 * $NFS_INSTANCE ]}
88 88
89## For debugging you would additionally add 89## For debugging you would additionally add
90## --debug all 90## --debug all
@@ -109,7 +109,7 @@ case "$1" in
109 fi 109 fi
110 110
111 echo "Creating exports file..." 111 echo "Creating exports file..."
112 echo "$NFS_EXPORT_DIR (rw,async,no_root_squash,no_all_squash,insecure)" > $EXPORTS 112 echo "$NFS_EXPORT_DIR (rw,no_root_squash,no_all_squash,insecure)" > $EXPORTS
113 113
114 echo "Starting User Mode nfsd" 114 echo "Starting User Mode nfsd"
115 echo " $PSEUDO $PSEUDO_OPTS $OECORE_NATIVE_SYSROOT/usr/bin/unfsd $UNFSD_OPTS" 115 echo " $PSEUDO $PSEUDO_OPTS $OECORE_NATIVE_SYSROOT/usr/bin/unfsd $UNFSD_OPTS"