svn commit: r517165 - in head/java: openjdk11 openjdk12 openjdk13 openjdk8

Greg Lewis glewis at FreeBSD.org
Sat Nov 9 22:28:55 UTC 2019


Author: glewis
Date: Sat Nov  9 22:28:53 2019
New Revision: 517165
URL: https://svnweb.freebsd.org/changeset/ports/517165

Log:
  Reinstate guidance to have /proc mounted
  
  * Having /proc mounted is not generally critical, but there is at least one
    piece of functionality that does rely on its presence at the moment
    (e.g. OperatingSystemMXBean)

Modified:
  head/java/openjdk11/pkg-message
  head/java/openjdk12/pkg-message
  head/java/openjdk13/pkg-message
  head/java/openjdk8/pkg-message

Modified: head/java/openjdk11/pkg-message
==============================================================================
--- head/java/openjdk11/pkg-message	Sat Nov  9 22:08:39 2019	(r517164)
+++ head/java/openjdk11/pkg-message	Sat Nov  9 22:28:53 2019	(r517165)
@@ -1,15 +1,18 @@
 [
 { type: install
   message: <<EOM
-This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd
+This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd and
+procfs(5) mounted on /proc.
 
 If you have not done it yet, please do the following:
 
 	mount -t fdescfs fdesc /dev/fd
+	mount -t procfs proc /proc
 
 To make it permanent, you need the following lines in /etc/fstab:
 
 	fdesc	/dev/fd		fdescfs		rw	0	0
+	proc	/proc		procfs		rw	0	0
 EOM
 }
 ]

Modified: head/java/openjdk12/pkg-message
==============================================================================
--- head/java/openjdk12/pkg-message	Sat Nov  9 22:08:39 2019	(r517164)
+++ head/java/openjdk12/pkg-message	Sat Nov  9 22:28:53 2019	(r517165)
@@ -1,15 +1,18 @@
 [
 { type: install
   message: <<EOM
-This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd
+This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd and
+procfs(5) mounted on /proc.
 
 If you have not done it yet, please do the following:
 
 	mount -t fdescfs fdesc /dev/fd
+	mount -t procfs proc /proc
 
 To make it permanent, you need the following lines in /etc/fstab:
 
 	fdesc	/dev/fd		fdescfs		rw	0	0
+	proc	/proc		procfs		rw	0	0
 EOM
 }
 ]

Modified: head/java/openjdk13/pkg-message
==============================================================================
--- head/java/openjdk13/pkg-message	Sat Nov  9 22:08:39 2019	(r517164)
+++ head/java/openjdk13/pkg-message	Sat Nov  9 22:28:53 2019	(r517165)
@@ -1,15 +1,18 @@
 [
 { type: install
   message: <<EOM
-This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd
+This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd and
+procfs(5) mounted on /proc.
 
 If you have not done it yet, please do the following:
 
 	mount -t fdescfs fdesc /dev/fd
+	mount -t procfs proc /proc
 
 To make it permanent, you need the following lines in /etc/fstab:
 
 	fdesc	/dev/fd		fdescfs		rw	0	0
+	proc	/proc		procfs		rw	0	0
 EOM
 }
 ]

Modified: head/java/openjdk8/pkg-message
==============================================================================
--- head/java/openjdk8/pkg-message	Sat Nov  9 22:08:39 2019	(r517164)
+++ head/java/openjdk8/pkg-message	Sat Nov  9 22:28:53 2019	(r517165)
@@ -1,15 +1,18 @@
 [
 { type: install
   message: <<EOM
-This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd
+This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd and
+procfs(5) mounted on /proc.
 
 If you have not done it yet, please do the following:
 
 	mount -t fdescfs fdesc /dev/fd
+	mount -t procfs proc /proc
 
 To make it permanent, you need the following lines in /etc/fstab:
 
 	fdesc	/dev/fd		fdescfs		rw	0	0
+	proc	/proc		procfs		rw	0	0
 EOM
 }
 ]


More information about the svn-ports-all mailing list