diff options
author | maho <maho@FreeBSD.org> | 2006-01-22 07:10:06 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2006-01-22 07:10:06 +0800 |
commit | e5347152a4c7d827d609fd2e9440e8d38bfbe930 (patch) | |
tree | 6424c5cd6e99b0cac211f09ef692e774d6346d4a /emulators/qemu/Makefile | |
parent | 923753514eb847da23f887111609bef6023c1a0e (diff) | |
download | freebsd-ports-gnome-e5347152a4c7d827d609fd2e9440e8d38bfbe930.tar.gz freebsd-ports-gnome-e5347152a4c7d827d609fd2e9440e8d38bfbe930.tar.zst freebsd-ports-gnome-e5347152a4c7d827d609fd2e9440e8d38bfbe930.zip |
Add another hack:
http://lists.gnu.org/archive/html/qemu-devel/2006-01/msg00208.html
1024 px width for 24 bit gets faster
Approved by: Maintainer
Diffstat (limited to 'emulators/qemu/Makefile')
-rw-r--r-- | emulators/qemu/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/emulators/qemu/Makefile b/emulators/qemu/Makefile index a9460fd6e0fa..5966bbf14e28 100644 --- a/emulators/qemu/Makefile +++ b/emulators/qemu/Makefile @@ -13,10 +13,11 @@ MASTER_SITES= http://www.qemu.org/:release \ http://people.fruitsalad.org/nox/qemu/:snapshot \ http://www.volny.cz/xnavara/qemu/:snapshot \ http://qemu.dad-answers.com/download/qemu/:snapshot \ - http://people.brandeis.edu/~jcoiner/qemu_idedma/:idedma + http://people.brandeis.edu/~jcoiner/qemu_idedma/:idedma \ + http://people.freebsd.org/~maho/qemu/:misc DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:release .if defined (WITH_HACKS) -DISTFILES+= qemu_dma_patch.tar.gz:idedma +DISTFILES+= qemu_dma_patch.tar.gz:idedma patch3_cirrus:misc .endif DIST_SUBDIR= qemu EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} @@ -64,6 +65,9 @@ pre-everything:: @${ECHO_MSG} "You can build qemu with some hacks (esp. for speedup)" @${ECHO_MSG} "by defining WITH_HACKS." @${ECHO_MSG} "1. IDE Bus-master DMA Support by John Coiner" + @${ECHO_MSG} "http://people.brandeis.edu/~jcoiner/qemu_idedma/qemu_dma_patch.html" + @${ECHO_MSG} "2. higher speed on large display (cirrus_vga) by Juergen Pfennig" + @${ECHO_MSG} "http://lists.gnu.org/archive/html/qemu-devel/2006-01/msg00208.html" .endif .if !defined(WITH_SAMBA) && !exists(${LOCALBASE}/sbin/smbd) @${ECHO_MSG} "Notice: if you need qemu's -smb option (smb-export local dir to guest)" @@ -84,6 +88,7 @@ pre-patch: post-patch: .if defined(WITH_HACKS) @cd ${WRKDIR} ; ${TAR} xvfz ${DISTDIR}/${DIST_SUBDIR}/qemu_dma_patch.tar.gz ; ${CP} new_qemu_dma_patch/bios.bin ${WRKSRC}/pc-bios; cd ${WRKSRC}; ${PATCH} --quiet -p1 < ../new_qemu_dma_patch/qemu-piix4-udma.patch + cd ${WRKSRC} ; ${PATCH} < ${DISTDIR}/${DIST_SUBDIR}/patch3_cirrus .endif post-install: |