From 896f2a9519e545c751b47c83db0c8b24f88c4827 Mon Sep 17 00:00:00 2001 From: freesource Date: Mon, 4 Mar 2002 02:06:58 +0000 Subject: [PATCH] Added cad "Ctrl-Alt-Del" to mconsole interface, and documented it. Now looks for mconsole at both old location /tmp/uml/$umid/mconsole and new location $ENV{HOME}/.uml/$umid/mconsole. --- BootRoot/BootRoot.pm | 56 ++++++++++++++++++++++++++++++++++---------- Changes | 4 ++++ 2 files changed, 48 insertions(+), 12 deletions(-) diff --git a/BootRoot/BootRoot.pm b/BootRoot/BootRoot.pm index b3c34b9..bcef5e4 100644 --- a/BootRoot/BootRoot.pm +++ b/BootRoot/BootRoot.pm @@ -52,8 +52,8 @@ my $uml_xterm = "xterm -e"; # and to update scripts/Debian.yard if # make_debian has been changed, # and to install -s linux. -my $version = "1.3.4"; -my $date = "02.08.2002"; +my $version = "1.3.5"; +my $date = "02.13.2002"; my $gtk_perl_version = "0.7002"; my $pwd = `pwd`; chomp $pwd; my $home_rootfs = "$home/root_filesystem/"; @@ -1341,7 +1341,7 @@ sub uml_box { $tooltips->set_tip( $eab4, "Pass commands to the mconsole.\n" . "1. sysrq [0-9|b|e|i|l|m|p|r|s|t|u] \n" . - "2. reboot halt \n" . + "2. cad reboot halt \n" . "3. config =\n4. remove \n" . "5. switch \n6. version help", "" ); @@ -1356,6 +1356,38 @@ sub uml_box { [14]); + # Figure out whether it's an old mconsole location + # or new. + + my $umid_location = "/tmp/uml//mconsole"; + if ( -S "/tmp/uml/$umid/mconsole" ) { + $umid_location = "/tmp/uml/$umid/mconsole"; + } + elsif ( -S "$ENV{HOME}/.uml/$umid/mconsole" ) { + $umid_location = "$ENV{HOME}/.uml/$umid/mconsole"; + } + + + # cad + if ( $entry_advanced[14] && + $entry_advanced[14] =~ m,cad, ) { + for my $co (0 .. $#command_parts ) { + if ( $command_parts[$co] eq + "cad" + ) + { + sys( + "uml_mconsole " . + $umid_location . + " cad"); + + } + + } + + } + + # help if ( $entry_advanced[14] && $entry_advanced[14] =~ m,help, ) { @@ -1366,7 +1398,7 @@ sub uml_box { { sys( "uml_mconsole " . - "/tmp/uml/$umid/mconsole" . + $umid_location . " help"); } @@ -1387,7 +1419,7 @@ sub uml_box { { sys( "uml_mconsole " . - "/tmp/uml/$umid/mconsole" . + $umid_location . " version"); } @@ -1408,7 +1440,7 @@ sub uml_box { { system "uml_mconsole " . - "/tmp/uml/$umid/mconsole" . + $umid_location . " reboot&"; } @@ -1427,7 +1459,7 @@ sub uml_box { { system "uml_mconsole " . - "/tmp/uml/$umid/mconsole" . + $umid_location . " halt&"; } @@ -1450,13 +1482,13 @@ sub uml_box { ^m$ | ^p$ | ^r$ | ^s$ | ^t$ | ^u$,x ) { system "uml_mconsole " . - "/tmp/uml/$umid/mconsole" . + $umid_location . " sysrq $command_parts[$co + 1]&"; } else { system "uml_mconsole " . - "/tmp/uml/$umid/mconsole" . + $umid_location . " sysrq&"; } @@ -1478,7 +1510,7 @@ sub uml_box { sys( "uml_mconsole " . - "/tmp/uml/$umid/mconsole" . + $umid_location . " switch $command_parts[$co + 1]"); $umid = $command_parts[$co + 1]; @@ -1501,7 +1533,7 @@ sub uml_box { { system "uml_mconsole " . - "/tmp/uml/$umid/mconsole" . + $umid_location . " config " . "$command_parts[$co + 1]&"; @@ -1522,7 +1554,7 @@ sub uml_box { { system "uml_mconsole " . - "/tmp/uml/$umid/mconsole" . + $umid_location . " remove " . "$command_parts[$co + 1]&"; diff --git a/Changes b/Changes index c1fe033..ba7f711 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,7 @@ +Added cad "Ctrl-Alt-Del" to mconsole interface, and documented it. + +Now looks for mconsole at both old location /tmp/uml/$umid/mconsole and +new location $ENV{HOME}/.uml/$umid/mconsole. Now files for uml_exclusively are made in create_expect_uml which is effectively known as the create stage. This avoids the unecessary previous