View | Details | Raw Unified | Return to bug 105971
Collapse All | Expand All

(-)Makefile (-3 / +3 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	qemu
8
PORTNAME=	qemu
9
PORTVERSION=	0.8.2s.20061102
9
PORTVERSION=	0.8.2s.20061128
10
CATEGORIES=	emulators
10
CATEGORIES=	emulators
11
MASTER_SITES=	http://www.qemu.org/:release \
11
MASTER_SITES=	http://www.qemu.org/:release \
12
		http://qemu-forum.ipi.fi/qemu-snapshots/:snapshot \
12
		http://qemu-forum.ipi.fi/qemu-snapshots/:snapshot \
Lines 14-20 Link Here
14
		http://www.volny.cz/xnavara/qemu/:snapshot \
14
		http://www.volny.cz/xnavara/qemu/:snapshot \
15
		http://people.brandeis.edu/~jcoiner/qemu_idedma/:idedma \
15
		http://people.brandeis.edu/~jcoiner/qemu_idedma/:idedma \
16
		http://people.freebsd.org/~maho/qemu/:misc
16
		http://people.freebsd.org/~maho/qemu/:misc
17
DISTNAME=	${PORTNAME}-snapshot-2006-11-02_05
17
DISTNAME=	${PORTNAME}-snapshot-2006-11-28_05
18
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}:snapshot
18
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}:snapshot
19
DIST_SUBDIR=	qemu
19
DIST_SUBDIR=	qemu
20
EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
20
EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
Lines 93-99 Link Here
93
.if defined(WITH_RTL8139_TIMER)
93
.if defined(WITH_RTL8139_TIMER)
94
	@cd ${WRKSRC} && ${PATCH} --quiet < ${FILESDIR}/rtl8139-re-patch
94
	@cd ${WRKSRC} && ${PATCH} --quiet < ${FILESDIR}/rtl8139-re-patch
95
.endif
95
.endif
96
.if !defined(WITHOUT_CDROM_DMA)
96
.if defined(WITHOUT_CDROM_DMA)
97
	@cd ${WRKSRC} && ${PATCH} --quiet < ${FILESDIR}/cdrom-dma-patch
97
	@cd ${WRKSRC} && ${PATCH} --quiet < ${FILESDIR}/cdrom-dma-patch
98
.endif
98
.endif
99
	@${REINPLACE_CMD} -E \
99
	@${REINPLACE_CMD} -E \
(-)distinfo (-3 / +3 lines)
Lines 1-6 Link Here
1
MD5 (qemu/qemu-snapshot-2006-11-02_05.tar.bz2) = 51fb1369ea3225f5d734c54f0112ffec
1
MD5 (qemu/qemu-snapshot-2006-11-28_05.tar.bz2) = 14dfd81c651af3982125c33f19f7a49a
2
SHA256 (qemu/qemu-snapshot-2006-11-02_05.tar.bz2) = cee2ba40b46beb72357042c608ee3be9f1d0ec726d78b4cb956cd39a5f160999
2
SHA256 (qemu/qemu-snapshot-2006-11-28_05.tar.bz2) = e31744fd00096a41aabc3dc8d2f1f989cfd11f4c4ffa155a1f91f8c5ae244dfe
3
SIZE (qemu/qemu-snapshot-2006-11-02_05.tar.bz2) = 1494519
3
SIZE (qemu/qemu-snapshot-2006-11-28_05.tar.bz2) = 1495656
4
MD5 (qemu/patch3_cirrus) = ebe7ed9fce804c49e024bc93bfdfc810
4
MD5 (qemu/patch3_cirrus) = ebe7ed9fce804c49e024bc93bfdfc810
5
SHA256 (qemu/patch3_cirrus) = e862371834b7d895a896fbdb84fd9f70d17b5729a6f6789a48a61504fc941e11
5
SHA256 (qemu/patch3_cirrus) = e862371834b7d895a896fbdb84fd9f70d17b5729a6f6789a48a61504fc941e11
6
SIZE (qemu/patch3_cirrus) = 8817
6
SIZE (qemu/patch3_cirrus) = 8817
(-)pkg-message (-4 / +12 lines)
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
====

Return to bug 105971