diff options
author | tron <tron@pkgsrc.org> | 2001-01-07 14:44:18 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-01-07 14:44:18 +0000 |
commit | 185bfcb968b2bb7c25cd91e349d63f1948309160 (patch) | |
tree | d1a38ced1e94f82d7bf0ea216b7bb53fdba46b02 /emulators/plex86/Makefile | |
parent | 69067597d136fb143f8c84b8935e966102cfaeff (diff) | |
download | pkgsrc-185bfcb968b2bb7c25cd91e349d63f1948309160.tar.gz |
Update "plex86" to 2001-01-06 sources. Changes since 2000-12-25:
- "Kevin P. Lawton" <kevin@mandrakesoft.com>: Sat Jan 6 23:39:58 EST 2001
Integrated updates to write-cache from Tom Vijlbrief.
Reorganized docs/ a little. Split the xml docs into 2 docbooks.
There is now a PUG (Plex86 User's Guide) and a
PIG (Plex86 Internals Guide). I removed the tarball out of
the CVS tree, and will upload pre-generated docs to the FTP
server periodically. Look for docs-yyyy_hhmm.tar.gz.
The tarball now contains both HTML and PS formats.
There's also some notes on what packages are needed to generate
and develop your own docs. (docs/xml/README) This release should
make it easier for people to help out.
- "Kevin P. Lawton" <kevin@mandrakesoft.com>: Mon Jan 1 23:26:44 EST 2001
Added another docs chapter (17) to the user's manual, relating to
dynamic translation (DT) ideas for maintaining linear to translated
code address mappings and some other stuff. You can update from
CVS and just untar the docs/ tarball if you want.
- "Kevin P. Lawton" <kevin@mandrakesoft.com>: Mon Jan 1 11:04:34 EST 2001
Integrated write-cache plugin from Tom Vijlbrief, and his related
mods to the hard drive code, to handle > 32-bit file IO.
Integrated small FreeBSD Makefile mods from Alexander Langer.
Regenerated configure.
- "Kevin P. Lawton" <kevin@mandrakesoft.com>: Sat Dec 30 10:17:23 EST 2000
Integrated FreeBSD host port by Alexander Langer <alex@big.endian.de>
Note: this port does not work yet, but was uploaded so others
can work on it.
- "Kevin P. Lawton" <kevin@mandrakesoft.com>: Thu Dec 28 13:51:50 EST 2000
Integrated LBA patches from Tom Vijlbrief, to rombios.c and harddrv.cc.
I modified the patches slightly, and have not tested them much.
Am uploading changes to let Tom test them as integrated.
Tom was able to access up to 2GB partitions with his changes.
Generated new BIOS. Changed all conf files to use new BIOS.
- "Kevin P. Lawton" <kevin@mandrakesoft.com>: Thu Dec 28 10:32:57 EST 2000
Added dt-testbed dir. This is just a small separate testbed program
for developing thoughts about generated code for a quasi-dynamic
translation scheme. If you're interested in such developments,
look at the README file in that dir.
- "Kevin P. Lawton" <kevin@mandrakesoft.com>: Tue Dec 26 16:34:49 EST 2000
Added framework for write-cache buffering (for "persistent disks").
Created new plugin, in directory user/plugins/write-cache/. It
does nothing currently, other than pass disk accesses to libc.
This is to make it easier for others to implement the actual logic,
without having to know much about plex86 internals. There are some
notes in the plugin C code.
I also created a new button (really lame) on the GUI. This triggers
a call to the plugin, so the user can select when to flush (commit)
the writes in the write-cache to disk and clear the cache.
Eventually, a nice menu system might do this with a "Are you sure?"
dialog or something similar.
It is possible that a large number of disk writes may exceed the
size of the write-cache (which should be configured by an option
to the plugin eventually). In that case, it would be good to present
the user with 2 options: 1) Quit altogether and ignore writes,
and 2) commit writes and continue. This should eventually be
GUI oriented, by stdin would be OK for now.
Diffstat (limited to 'emulators/plex86/Makefile')
-rw-r--r-- | emulators/plex86/Makefile | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/emulators/plex86/Makefile b/emulators/plex86/Makefile index 39d44a59bc3..b01add52cff 100644 --- a/emulators/plex86/Makefile +++ b/emulators/plex86/Makefile @@ -1,11 +1,12 @@ -# $NetBSD: Makefile,v 1.14 2001/01/03 16:21:58 hubertf Exp $ +# $NetBSD: Makefile,v 1.15 2001/01/07 14:44:18 tron Exp $ -DISTNAME= plex86-20001225 +DISTNAME= plex86-20010106 PKGNAME= ${DISTNAME:S/-/-0./} CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_LOCAL} +EXTRACT_SUFX= .tar.bz2 -MAINTAINER= hubertf@netbsd.org +MAINTAINER= tron@netbsd.org HOMEPAGE= http://www.plex86.org/ WRKSRC= ${WRKDIR}/plex86 @@ -49,15 +50,14 @@ post-build: ${GZIP_CMD} -9 ${WRKSRC}/misc/vga.pcf do-install: do-install-dirs do-install-binaries do-install-bios \ - do-install-font do-install-conf do-install-docs + do-install-font do-install-conf ${SED} -e 's,@PREFIX@,${PREFIX},g' <${PKGDIR}/MESSAGE >${MESSAGE_FILE} do-install-dirs: ${INSTALL_DATA_DIR} ${PREFIX}/lkm \ ${PREFIX}/lib/plex86 \ ${PREFIX}/lib/plex86/bios \ - ${PREFIX}/share/examples/plex86 \ - ${PREFIX}/share/doc/html/plex86 + ${PREFIX}/share/examples/plex86 do-install-binaries: ${INSTALL_PROGRAM} ${WRKSRC}/user/plex86 ${PREFIX}/bin/ @@ -82,10 +82,6 @@ do-install-conf: -e 's,\./plugins/bochs/,${PREFIX}/lib/plex86/,' \ $$f >${WRKDIR}/$$f.conf; \ done - ${INSTALL_DATA} ${WRKDIR}/*.conf ${PREFIX}/share/examples/plex86/ - -do-install-docs: - @${INSTALL_DATA} ${WRKSRC}/output/html/* ${WRKSRC}/docs/html/*.* \ - ${PREFIX}/share/doc/html/plex86/ + ${INSTALL_DATA} ${WRKDIR}/*.conf ${PREFIX}/share/examples/plex86 .include "../../mk/bsd.pkg.mk" |