From: Thierry Parmentelat Date: Tue, 18 Jan 2011 16:17:18 +0000 (+0100) Subject: add ext3 in initrd for f14 X-Git-Tag: bootmanager-5.0-16~1 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=6b990b7945de32cd19ec09627b17691d981b23ef add ext3 in initrd for f14 --- diff --git a/source/steps/MakeInitrd.py b/source/steps/MakeInitrd.py index a98c8f0..4564dfe 100644 --- a/source/steps/MakeInitrd.py +++ b/source/steps/MakeInitrd.py @@ -68,7 +68,8 @@ def Run( vars, log ): # hack for CentOS 5.3 bypassRaidIfNeeded(SYSIMG_PATH , log ) - 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 ) utils.sysexec_noerr("umount %s/sys" % SYSIMG_PATH , log )