trying to run mkfedora without mounting /proc at all
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Sun, 18 Nov 2007 21:47:11 +0000 (21:47 +0000)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Sun, 18 Nov 2007 21:47:11 +0000 (21:47 +0000)
mkfedora

index f29ee0b..a43496e 100755 (executable)
--- a/mkfedora
+++ b/mkfedora
@@ -191,13 +191,14 @@ set -e
 mount -t devpts none $vroot/dev/pts
 mount -t tmpfs none $vroot/dev/shm
 
-# Mount /proc in reference image
-mkdir -p $vroot/proc
-mount -t proc none $vroot/proc
+# why do we need this ? it prevents the 'filesystem' rpm from installing
+## Mount /proc in reference image
+#mkdir -p $vroot/proc
+#mount -t proc none $vroot/proc
 
 cleanup ()
 {
-    umount -l $vroot/proc
+#    umount -l $vroot/proc
     umount -l $vroot/dev/shm
     umount -l $vroot/dev/pts
 }