]> Zhao Yanbai Git Server - minix.git/commitdiff
ProcFS integration
authorDavid van Moolenbroek <david@minix3.org>
Tue, 14 Sep 2010 21:27:31 +0000 (21:27 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Tue, 14 Sep 2010 21:27:31 +0000 (21:27 +0000)
docs/UPDATING
etc/mtree/minix.tree
etc/rc
include/minix/paths.h

index 7f9d3cc0db519f05045846d59f9c12b9a7381532..c5b3df1620ad754e962c8a348bab55b48cb0fc8c 100644 (file)
@@ -1,3 +1,7 @@
+20100914:
+       mkdir /proc
+       chmod 555 /proc
+
 20100827:
        From now on, the rc scripts, recovery scripts and system.conf in /etc
        and /usr/etc are updated automatically by make world. If you want to
index 6a19b7315747cae8afc9b6b3f3dad21f8790be54..268748dd4be148618ae508edfa7b7bf2ae2c499b 100644 (file)
@@ -8,6 +8,7 @@
 755 root    operator /boot
 755 root    operator /boot/image
 555 root    operator /mnt
+555 root    operator /proc
 700 root    operator /root
 1777 root   operator /tmp
 755 root    operator /usr
diff --git a/etc/rc b/etc/rc
index 3b66262804c4b75e1b4f76abdde81e3060a02256..8c5325717ec3736cf535c6e47c19860b3d5b02fd 100755 (executable)
--- a/etc/rc
+++ b/etc/rc
@@ -192,6 +192,8 @@ Mount $usr /usr failed -- Single user."
     then mount $bin_img $home /home || echo "WARNING: couldn't mount $home on /home"
     fi
 
+    mount -t procfs none /proc || echo "WARNING: couldn't mount procfs"
+
     # This file is necessary for above 'shutdown -C' check.
     # (Silence stderr in case of running from cd.)
     touch /usr/adm/wtmp 2>/dev/null
index 9eeb297991f043e9029fb586f683d7074df3027f..88a82efe292748bc6e77d8f29c6bc9dce9cb58bc 100644 (file)
@@ -23,4 +23,6 @@
 #define _PATH_SYSTEM_CONF      "/etc/system.conf"
 #define _PATH_SYSTEM_CONF_DIR  "/etc/system.conf.d"
 
+#define _PATH_PROC     "/proc"
+
 #endif