diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-11-25 13:32:06 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-11-25 13:32:06 +0000 |
commit | 8e0fca8382455e95e2ac5c70ee656f27b1a5b821 (patch) | |
tree | ec86c7c5de4728dd2f9ab3c3113c54a95cf185e4 /rescue/Flash | |
parent | 7e6182ec71e177a042ccbb3315f692c995c140a2 (diff) | |
download | drakx-8e0fca8382455e95e2ac5c70ee656f27b1a5b821.tar drakx-8e0fca8382455e95e2ac5c70ee656f27b1a5b821.tar.gz drakx-8e0fca8382455e95e2ac5c70ee656f27b1a5b821.tar.bz2 drakx-8e0fca8382455e95e2ac5c70ee656f27b1a5b821.tar.xz drakx-8e0fca8382455e95e2ac5c70ee656f27b1a5b821.zip |
oops made an order of magnitude error in system.loop size
Diffstat (limited to 'rescue/Flash')
-rwxr-xr-x | rescue/Flash/scripts/clear_systemloop | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/Flash/scripts/clear_systemloop b/rescue/Flash/scripts/clear_systemloop index cd76fc7eb..4152b16bf 100755 --- a/rescue/Flash/scripts/clear_systemloop +++ b/rescue/Flash/scripts/clear_systemloop @@ -35,7 +35,7 @@ function doit() { if [ x"$confirm" = x"y" -o x"$confirm" = x"Y" ]; then if [ ! -f $loop ] || [ x"$version" != x"1.0" ]; then - dd if=/dev/zero of=$loop bs=1000 count=1000 + dd if=/dev/zero of=$loop bs=1000000 count=1000 fi if [ x"$version" = x"1.0" ]; then |