diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-20 11:03:33 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-20 11:03:33 +0000 |
commit | 021ffe2c1d5f6c271a49c5d681e2b0bbbe943c93 (patch) | |
tree | b258af7f34af9bdc3305ceae546cf80a52d9c75b /make_boot_img | |
parent | 95c6fde68bfb4bdcdb49dfa3a53406c044397171 (diff) | |
download | drakx-021ffe2c1d5f6c271a49c5d681e2b0bbbe943c93.tar drakx-021ffe2c1d5f6c271a49c5d681e2b0bbbe943c93.tar.gz drakx-021ffe2c1d5f6c271a49c5d681e2b0bbbe943c93.tar.bz2 drakx-021ffe2c1d5f6c271a49c5d681e2b0bbbe943c93.tar.xz drakx-021ffe2c1d5f6c271a49c5d681e2b0bbbe943c93.zip |
all.rdz needs more than 4MB, raising to 5MB
Diffstat (limited to 'make_boot_img')
-rwxr-xr-x | make_boot_img | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_boot_img b/make_boot_img index ba6d21c2f..31ac922dc 100755 --- a/make_boot_img +++ b/make_boot_img @@ -105,7 +105,7 @@ sub initrd { my $tar = "$instdir/stage1-data/stage1.tar.bz2"; __ "$sudo umount $tmp $mnt 2>/dev/null"; - _ "dd if=/dev/zero of=$tmp bs=1k count=" . ($arch =~ /ia64/ ? ($type eq "all" ? 16386 : 16384) : ($type eq "all" ? 4000 : 2000)); + _ "dd if=/dev/zero of=$tmp bs=1k count=" . ($arch =~ /ia64/ ? ($type eq "all" ? 16386 : 16384) : ($type eq "all" ? 5000 : 2000)); _ "$mke2fs $tmp"; _ "$sudo mount -t ext2 $tmp $mnt -o loop"; |