svn commit: r364955 - stable/12/libexec/rc/rc.d

Edward Tomasz Napierala trasz at FreeBSD.org
Sat Aug 29 12:54:18 UTC 2020


Author: trasz
Date: Sat Aug 29 12:54:17 2020
New Revision: 364955
URL: https://svnweb.freebsd.org/changeset/base/364955

Log:
  Drop the "nocover" option from the linux rc script; the option
  is not yet supported in 12-STABLE.
  
  This is a direct commit intended as a temporary workaround.
  
  Reported by:	scf@
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/12/libexec/rc/rc.d/linux

Modified: stable/12/libexec/rc/rc.d/linux
==============================================================================
--- stable/12/libexec/rc/rc.d/linux	Sat Aug 29 12:04:13 2020	(r364954)
+++ stable/12/libexec/rc/rc.d/linux	Sat Aug 29 12:54:17 2020	(r364955)
@@ -48,11 +48,11 @@ linux_start()
 
 	if checkyesno linux_mounts_enable; then 
 		_emul_path="/compat/linux"
-		mount -o nocover -t linprocfs linprocfs "${_emul_path}/proc"
-		mount -o nocover -t linsysfs linsysfs "${_emul_path}/sys"
-		mount -o nocover -t devfs devfs "${_emul_path}/dev"
-		mount -o nocover,linrdlnk -t fdescfs fdescfs "${_emul_path}/dev/fd"
-		mount -o nocover,mode=1777 -t tmpfs tmpfs "${_emul_path}/dev/shm"
+		mount -t linprocfs linprocfs "${_emul_path}/proc"
+		mount -t linsysfs linsysfs "${_emul_path}/sys"
+		mount -t devfs devfs "${_emul_path}/dev"
+		mount -o linrdlnk -t fdescfs fdescfs "${_emul_path}/dev/fd"
+		mount -o mode=1777 -t tmpfs tmpfs "${_emul_path}/dev/shm"
 	fi
 }
 


More information about the svn-src-stable-12 mailing list