Displaying 1 result from an estimated 1 matches for "m_rdonly".
Did you mean:
  o_rdonly
  
1997 Apr 07
2
amd 920824upl102 ignores the nodev option
...at 4.1.
The Fix:
A one-character typo in the linux-specific header file for amd prevents it
from actually passing the nodev option to the kernel.
--- amd-upl102/config/os-linux.h.bad	Mon Apr  7 16:41:51 1997
+++ amd-upl102/config/os-linux.h	Mon Apr  7 16:42:19 1997
@@ -252,7 +252,7 @@
 #define M_RDONLY 1 /* mount read-only */
 #define M_NOSUID 2 /* ignore suid and sgid bits */
-#define M_NONDEV 4 /* disallow access to device special files */
+#define M_NODEV 4 /* disallow access to device special files */
 #define M_NOEXEC 8 /* disallow program execution */
 #define M_SYNC  16 /* writes are synce...