summary refs log tree commit diff stats
path: root/results/classifier/deepseek-2/output/hypervisor/1886318
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
commitd0c85e36e4de67af628d54e9ab577cc3fad7796a (patch)
treef8f784b0f04343b90516a338d6df81df3a85dfa2 /results/classifier/deepseek-2/output/hypervisor/1886318
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloademulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
emulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/deepseek-2/output/hypervisor/1886318')
-rw-r--r--results/classifier/deepseek-2/output/hypervisor/188631840
1 files changed, 40 insertions, 0 deletions
diff --git a/results/classifier/deepseek-2/output/hypervisor/1886318 b/results/classifier/deepseek-2/output/hypervisor/1886318
new file mode 100644
index 00000000..e3226ddb
--- /dev/null
+++ b/results/classifier/deepseek-2/output/hypervisor/1886318
@@ -0,0 +1,40 @@
+
+Qemu after v5.0.0 breaks macos guests
+
+The Debian Sid 5.0-6 qemu-kvm package can no longer get further than the Clover bootloader whereas 5.0-6 and earlier worked fine.
+
+So I built qemu master from github and it has the same problem, whereas git tag v5.0.0 (or 4.2.1) does not, so something between v5.0.0 release and the last few days has caused the problem.
+
+Here's my qemu script, pretty standard macOS-Simple-KVM setup on a Xeon host:
+
+qemu-system-x86_64 \
+    -enable-kvm \
+    -m 4G \
+    -machine q35,accel=kvm \
+    -smp 4,sockets=1,cores=2,threads=2 \
+    -cpu 
+Penryn,vendor=GenuineIntel,kvm=on,+sse3,+sse4.2,+aes,+xsave,+avx,+xsaveopt,+xsavec,+xgetbv1,+avx2,+bmi2,+smep,+bmi1,+fma,+movbe,+invtsc 
+\
+    -device 
+isa-applesmc,osk="ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" 
+\
+    -smbios type=2 \
+    -drive if=pflash,format=raw,readonly,file="/tmp/OVMF_CODE.fd" \
+    -drive if=pflash,format=raw,file="/tmp/macos_catalina_VARS.fd" \
+    -vga qxl \
+    -device ich9-ahci,id=sata \
+    -drive id=ESP,if=none,format=raw,file=/tmp/ESP.img \
+    -device ide-hd,bus=sata.2,drive=ESP \
+    -drive id=InstallMedia,format=raw,if=none,file=/tmp/BaseSystem.img \
+    -device ide-hd,bus=sata.3,drive=InstallMedia \
+    -drive id=SystemDisk,if=none,format=raw,file=/tmp/macos_catalina.img \
+    -device ide-hd,bus=sata.4,drive=SystemDisk \
+    -usb -device usb-kbd -device usb-mouse
+
+Perhaps something has changed in Penryn support recently, as that's required for macos?
+
+See also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=964247
+
+Also on a related note, kernel 5.6/5.7 (on Debian) hard crashes the host when I try GPU passthrough on macos, whereas Ubuntu20/Win10 work fine - as does 5.5 kernel.
+
+See also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=961676
\ No newline at end of file