From 5a2e504c1dbf17f999085e527f76e50137242165 Mon Sep 17 00:00:00 2001 From: freesource Date: Fri, 21 Dec 2001 18:44:55 +0000 Subject: [PATCH] a little bit more verbosity change. --- BootRoot/Yard.pm | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/BootRoot/Yard.pm b/BootRoot/Yard.pm index ea58c9b..0e5e612 100644 --- a/BootRoot/Yard.pm +++ b/BootRoot/Yard.pm @@ -1292,7 +1292,12 @@ sub create_filesystem { ##### Tricky stuff is over with, now copy the remaining files. - info(0, "\nCopying files to $device\n"); + if ( $uml_exclusively == 0 && $fs_type ne "genext2fs") { + info(0, "\nCopying files to $device\n"); + } + else { + info(0, "\nCopying files to $mount_point\n"); + } my(%copied); @@ -1358,7 +1363,9 @@ sub create_filesystem { } - info(0, "\nFinished creating root filesystem.\n"); + if ( $uml_exclusively == 0 ) { + info(0, "\nFinished creating root filesystem.\n"); + } if (@Libs) { @@ -1385,7 +1392,6 @@ sub create_filesystem { my $device_table = "$mnt/device_table.txt"; - # Just for testing purposes .. working out the logic in a little bit. if ( $uml_exclusively ) { @@ -1408,7 +1414,8 @@ sub create_filesystem { my $command_line = "$expect_program $ubd0 $ubd1 $options " . "$mount_point $preserve_ownership $filesystem"; - info(0,"\n$command_line\n\n"); + info(0,"\nUsing helper root_fs to $fs_type the filesystem:\n\n"); + info(0,"$command_line\n\n"); # add error correction open(EXPECT,"$command_line|");