summaryrefslogtreecommitdiff
path: root/scripts/live
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/live')
-rwxr-xr-xscripts/live6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/live b/scripts/live
index 97777bd..a73da84 100755
--- a/scripts/live
+++ b/scripts/live
@@ -635,8 +635,10 @@ setup_unionfs() {
# Let's just mount the read-only file systems first
rofsstring=""
rofslist=""
- if [ "${NETBOOT}" = "nfs" ] ; then
- roopt="nfsro" # go aroung a bug in nfs-unionfs locking
+ minor_kernel_version=`uname -r|cut -c 5-|sed 's/[^0-9].*//'`
+ if [ "${NETBOOT}" = "nfs" ] && [ "${minor_kernel_version}" -lt 22 ]; then
+ # go aroung a bug in nfs-unionfs locking for unionfs <= 1.4
+ roopt="nfsro"
else
roopt="ro"
fi