summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2010-08-18 15:56:11 -0500
committerPatrick Williams <iawillia@us.ibm.com>2010-08-18 15:56:11 -0500
commitfad284f4af86149a8bc78c61bb99f1a1e30e7b68 (patch)
treef5a6f14667715aa677d630f54005f44ff628bcb2
parent9e0e502e19fb103e838595c876f54d038446d8dd (diff)
downloadtalos-hostboot-fad284f4af86149a8bc78c61bb99f1a1e30e7b68.tar.gz
talos-hostboot-fad284f4af86149a8bc78c61bb99f1a1e30e7b68.zip
Deleting unused qemu control file. Use simics for all simulation now.
-rwxr-xr-xqemu_control27
1 files changed, 0 insertions, 27 deletions
diff --git a/qemu_control b/qemu_control
deleted file mode 100755
index bae9dff26..000000000
--- a/qemu_control
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env perl
-
-use strict;
-
-my $command = shift;
-
-if ("start" eq $command)
-{
- system "make all > /dev/null";
- system "qemu-system-ppc64 -bios ./img/kernel.bin -cpu 620 -M prep -m 8mb ".
- "-nographic -monitor telnet:localhost:4444,server,nowait -daemonize";
-}
-elsif (("stop" eq $command) || ("quit" eq $command))
-{
- system "echo 'quit' | nc6 localhost 4444 2> /dev/null > /dev/null";
-}
-elsif (("command" eq $command) || ("control" eq $command))
-{
- system "telnet localhost 4444";
-}
-elsif ("trace" eq $command)
-{
- system "rm -f /tmp/qemu.trace";
- system "echo memsave `grep kernel_printk_buffer ./img/kernel.bin.map | sed 's/kernel_printk_buffer//' | sed 's/ *//g'` 4096 \\\"/tmp/qemu.trace\\\" | nc6 -x localhost 4444 2> /dev/null > /dev/null";
- while (not -e "/tmp/qemu.trace") {};
- system "cat /tmp/qemu.trace";
-}
OpenPOWER on IntegriCloud