diff options
Diffstat (limited to '')
| -rw-r--r-- | results/classifier/108/other/612 | 16 | ||||
| -rw-r--r-- | results/classifier/108/other/612297 | 33 | ||||
| -rw-r--r-- | results/classifier/108/other/612452 | 142 |
3 files changed, 191 insertions, 0 deletions
diff --git a/results/classifier/108/other/612 b/results/classifier/108/other/612 new file mode 100644 index 000000000..2ab7578b2 --- /dev/null +++ b/results/classifier/108/other/612 @@ -0,0 +1,16 @@ +graphic: 0.743 +device: 0.553 +performance: 0.510 +network: 0.278 +permissions: 0.258 +files: 0.250 +debug: 0.177 +semantic: 0.077 +other: 0.053 +PID: 0.053 +socket: 0.034 +vnc: 0.032 +boot: 0.026 +KVM: 0.008 + +Much larger traces with qemu-6.1 than qemu-6.0 diff --git a/results/classifier/108/other/612297 b/results/classifier/108/other/612297 new file mode 100644 index 000000000..ef3d701fc --- /dev/null +++ b/results/classifier/108/other/612297 @@ -0,0 +1,33 @@ +KVM: 0.879 +device: 0.766 +graphic: 0.763 +network: 0.712 +semantic: 0.707 +other: 0.706 +boot: 0.684 +performance: 0.584 +socket: 0.494 +permissions: 0.397 +PID: 0.362 +vnc: 0.308 +files: 0.258 +debug: 0.249 + +qemu-kvm fails to detect mouse while Windows 95 setup + +CPU: AMD Phenom II X4 945 +KVM-Version: qemu-kvm-0.12.4+dfsg (Debian package) +Kernel: linux-2.6.26.8-rt16 +arch: x86_64 +Guest: Windows 95 B + +I'm trying to install Windows 95 B on qemu-kvm with this options: + +kvm /var/mmn/vm/Win95/Win95.img -name "Windows 95" -M pc-0.12 -m 512M -rtc base=localtime -k de -soundhw sb16 -vga cirrus -net user,hostname=w95vm -net nic,model=ne2k_pci -boot a -fda /var/mmn/vm/floppy/win95B_Drive-D-boot.img -cdrom /var/mmn/vm/CD/win95-setup.iso -no-acpi -no-kvm -usb + +I've also tried some other option, but always the same: no ps/2 mouse detection. And usb mouse is not supported by Windows 95 B while setup process. This is only possible later by installing the extension usbsupp.exe after the system setup. + +Seems like you were using the QEMU from your Linux distribution. If you want to have support for that version, you should use the bug tracker from your distro instead. Otherwise, can you please try again with the latest version from http://wiki.qemu-project.org/Download to see whether the bug is already fixed there? Thanks! + +[Expired for QEMU because there has been no activity for 60 days.] + diff --git a/results/classifier/108/other/612452 b/results/classifier/108/other/612452 new file mode 100644 index 000000000..5b3bcb919 --- /dev/null +++ b/results/classifier/108/other/612452 @@ -0,0 +1,142 @@ +KVM: 0.861 +permissions: 0.744 +vnc: 0.724 +other: 0.695 +device: 0.690 +debug: 0.667 +semantic: 0.650 +PID: 0.648 +boot: 0.645 +performance: 0.624 +files: 0.622 +socket: 0.600 +graphic: 0.586 +network: 0.445 + +Problems with the number of serial ports for more than two + +qemu --version +QEMU emulator version 0.13.50, Copyright (c) 2003-2008 Fabrice Bellard + +Command line: + +qemu -serial null -serial null -serial file:test1 hd.img + +Error: + +isa irq 4 already assigned + +echo $? +1 + +This bug seems to be solved and closed here: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=574051 + +Is it solved in 0.12.5 or 0.13.0rc1 yet? + + +> This bug seems to be solved and closed here: http://bugs.debian.org/cgi- +> bin/bugreport.cgi?bug=574051 +> +> Is it solved in 0.12.5 or 0.13.0rc1 yet? +> +> ** Bug watch added: Debian Bug tracker #574051 +> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=574051 +> +#cd qemu-snapshot +#date +Fri Sep 17 09:29:01 MSD 2010 +#cat .git/config +... +[remote "origin"] + url = git://git.savannah.nongnu.org/qemu.git + fetch = +refs/heads/*:refs/remotes/origin/* +[branch "master"] + remote = origin + merge = refs/heads/master + +#git pull +... +#./configure --disable-xen --audio-drv-list=alsa,sdl +#make && make install +... +install -m 755 qemu "/usr/local/bin" +... +#ls -l /usr/local/bin/qemu +#-rwxr-xr-x 1 root root 1960900 2010-09-17 09:45 /usr/local/bin/qemu +#/usr/local/bin/qemu --version +QEMU emulator version 0.13.50, Copyright (c) 2003-2008 Fabrice Bellard +#cd /path/to/hd/image +#/usr/local/bin/qemu -serial file:file1 -serial file:file2 -serial none +-serial none hd.img + +In VM + +#echo test1 >/dev/ttyS0 +#echo test2 >/dev/ttyS1 +#echo test3 >/dev/ttyS2 +... error... +#echo test4 >/dev/ttyS3 +... error... + +It is right + +#halt + + +In host + +#ls -l file* +-rw-r--r-- 1 root root 7 2010-09-17 10:13 file1 +-rw-r--r-- 1 root root 7 2010-09-17 10:12 file2 + + +Excellent. Try next. + +#rm -f file* +#/usr/local/bin/qemu -serial file:file1 -serial file:file2 -serial +file:file3 -serial none hd.img +isa irq 4 already assigned + +Misfire. Try next. + +#/usr/local/bin/qemu -serial none -serial none -serial file:file3 +-serial file:file4 hd.img + +In VM + +#echo test1 >/dev/ttyS0 +#echo test2 >/dev/ttyS1 +#echo test3 >/dev/ttyS2 +... error... +#echo test4 >/dev/ttyS3 +... error... + +OOPS! Surprise. + +#halt + + +In host + +#ls -l file* +-rw-r--r-- 1 root root 7 2010-09-17 10:40 file3 +-rw-r--r-- 1 root root 7 2010-09-17 10:40 file4 + +In this case expected. + + +The QEMU project is currently considering to move its bug tracking to +another system. For this we need to know which bugs are still valid +and which could be closed already. Thus we are setting older bugs to +"Incomplete" now. + +If you still think this bug report here is valid, then please switch +the state back to "New" within the next 60 days, otherwise this report +will be marked as "Expired". Or please mark it as "Fix Released" if +the problem has been solved with a newer version of QEMU already. + +Thank you and sorry for the inconvenience. + + +[Expired for QEMU because there has been no activity for 60 days.] + |