diff options
author | kei <kei@pkgsrc.org> | 2001-05-25 23:01:30 +0000 |
---|---|---|
committer | kei <kei@pkgsrc.org> | 2001-05-25 23:01:30 +0000 |
commit | 95a0205abc8917334aaba43fe7811ceb7c9b2b67 (patch) | |
tree | 743615c77c46916b2a801bb23ab0ba17ea5ee620 /emulators/bochs/Makefile | |
parent | bdbe4dd4eb2f5dfa14ae7f1340b1e8191c5be653 (diff) | |
download | pkgsrc-95a0205abc8917334aaba43fe7811ceb7c9b2b67.tar.gz |
Updated to version 1.1.2 (bugfix3, 2001-05-16)
- updated Elpin VGA BIOS to version 2.40, and changed pointer in .bochsrc
- fixed .conf.x86 script so that it uses c++ instead of egcs for C++ files
- now Makefile targets that recurse into subdirectories use double colons,
so that it will always recurse into subdirectories. Now a single make
command should notice a modified source file in a subdir.
- fixed bug in bx_panic. If BX_PANIC_IS_FATAL==0 and a (non-fatal) panic
occurs, it used to call bx_atexit() and then return. It should never
call bx_atexit, which starts to shut down the simulator, unless it's
really going to quit!
- support 2.88 MB floppy disks
- since dataseghack is checked in as non-executable, invoke it with
"csh dataseghack"
- double fault patch from Thomas Petazzoni <thomas.petazzoni@ifrance.com>,
sourceforge patch #423726.
- removed -fno-builtin from fpu makefiles
- redefine u_char, u_short, etc. in order to not conflict with system
definitions of these same types.
- in cdrom.cc, remove the extern "C" { } structure around some of the
header files. This is no longer necessary.
- do not panic on hard disk command 0x1f2 (read sector count)
- in keyboard.cc:
- apply Todd Fries' reset patch
- recognize most of the "Grey" insert/delete/home/end/etc. keys the
same as keypad keys.
- removed panic on "kbd_ctrl_to_kbd(): got value of 0x??"
- implement mouse command 0xf6 (set defaults)
- apply Suboner@aol.com's Xwindows timing patch from
http://sourceforge.net/tracker/index.php?func=detail&aid=418730&group_id=12580
&atid=312580
- remove all patches from patches subdir which have already been applied.
The remaining ones are under consideration but not applied.
Diffstat (limited to 'emulators/bochs/Makefile')
-rw-r--r-- | emulators/bochs/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/emulators/bochs/Makefile b/emulators/bochs/Makefile index 04291686b07..7dee847f051 100644 --- a/emulators/bochs/Makefile +++ b/emulators/bochs/Makefile @@ -1,8 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2001/05/15 22:43:25 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2001/05/25 23:01:30 kei Exp $ -DISTNAME= bochs-bugfix-20010409-beta -PKGNAME= bochs-2001.04.09 -WRKSRC= ${WRKDIR}/bochs +DISTNAME= bochs-1.1.2 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bochs/} @@ -30,7 +28,8 @@ post-configure: do-install: ${INSTALL_DATA_DIR} ${BOCHS_BIOSDIR} ${INSTALL_DATA} ${WRKSRC}/bios/BIOS-bochs-990925a ${BOCHS_BIOSDIR} - ${INSTALL_DATA} ${WRKSRC}/bios/VGABIOS-elpin-2.20 ${BOCHS_BIOSDIR} + ${INSTALL_DATA} ${WRKSRC}/bios/VGABIOS-elpin-2.40 ${BOCHS_BIOSDIR} + ${INSTALL_DATA} ${WRKSRC}/bios/VGABIOS-elpin-LICENSE ${BOCHS_BIOSDIR} ${INSTALL_DATA_DIR} ${BOCHS_DOCDIR} ${INSTALL_DATA} ${WRKSRC}/docs-html/00README ${BOCHS_DOCDIR} ${INSTALL_DATA} ${WRKSRC}/docs-html/*.gif ${BOCHS_DOCDIR} |