summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/118/x86/1916
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/zero-shot/118/x86/1916')
-rw-r--r--results/classifier/zero-shot/118/x86/191658
1 files changed, 58 insertions, 0 deletions
diff --git a/results/classifier/zero-shot/118/x86/1916 b/results/classifier/zero-shot/118/x86/1916
new file mode 100644
index 00000000..6b840273
--- /dev/null
+++ b/results/classifier/zero-shot/118/x86/1916
@@ -0,0 +1,58 @@
+x86: 0.899
+device: 0.886
+debug: 0.863
+graphic: 0.841
+ppc: 0.811
+PID: 0.782
+kernel: 0.759
+files: 0.748
+register: 0.733
+vnc: 0.697
+performance: 0.693
+socket: 0.683
+semantic: 0.682
+architecture: 0.669
+permissions: 0.654
+network: 0.651
+risc-v: 0.595
+peripherals: 0.582
+VMM: 0.582
+user-level: 0.544
+arm: 0.537
+TCG: 0.526
+boot: 0.499
+i386: 0.482
+hypervisor: 0.447
+mistranslation: 0.446
+assembly: 0.411
+virtual: 0.324
+KVM: 0.149
+
+qemu-fixed-text-console.device not found error when using display set to anything but SDL
+Description of problem:
+When attempting to launch QEmu from the command line using any display option aside from `sdl`, QEmu fails to launch with this error message:
+
+```plaintext
+Unexpected error in object_property_find_err() at ../qom/object.c:1314:
+qemu: Property 'qemu-fixed-text-console.device' not found
+Aborted
+```
+
+This error is almost nonexistent when searching online. There is a mention of it in this chain of messages on the mailing list from about a week ago, but it doesn't seem to discuss any kind of way to remedy it. Link: https://www.mail-archive.com/qemu-devel@nongnu.org/msg988630.html
+
+I came across this issue because I was attempting to launch QEmu in other display modes, because for some reason if I launch with the `-display sdl` option, QEmu successfully starts up but then the display is black the majority of the time with some very brief flickers of the OS, and mouse/keyboard input don't seem to be correctly handled, making it unusable. So when trying to see if another display configuration could help me be able to resolve the black screen issue, I learned that I can't even launch with any other configuration due to the fixed text console not being found.
+
+I have been using these simple arguments for running the configure script:
+
+```plaintext
+../configure --enable-debug --target-list=x86_64-softmmu
+```
+
+I tried using the configure flags `--enable-gtk` and `--enable-sdl` to see if they made any difference, but it seemed like they did not (neither the black screen issue or the fixed text console device error changed) so I just started leaving them off.
+Steps to reproduce:
+1. Run configure script
+2. Run make to build QEmu
+3. Launch QEmu using `-display gtk` or with no `-display` option specified at all (also tried: `./qemu-system-x86_64 -m 6G -smp 2 -hda ../../vdisk1.qcow2`) and the error occurred.
+4. Error occurs
+Additional information:
+I am new to QEmu and am trying to use it as part of a college project, so if anyone wants to respond, please let me know if I can give any additional information at all that could help.