summaryrefslogtreecommitdiffstats
path: root/results/classifier/108/none/1848231
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
commitdee4dcba78baf712cab403d47d9db319ab7f95d6 (patch)
tree418478faf06786701a56268672f73d6b0b4eb239 /results/classifier/108/none/1848231
parent4d9e26c0333abd39bdbd039dcdb30ed429c475ba (diff)
downloademulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.tar.gz
emulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.zip
restructure results
Diffstat (limited to 'results/classifier/108/none/1848231')
-rw-r--r--results/classifier/108/none/184823143
1 files changed, 0 insertions, 43 deletions
diff --git a/results/classifier/108/none/1848231 b/results/classifier/108/none/1848231
deleted file mode 100644
index 711474b0..00000000
--- a/results/classifier/108/none/1848231
+++ /dev/null
@@ -1,43 +0,0 @@
-semantic: 0.583
-device: 0.455
-graphic: 0.370
-other: 0.323
-socket: 0.196
-performance: 0.115
-network: 0.109
-vnc: 0.091
-permissions: 0.070
-boot: 0.066
-KVM: 0.062
-debug: 0.041
-PID: 0.038
-files: 0.008
-
-serial/parallel character devices created for the none-machine
-
-The none-machine can not be started unless using "-serial null":
-
-qemu-system-x86_64 -machine none -nographic -monitor stdio
-QEMU 3.1.1 monitor - type 'help' for more information
-(qemu) qemu-system-x86_64: cannot use stdio by multiple character devices
-qemu-system-x86_64: could not connect serial device to character backend 'stdio'
-$
-
-$ qemu-system-mips -machine none -nographic -serial null -monitor stdio
-QEMU 4.1.50 monitor - type 'help' for more information
-(qemu) info chardev
-parallel0: filename=null
-compat_monitor0: filename=stdio
-serial0: filename=null
-(qemu)
-
-You can start 'none' without "-serial null". Examples:
-
-qemu-system-x86_64 -machine none
-qemu-system-x86_64 -machine none -monitor stdio
-qemu-system-x86_64 -machine none -nographic
-qemu-system-x86_64 -machine none -monitor stdio -display none
-
-Your command line "qemu-system-x86_64 -machine none -nographic -monitor stdio" fails because "-nographic" says "please create a serial port using stdio" but "-monitor stdio" tries to use stdio for something else. You get the same message for any machine (eg "pc"), not just "none". If what you wanted was "just don't create the graphical display" that's "-display none" -- "-nographic" is a collection of things including both 'no display' and also 'default to creating a serial device to stdio' and 'default to creating a monitor muxed with that serial'.
-
-