1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-23 09:03:23 -05:00

Made the uml_helper output verbosity 2.

This commit is contained in:
freesource 2001-12-21 18:25:24 +00:00
parent 4c76a5428c
commit c7ff2c231c

View File

@ -1408,12 +1408,12 @@ sub create_filesystem {
my $command_line = "$expect_program $ubd0 $ubd1 $options " . my $command_line = "$expect_program $ubd0 $ubd1 $options " .
"$mount_point $preserve_ownership $filesystem"; "$mount_point $preserve_ownership $filesystem";
info(1,"\n$command_line\n\n"); info(0,"\n$command_line\n\n");
# add error correction # add error correction
open(EXPECT,"$command_line|"); open(EXPECT,"$command_line|");
while (<EXPECT>) { while (<EXPECT>) {
info(0,"$x_count $_"); info(1,"$x_count $_");
$x_count++; $x_count++;
while (Gtk->events_pending) { Gtk->main_iteration; } while (Gtk->events_pending) { Gtk->main_iteration; }
} }