From ccb0ccdbcba28c5f06137a7d0f05f4ef2c880321 Mon Sep 17 00:00:00 2001 From: Edward Tomasz Napierala Date: Sat, 29 Aug 2020 12:54:17 +0000 Subject: [PATCH] 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 --- libexec/rc/rc.d/linux | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libexec/rc/rc.d/linux b/libexec/rc/rc.d/linux index 4fe9cee6e75..1ff9a78f9e3 100755 --- a/libexec/rc/rc.d/linux +++ b/libexec/rc/rc.d/linux @@ -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 } -- 2.45.0