009-nfs-remount.patch 510 B

12345678910111213
  1. diff -Nur busybox-1.18.4.orig/util-linux/mount.c busybox-1.18.4/util-linux/mount.c
  2. --- busybox-1.18.4.orig/util-linux/mount.c 2011-03-13 02:45:40.000000000 +0100
  3. +++ busybox-1.18.4/util-linux/mount.c 2011-05-15 03:12:40.000000000 +0200
  4. @@ -1129,6 +1129,9 @@
  5. continue;
  6. case 20: // "addr" - ignore
  7. continue;
  8. + case -1: // unknown
  9. + if (vfsflags & MS_REMOUNT)
  10. + continue;
  11. }
  12. val = xatoi_positive(opteq);