this sysexec thing just sucks
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Mon, 17 Jan 2011 21:33:54 +0000 (22:33 +0100)
committerS.Çağlar Onur <caglar@verivue.com>
Tue, 15 Mar 2011 15:58:08 +0000 (11:58 -0400)
source/steps/MakeInitrd.py

index e40f9fd..fc587c4 100644 (file)
@@ -64,8 +64,9 @@ def Run( vars, log ):
     # /proc is already mounted, so bind-mount /dev here
     # xxx tmp - trying to work around the f14 case:
     # check that /dev/ is mounted with devtmpfs
-    if utils.sysexec_noerr ("grep devtmpfs /proc/mounts") != 0:
-        utils.sysexec("mount -t devtmpfs none /dev")
+    # tmp - sysexec_noerr not returning what one would expect
+    # if utils.sysexec_noerr ("grep devtmpfs /proc/mounts") != 0:
+    utils.sysexec_noerr("mount -t devtmpfs none /dev")
     utils.sysexec("mount -o bind /dev %s/dev" % SYSIMG_PATH)
     utils.sysexec("mount -t sysfs none %s/sys" % SYSIMG_PATH)