kadischi/livecd_generator livecd-mkinitrd.sh,1.19,1.20

Jasper O'neal Hartline (autopsy) fedora-extras-commits at redhat.com
Tue Aug 15 23:26:38 UTC 2006


Author: autopsy

Update of /cvs/devel/kadischi/livecd_generator
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv18214/kadischi/livecd_generator

Modified Files:
	livecd-mkinitrd.sh 
Log Message:
Rectify Kadischi/kernel issue #202715 with loop in __find_get_block_slow and block size too small for device


Index: livecd-mkinitrd.sh
===================================================================
RCS file: /cvs/devel/kadischi/livecd_generator/livecd-mkinitrd.sh,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- livecd-mkinitrd.sh	30 Jul 2006 07:27:49 -0000	1.19
+++ livecd-mkinitrd.sh	15 Aug 2006 23:26:36 -0000	1.20
@@ -224,7 +224,8 @@
 
 # We have to "echo y |" so that it doesn't complain about $IMAGE not
 # being a block device
-echo y | /sbin/mke2fs $LODEV $IMAGESIZE >/dev/null 2>/dev/null
+# We also use -b 4096 to rectify issue: BZ #202715
+echo y | /sbin/mke2fs -b 4096 $LODEV $IMAGESIZE >/dev/null 2>/dev/null
 /sbin/tune2fs -i0 $LODEV >/dev/null
 
 if [ -n "$verbose" ]; then




More information about the fedora-extras-commits mailing list