ports/51406: Add linprocfs mount check to emulators/linux_base

Miguel Mendez flynn at energyhq.homeip.net
Fri Apr 25 08:30:15 UTC 2003


>Number:         51406
>Category:       ports
>Synopsis:       Add linprocfs mount check to emulators/linux_base
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 25 01:30:13 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Miguel Mendez
>Release:        FreeBSD 5.0-RELEASE-p7 i386
>Organization:
>Environment:
System: FreeBSD isengard.energyhq.tk 5.0-RELEASE-p7 FreeBSD 5.0-RELEASE-p7 #0: Fri Apr 11 10:51:38 CEST 2003 root at isengard.energyhq.tk:/usr/obj/usr/src/sys/ISENGARD i386


	
>Description:
If one has linux_base and linprofcs mounted and tries to portupgrade it,
cpio will fail in /compat/linux/proc. This little patch makes it possible
to portupgrade linux_base if linprocfs is mounted.
>How-To-Repeat:
	
>Fix:

	

--- linux_base.diff begins here ---
diff -ruN linux_base.old/Makefile linux_base/Makefile
--- linux_base.old/Makefile	Wed Apr  9 04:05:12 2003
+++ linux_base/Makefile	Fri Apr 25 09:54:29 2003
@@ -165,6 +165,7 @@
 	@${LN} -sf /var/tmp ${LINUXBASE}/usr/tmp
 
 post-install:
+	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
 	@${ECHO} ''
 	@fmt ${PKGMESSAGE}
 	@${ECHO} ''
diff -ruN linux_base.old/pkg-install linux_base/pkg-install
--- linux_base.old/pkg-install	Tue Aug 22 01:43:25 2000
+++ linux_base/pkg-install	Fri Apr 25 10:06:53 2003
@@ -11,7 +11,18 @@
 			echo 'Please enable linux mode manually and retry.'
 			exit 1
 		fi
+# Make sure linprocfs is not mounted so we can portupgrade this
+#
 	fi
+		echo "------------------------------------------------------------"
+		echo "Note: /compat/linux/proc will be umounted for the install..."
+		echo "------------------------------------------------------------"
+		/sbin/mount|grep linproc>/dev/null \
+			&& /sbin/umount /compat/linux/proc
+	;;
+
+POST-INSTALL)
+	mount_linprocfs linproc /compat/linux/proc
 	;;
 esac
 
--- linux_base.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list