Lines 56-68
Link Here
|
56 |
(the rtl8139c+ that model=rtl8139 emulates needs less cpu than qemu's |
56 |
(the rtl8139c+ that model=rtl8139 emulates needs less cpu than qemu's |
57 |
default ne2k nic which is driven by ed(4), it has not been made default |
57 |
default ne2k nic which is driven by ed(4), it has not been made default |
58 |
only because it may not work with all guests yet.) |
58 |
only because it may not work with all guests yet.) |
59 |
- qemu now uses aio at least for ide dma, so if you get `Bad system call' |
|
|
60 |
crashes that is because aio is not (kld)loaded. |
61 |
- if you get repeated `atapi_poll called!' console messages with FreeBSD |
59 |
- if you get repeated `atapi_poll called!' console messages with FreeBSD |
62 |
guests or other weird cdrom problems then thats probably because the guest |
60 |
guests or other weird cdrom problems then thats probably because the guest |
63 |
has atapicam loaded, which for reasons still to be determined has problems |
61 |
has atapicam loaded, which for reasons still to be determined has problems |
64 |
with qemu's now by default enabled cdrom dma. You can build the port with |
62 |
with qemu's now by default enabled cdrom dma. You can build the port with |
65 |
CDROM_DMA disabled to disable it. |
63 |
CDROM_DMA disabled to disable it. |
66 |
- if you build qemu wihout SDL and then get crashes running it try passing |
64 |
- if you build qemu wihout SDL and then get crashes running it try |
67 |
it -nographic. This should probably be default in that case... |
65 |
passing it -nographic. This should probably be default in that case... |
|
|
66 |
- physical device access (real cdrom/dvd instead of iso) seems to cause |
67 |
problems with some guests now. If this happens to you you can make |
68 |
an iso of the disc by doing something like |
69 |
dd bs=2k </dev/acd0 >cd.iso |
70 |
and then use |
71 |
qemu -cdrom cd.iso ... |
72 |
instead of giving it the physical device. (This might also speed up the |
73 |
guest somewhat.) |
74 |
- qemu now uses aio at least for ide dma, so if you get `Bad system call' |
75 |
crashes that is because aio is not (kld)loaded. |
68 |
==== |
76 |
==== |