diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-24 21:47:13 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-24 21:47:13 +0000 |
commit | 0bb65731173df75447649d2c1067476584d41eb6 (patch) | |
tree | 5029680df3f499cbe12e1169e8f7c760e53b989a /tools | |
parent | b0871c758e5b78d568a9dbb10f790b9b143c6adb (diff) | |
download | drakx-0bb65731173df75447649d2c1067476584d41eb6.tar drakx-0bb65731173df75447649d2c1067476584d41eb6.tar.gz drakx-0bb65731173df75447649d2c1067476584d41eb6.tar.bz2 drakx-0bb65731173df75447649d2c1067476584d41eb6.tar.xz drakx-0bb65731173df75447649d2c1067476584d41eb6.zip |
give a little more free space (esp. for russian lang)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/make_mdkinst_stage2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make_mdkinst_stage2 b/tools/make_mdkinst_stage2 index f14ceacfe..1d1270b87 100755 --- a/tools/make_mdkinst_stage2 +++ b/tools/make_mdkinst_stage2 @@ -58,7 +58,7 @@ done mkdir -p $MNTPOINT 2>/dev/null for i in $MNTPOINT $STAGE2; do $SUDO umount $i 2>/dev/null ; done -dd if=/dev/zero of=$STAGE2 bs=1k count=$[ `du -s $STAGE2TMP | cut -f1` + 1024 ] +dd if=/dev/zero of=$STAGE2 bs=1k count=$[ `du -s $STAGE2TMP | cut -f1` + 1024 + 200 ] $MKE2FS -N 1000 $STAGE2 $SUDO mount -t ext2 $STAGE2 $MNTPOINT -o loop |