Merge branch '4.3' of ssh://git.planet-lab.org/git/bootmanager into 4.3
[bootmanager.git] / source / steps / MakeInitrd.py
index e40f9fd..16c6341 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)
 
@@ -78,7 +79,8 @@ def Run( vars, log ):
     # hack for CentOS 5.3
     bypassRaidIfNeeded(SYSIMG_PATH)
     if kernelHasMkinitrd() == True:
-        utils.sysexec_chroot( SYSIMG_PATH, "mkinitrd -v --allow-missing /boot/initrd-%s.img %s" % \
+    # specify ext3 for fedora14 and above as their default fs is ext4
+        utils.sysexec_chroot( SYSIMG_PATH, "mkinitrd -v --with=ext3 --allow-missing /boot/initrd-%s.img %s" % \
                    (kernel_version, kernel_version), log )
     else:
         shutil.copy("./mkinitrd.sh","%s/tmp/mkinitrd.sh" % SYSIMG_PATH)