X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=source%2Fsteps%2FMakeInitrd.py;fp=source%2Fsteps%2FMakeInitrd.py;h=16c6341cfba06761db38bf5371101adb63a06e2c;hb=085fbc8beb8e99a2e97401a6de391c3cea8a2b33;hp=fc587c4788a7dfa8ffa99667af4b8452389d2c15;hpb=ec8fde740ff146f175aa2e8a3fd05b85cfe3e56a;p=bootmanager.git diff --git a/source/steps/MakeInitrd.py b/source/steps/MakeInitrd.py index fc587c4..16c6341 100644 --- a/source/steps/MakeInitrd.py +++ b/source/steps/MakeInitrd.py @@ -79,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)