diff --git a/handbook/submitters.sgml b/handbook/submitters.sgml index ee72e446ad..a526fae3de 100644 --- a/handbook/submitters.sgml +++ b/handbook/submitters.sgml @@ -1,1598 +1,1598 @@ -<!-- $Id: submitters.sgml,v 1.241 1998-10-10 23:10:54 jkh Exp $ --> +<!-- $Id: submitters.sgml,v 1.242 1998-10-14 19:35:11 nate Exp $ --> <!-- The FreeBSD Documentation Project --> <chapt><heading>Contributing to FreeBSD<label id="contrib"></heading> <p><em>Contributed by &a.jkh;.</em> <p>So you want to contribute something to FreeBSD? That is great! We can always use the help, and FreeBSD is one of those systems that <em>relies</em> on the contributions of its user base in order to survive. Your contributions are not only appreciated, they are vital to FreeBSD's continued growth! <p>Contrary to what some people might also have you believe, you do not need to be a hot-shot programmer or a close personal friend of the FreeBSD core team in order to have your contributions accepted. The FreeBSD Project's development is done by a large and growing number of international contributors whose ages and areas of technical expertise vary greatly, and there is always more work to be done than there are people available to do it. <p>Since the FreeBSD project is responsible for an entire operating system environment (and its installation) rather than just a kernel or a few scattered utilities, our "TODO" list also spans a very wide range of tasks, from documentation, beta testing and presentation to highly specialized types of kernel development. No matter what your skill level, there is almost certainly something you can do to help the project! <p>Commercial entities engaged in FreeBSD-related enterprises are also encouraged to contact us. Need a special extension to make your product work? You will find us receptive to your requests, given that they are not too outlandish. Working on a value-added product? Please let us know! We may be able to work cooperatively on some aspect of it. The free software world is challenging a lot of existing assumptions about how software is developed, sold, and maintained throughout its life cycle, and we urge you to at least give it a second look. <sect><heading>What Is Needed</heading> <p>The following list of tasks and sub-projects represents something of an amalgam of the various core team TODO lists and user requests we have collected over the last couple of months. Where possible, tasks have been ranked by degree of urgency. If you are interested in working on one of the tasks you see here, send mail to the coordinator listed by clicking on their names. If no coordinator has been appointed, maybe you would like to volunteer? <sect1><heading>High priority tasks</heading> <p>The following tasks are considered to be urgent, usually because they represent something that is badly broken or sorely needed: <enum> <item>3-stage boot issues. Overall coordination: &a.hackers <p><itemize> <item>Move userconfig (-c) into 3rd stage boot. <item>Do WinNT compatible drive tagging so that the 3rd stage can provide an accurate mapping of BIOS geometries for disks. </itemize> <item>Filesystem problems. Overall coordination: &a.fs <itemize> <item>Fix the MSDOS file system. <item>Clean up and document the nullfs filesystem code. Coordinator: &a.gibbs <item>Fix the union file system. Coordinator: &a.dg </itemize> <item>Implement kernel and user vm86 support. Coordinator: &a.jlemon <item>Implement Int13 vm86 disk driver. Coordinator: &a.hackers <item>Kernel issues. Overall coordination: &a.hackers <p><itemize> <item>Complete the eisaconf conversion of all existing drivers. <item>Change all interrupt routines to take a (void *) instead of using unit numbers. <item>Merge EISA/PCI/ISA interrupt registration code. <item>Split PCI/EISA/ISA probes out from drivers like bt742a.c (WIP) <item>Fix the syscons ALT-Fn/vt switching hangs. Coordinator: &a.sos <item>Merge the 3c509 and 3c590 drivers (essentially provide a PCI probe for ep.c). </itemize> </enum> <sect1><heading>Medium priority tasks</heading> <p>The following tasks need to be done, but not with any particular urgency: <enum> <item>Port AFS (Andrew File System) to FreeBSD Coordinator: <tt><url url="mailto:ajones@ctron.com" name="Alexander Seth Jones"></tt> <item>MCA support? This should be finalized one way or the other. <item>Full LKM based driver support/Configuration Manager. <p><itemize> <item>Devise a way to do all LKM registration without ld. This means some kind of symbol table in the kernel. <item>Write a configuration manager (in the 3rd stage boot?) that probes your hardware in a sane manner, keeps only the LKMs required for your hardware, etc. </itemize> -<item>PCMCIA/PCCARD. Coordinators: &a.nate and &a.phk +<item>PCMCIA/PCCARD. Coordinators: &a.msmith and &a.phk <itemize> <item>Documentation! <item>Reliable operation of the pcic driver (needs testing). <item>Recognizer and handler for sio.c (mostly done). <item>Recognizer and handler for ed.c (mostly done). <item>Recognizer and handler for ep.c (mostly done). <item>User-mode recognizer and handler (partially done). </itemize> -<item>Advanced Power Management. Coordinators: &a.nate and &a.phk +<item>Advanced Power Management. Coordinators: &a.msmith and &a.phk <itemize> <item>APM sub-driver (mostly done). <item>IDE/ATA disk sub-driver (partially done). <item>syscons/pcvt sub-driver. <item>Integration with the PCMCIA/PCCARD drivers (suspend/resume). </itemize> </enum> <sect1><heading>Low priority tasks</heading> <p>The following tasks are purely cosmetic or represent such an investment of work that it is not likely that anyone will get them done anytime soon: <p>The first 20 items are from Terry Lambert <terry@lambert.org> <enum> <item>Ability to make BIOS calls from protected mode using V86 mode on the processor and return the results via a mapped interrupt IPC mechanism to the protected mode caller. <item>Drivers built into the kernel that use the BIOS call mechanism to allow them to be independent of the actual underlying hardware the same way that DOS is independent of the underlying hardware. This includes NetWork and ASPI drivers loaded in DOS prior to BSD being loaded by a DOS-based loader program, which means potential polling, which means DOS-not-busy interrupt generation for V86 machines by the protected mode kernel. <item>An image format that allows tagging of such drivers data and text areas in the default kernel executable so that that portion of the kernel address space may be recovered at a later time, after hardware specific protected mode drivers have been loaded and activated. This includes separation of BIOS based drivers from each other, since it is better to run with a BIOS based driver in all cases than to not run at all. <item>Abstraction of the bus interface mechanism. Currently, PCMCIA, EISA, and PCI busses are assumed to be bridged from ISA. This is not something which should be assumed. <item>A configuration manager that knows about PNP events, including power management events, insertion, extraction, and bus (PNP ISA and PCMCIA bridging chips) vs. card level event management. <item>A topological sort mechanism for assigning reassignable addresses that do not collide with other reassignable and non-reassignable device space resource usage by fixed devices. <item>A registration based mechanism for hardware services registration. Specifically, a device centric registration mechanism for timer and sound and other system critical service providers. Consider Timer2 and Timer0 and speaker services as one example of a single monolithic service provider. <item>A kernel exported symbol space in the kernel data space accessible by an LKM loader mechanism that does relocation and symbol space manipulation. The intent of this interface is to support the ability to demand load and unload kernel modules. <item>NetWare Server (protected mode ODI driver) loader and subservices to allow the use of ODI card drivers supplied with network cards. The same thing for NDIS drivers and NetWare SCSI drivers. <item>An "upgrade system" option that works on Linux boxes instead of just previous rev FreeBSD boxes. <item>Splitting of the console driver into abstraction layers, both to make it easier to port and to kill the X and ThinkPad and PS/2 mouse and LED and console switching and bouncing NumLock problems once and for all. <item>Other kernel emulation environments for other foreign drivers as opportunity permits. SCO and Solaris are good candidates, followed by UnixWare, etc. <item>Processor emulation environments for execution of foreign binaries. This is easier than it sounds if the system call interface does not change much. <item>Streams to allow the use of commercial streams drivers. <item>Kernel multithreading (requires kernel preemption). <item>Symmetric Multiprocessing with kernel preemption (requires kernel preemption). <item>A concerted effort at support for portable computers. This is somewhat handled by changing PCMCIA bridging rules and power management event handling. But there are things like detecting internal vs. external display and picking a different screen resolution based on that fact, not spinning down the disk if the machine is in dock, and allowing dock-based cards to disappear without affecting the machines ability to boot (same issue for PCMCIA). <item>Reorganization of the source tree for multiple platform ports. <item>A "make world" that "makes the world" (rename the current one to "make regress" if that is all it is good for). <item>A 4M (preferably smaller!) memory footprint. </enum> <sect1><heading>Smaller tasks</heading> <p> Most of the tasks listed in the previous sections require either a considerable investment of time or an in-depth knowledge of the FreeBSD kernel (or both). However, there are also many useful tasks which are suitable for "weekend hackers", or people without programming skills. <enum> <item>If you run FreeBSD-current and have a good Internet connection, there is a machine current.freebsd.org which builds a full release once a day - every now and again, try and install the latest release from it and report any failures in the process. <item>Read the freebsd-bugs mailing list. There might be a problem you can comment constructively on or with patches you can test. Or you could even try to fix one of the problems yourself. <item>Read through the FAQ and Handbook periodically. If anything is badly explained, out of date or even just completely wrong, let us know. Even better, send us a fix (SGML is not difficult to learn, but there is no objection to ASCII submissions). <item>Help translate FreeBSD documentation into your native language (if not already available) - just send an email to &a.doc asking if anyone is working on it. Note that you are not committing yourself to translating every single FreeBSD document by doing this - in fact, the documentation most in need of translation is the installation instructions. <item>Read the freebsd-questions mailing list and the newsgroup comp.unix.bsd.freebsd.misc occasionally (or even regularly). It can be very satisfying to share your expertise and help people solve their problems; sometimes you may even learn something new yourself! These forums can also be a source of ideas for things to work on. <item>If you know of any bugfixes which have been successfully applied to -current but have not been merged into -stable after a decent interval (normally a couple of weeks), send the committer a polite reminder. <item>Move contributed software to src/contrib in the source tree. <item>Make sure code in src/contrib is up to date. <item>Look for year 2000 bugs (and fix any you find!) <item>Build the source tree (or just part of it) with extra warnings enabled and clean up the warnings. <item>Fix warnings for ports which do deprecated things like using gets() or including malloc.h. <item>If you have contributed any ports, send your patches back to the original author (this will make your life easier when they bring out the next version) <item>Suggest further tasks for this list! </enum> <sect><heading>How to Contribute</heading> <p>Contributions to the system generally fall into one or more of the following 6 categories: <sect1><heading>Bug reports and general commentary <label id="contrib:general"></heading> <p>An idea or suggestion of <em>general</em> technical interest should be mailed to the &a.hackers;. Likewise, people with an interest in such things (and a tolerance for a <em>high</em> volume of mail!) may subscribe to the hackers mailing list by sending mail to &a.majordomo;. See <ref id="eresources:mail" name="mailing lists"> for more information about this and other mailing lists. If you find a bug or are submitting a specific change, please report it using the <tt>send-pr(1)</tt> program or its <url url="http://www.freebsd.org/send-pr.html" name="WEB-based equivalent">. Try to fill-in each field of the bug report. Unless they exceed 65KB, include any patches directly in the report. Consider compressing them and using <tt>uuencode(1)</tt> if they exceed 20KB. Upload very large submissions to <url url="ftp://ftp.FreeBSD.ORG/pub/FreeBSD/incoming/">. After filing a report, you should receive confirmation along with a tracking number. Keep this tracking number so that you can update us with details about the problem by sending mail to <url url="mailto:bug-followup@FreeBSD.ORG" name="bug-followup@FreeBSD.ORG">. Use the number as the message subject, e.g. <tt>"Re: kern/3377"</tt>. Additional information for any bug report should be submitted this way. If you do not receive confirmation in a timely fashion (3 days to a week, depending on your email connection) or are, for some reason, unable to use the <tt>send-pr(1)</tt> command, then you may ask someone to file it for you by sending mail to the &a.bugs;. <sect1><heading>Changes to the documentation</heading> <p>Changes to the documentation are overseen by the &a.doc;. Send submissions and changes (even small ones are welcome!) using send-pr as described in <ref id="contrib:general" name="Bug Reports and General Commentary">. <sect1><heading>Changes to existing source code</heading> <p>An addition or change to the existing source code is a somewhat trickier affair and depends a lot on how far out of date you are with the current state of the core FreeBSD development. There is a special on-going release of FreeBSD known as ``FreeBSD-current'' which is made available in a variety of ways for the convenience of developers working actively on the system. See <ref id="current" name="Staying current with FreeBSD"> for more information about getting and using FreeBSD-current. Working from older sources unfortunately means that your changes may sometimes be too obsolete or too divergent for easy re-integration into FreeBSD. Chances of this can be minimized somewhat by subscribing to the &a.announce and the &a.current lists, where discussions on the current state of the system take place. Assuming that you can manage to secure fairly up-to-date sources to base your changes on, the next step is to produce a set of diffs to send to the FreeBSD maintainers. This is done with the <tt>diff(1)</tt> command, with the `context diff' form being preferred. For example: <tscreen><verb> diff -c oldfile newfile </verb></tscreen> or <tscreen><verb> diff -c -r olddir newdir </verb></tscreen> would generate such a set of context diffs for the given source file or directory hierarchy. See the man page for <tt>diff(1)</tt> for more details. Once you have a set of diffs (which you may test with the <tt>patch(1)</tt> command), you should submit them for inclusion with FreeBSD. Use the <tt>send-pr(1)</tt> program as described in <ref id="contrib:general" name="Bug Reports and General Commentary">. <em>Do not</em> just send the diffs to the &a.hackers; or they will get lost! We greatly appreciate your submission (this is a volunteer project!); because we are busy, we may not be able to address it immediately, but it will remain in the pr database until we do. If you feel it appropriate (e.g. you have added, deleted, or renamed files), bundle your changes into a <tt>tar</tt> file and run the <tt>uuencode(1)</tt> program on it. Shar archives are also welcome. If your change is of a potentially sensitive nature, e.g. you are unsure of copyright issues governing its further distribution or you are simply not ready to release it without a tighter review first, then you should send it to &a.core; directly rather than submitting it with <tt>send-pr(1)</tt>. The core mailing list reaches a much smaller group of people who do much of the day-to-day work on FreeBSD. Note that this group is also <em>very busy</em> and so you should only send mail to them where it is truly necessary. Please refer to <tt>man 9 intro</tt> and <tt>man 9 style</tt> for some information on coding style. We would appreciate it if you were at least aware of this information before submitting code. <sect1><heading>New code or major value-added packages</heading> <p>In the rare case of a significant contribution of a large body work, or the addition of an important new feature to FreeBSD, it becomes almost always necessary to either send changes as uuencode'd tar files or upload them to our ftp site <url url="ftp://ftp.FreeBSD.ORG/pub/FreeBSD/incoming">. When working with large amounts of code, the touchy subject of copyrights also invariably comes up. Acceptable copyrights for code included in FreeBSD are: <enum> <item>The BSD copyright. This copyright is most preferred due to its ``no strings attached'' nature and general attractiveness to commercial enterprises. Far from discouraging such commercial use, the FreeBSD Project actively encourages such participation by commercial interests who might eventually be inclined to invest something of their own into FreeBSD. <item>The GNU Public License, or ``GPL''. This license is not quite as popular with us due to the amount of extra effort demanded of anyone using the code for commercial purposes, but given the sheer quantity of GPL'd code we currently require (compiler, assembler, text formatter, etc) it would be silly to refuse additional contributions under this license. Code under the GPL also goes into a different part of the tree, that being <tt>/sys/gnu</tt> or <tt>/usr/src/gnu</tt>, and is therefore easily identifiable to anyone for whom the GPL presents a problem. </enum> <p>Contributions coming under any other type of copyright must be carefully reviewed before their inclusion into FreeBSD will be considered. Contributions for which particularly restrictive commercial copyrights apply are generally rejected, though the authors are always encouraged to make such changes available through their own channels. To place a ``BSD-style'' copyright on your work, include the following text at the very beginning of every source code file you wish to protect, replacing the text between the `<tt>%%</tt>' with the appropriate information. <tscreen><verb> Copyright (c) %%proper_years_here%% %%your_name_here%%, %%your_state%% %%your_zip%%. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer as the first lines of this file unmodified. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY %%your_name_here%% ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL %%your_name_here%% BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. $Id$ </verb></tscreen> For your convenience, a copy of this text can be found in <tt>/usr/share/examples/etc/bsd-style-copyright</tt>. &porting; <sect1><heading>Money, Hardware or Internet access</heading> <p>We are always very happy to accept donations to further the cause of the FreeBSD Project and, in a volunteer effort like ours, a little can go a long way! Donations of hardware are also very important to expanding our list of supported peripherals since we generally lack the funds to buy such items ourselves. <sect2><heading>Donating funds<label id="donations"></heading> <p>While the FreeBSD Project is not a 501(C3) (non-profit) corporation and hence cannot offer special tax incentives for any donations made, any such donations will be gratefully accepted on behalf of the project by FreeBSD, Inc. <p>FreeBSD, Inc. was founded in early 1995 by &a.jkh and &a.dg with the goal of furthering the aims of the FreeBSD Project and giving it a minimal corporate presence. Any and all funds donated (as well as any profits that may eventually be realized by FreeBSD, Inc.) will be used exclusively to further the project's goals. Please make any checks payable to FreeBSD, Inc., sent in care of the following address: <tscreen><verb> FreeBSD, Inc. c/o Jordan Hubbard 4041 Pike Lane, suite #F. Concord CA, 94520 [currently using the Walnut Creek CDROM address until a PO box can be opened] </verb></tscreen> Wire transfers may also be sent directly to: <tscreen><verb> Bank Of America Concord Main Office P.O. Box 37176 San Francisco CA, 94137-5176 Routing #: 121-000-358 Account #: 01411-07441 (FreeBSD, Inc.) </verb></tscreen> Any correspondence related to donations should be sent to <url url="mailto:jkh@FreeBSD.org" name="Jordan Hubbard">, either via email or to the FreeBSD, Inc. postal address given above. If you do not wish to be listed in our <ref id="donors" name="donors"> section, please specify this when making your donation. Thanks! <sect2><heading>Donating hardware</heading> <p>Donations of hardware in any of the 3 following categories are also gladly accepted by the FreeBSD Project: <itemize> <item>General purpose hardware such as disk drives, memory or complete systems should be sent to the FreeBSD, Inc. address listed in the <em>donating funds</em> section. <item>Hardware for which ongoing compliance testing is desired. We are currently trying to put together a testing lab of all components that FreeBSD supports so that proper regression testing can be done with each new release. We are still lacking many important pieces (network cards, motherboards, etc) and if you would like to make such a donation, please contact &a.dg for information on which items are still required. <item>Hardware currently unsupported by FreeBSD for which you would like to see such support added. Please contact the &a.core; before sending such items as we will need to find a developer willing to take on the task before we can accept delivery of new hardware. </itemize> <sect2><heading>Donating Internet access</heading> <p>We can always use new mirror sites for FTP, WWW or cvsup. If you would like to be such a mirror, please contact <url url="mailto:admin@FreeBSD.ORG" name="the FreeBSD project administrators"> for more information. <sect><heading>Donors Gallery<label id="donors"></heading> <p>The FreeBSD Project is indebted to the following donors and would like to publically thank them here! <itemize> <item><bf>Contributors to the central server project:</bf> <p>The following individuals and businesses made it possible for the FreeBSD Project to build a new central server machine to eventually replace <em>freefall.freebsd.org</em> by donating the following items: <itemize> <item><url url="mailto:mbarkah@freebsd.org" name="Ade Barkah"> and his employer, <url url="http://www.hemi.com" name="Hemisphere Online">, donated a <bf>Pentium Pro (P6) 200Mhz CPU </bf> <item><url url="http://www.asacomputers.com" name="ASA Computers"> donated a <bf>Tyan 1662 motherboard</bf>. <item><url url="mailto:joe@via.net" name="Joe McGuckin"> of <url url="http://www.via.net" name="ViaNet Communications"> donated a <bf>Kingston ethernet controller.</bf> <item><url url="mailto:jack@diamond.xtalwind.net" name="Jack O'Neill"> donated an <bf>NCR 53C875 SCSI controller card</bf>. <item><url url="mailto:ulf@Alameda.net" name="Ulf Zimmermann"> of <url url="http://www.Alameda.net" name="Alameda Networks"> donated <bf>128MB of memory</bf>, a <bf>4 Gb disk drive and the case.</bf> </itemize> <item><bf>Direct funding:</bf> <p>The following individuals and businesses have generously contributed direct funding to the project: <itemize> <item><url url="mailto:ANDRSN@HOOVER.STANFORD.EDU" name="Annelise Anderson"> <item><url url="mailto:dillon@best.net" name="Matt Dillon"> <item><url url="http://www.epilogue.com/" name="Epilogue Technology Corporation"> <item>Sean Eric Fagan <item>Don Scott Wilde</item> <item><url url="mailto:gmarco@masternet.it" name="Gianmarco Giovannelli"> <item><url url="mailto:joeg@truenorth.org" name="Josef C. Grosch"> <item>Robert T. Morris</item> <item><url url="mailto:chuckr@freebsd.org" name="Chuck Robey"> <item><url url="mailto:ken@stox.sa.enteract.com" name="Kenneth P. Stox"> of <url url="http://www.imagescape.com" name="Imaginary Landscape, LLC."> <item><url url="mailto:dk@dog.farm.org" name="Dmitry S. Kohmanyuk"> <item><url url="http://www.cdrom.co.jp/" name="Laser5"> of Japan (a portion of the profits from sales of their various FreeBSD CD-ROMs. <item><url url="http://www.mmjp.or.jp/fuki/" name="Fuki Shuppan Publishing Co."> donated a portion of their profits from <em>Hajimete no FreeBSD</em> (FreeBSD, Getting started) to the FreeBSD and XFree86 projects.</item> <item><url url="http://www.ascii.co.jp/" name="ASCII Corp."> donated a portion of their profits from several FreeBSD-related books to the FreeBSD project.</item> <item><url url="http://www.yokogawa.co.jp/" name="Yokogawa Electric Corp"> has generously donated significant funding to the FreeBSD project.</item> <item><url url="http://www.buffnet.net/" name="BuffNET"></item> </itemize> <item><bf>Hardware contributors:</bf> <p> The following individuals and businesses have generously contributed hardware for testing and device driver development/support: <itemize> <item>Walnut Creek CDROM for providing the Pentium P5-90 and 486/DX2-66 EISA/VL systems that are being used for our development work, to say nothing of the network access and other donations of hardware resources. <item>TRW Financial Systems, Inc. provided 130 PCs, three 68 GB fileservers, twelve Ethernets, two routers and an ATM switch for debugging the diskless code. They also keep a couple of FreeBSD hackers alive and busy. Thanks! <item>Dermot McDonnell donated the Toshiba XM3401B CDROM drive currently used in freefall. <item>&a.chuck; contributed his floppy tape streamer for experimental work. <item>Larry Altneu <tt><htmlurl url='mailto:larry@ALR.COM' name='<larry@ALR.COM>'></tt>, and &a.wilko;, provided Wangtek and Archive QIC-02 tape drives in order to improve the <tt>wt</tt> driver. <item>Ernst Winter <tt><htmlurl url='mailto:ewinter@lobo.muc.de' name='<ewinter@lobo.muc.de>'></tt> contributed a 2.88 MB floppy drive to the project. This will hopefully increase the pressure for rewriting the floppy disk driver. ;-) <item><url url="http://www.tekram.com" name="Tekram Technologies"> sent one each of their DC-390, DC-390U and DC-390F FAST and ULTRA SCSI host adapter cards for regression testing of the NCR and AMD drivers with their cards. They are also to be applauded for making driver sources for free operating systems available from their FTP server <url url="ftp://ftp.tekram.com/scsi/FreeBSD" name="ftp://ftp.tekram.com/scsi/FreeBSD">. <item><url url="mailto:lma@varesearch.com" name="Larry M. Augustin"> contributed not only a Symbios Sym8751S SCSI card, but also a set of data books, including one about the forthcoming Sym53c895 chip with Ultra-2 and LVD support, and the latest programming manual with information on how to safely use the advanced features of the latest Symbios SCSI chips. Thanks a lot! <item><url url="mailto:kuku@freebsd.org" name="Christoph Kukulies"> donated an FX120 12 speed Mitsumi CDROM drive for IDE CDROM driver development. </itemize> <item><bf>Special contributors:</bf> <p> <itemize> <item><url url="http://www.cdrom.com" name="Walnut Creek CDROM"> has donated almost more than we can say (see the <ref id="history" name="history"> document for more details). In particular, we would like to thank them for the original hardware used for <em>freefall.FreeBSD.ORG</em>, our primary development machine, and for <em>thud.FreeBSD.ORG</em>, a testing and build box. We are also indebted to them for funding various contributors over the years and providing us with unrestricted use of their T1 connection to the Internet.</item> <item>The <url url="http://www.interface-business.de" name="interface business GmbH, Dresden"> has been patiently supporting &a.joerg; who has often preferred FreeBSD work over paywork, and used to fall back to their (quite expensive) EUnet Internet connection whenever his private connection became too slow or flakey to work with it...</item> <item><url url="http://www.bsdi.com" name="Berkeley Software Design, Inc."> has contributed their DOS emulator code to the remaining BSD world, which is used in the <em>dosemu</em> command.</item> </itemize> </itemize> <sect><heading>Derived Software Contributors</heading> <p>This software was originally derived from William F. Jolitz's 386BSD release 0.1, though almost none of the original 386BSD specific code remains. This software has been essentially re-implemented from the 4.4BSD-Lite release provided by the Computer Science Research Group (CSRG) at the University of California, Berkeley and associated academic contributors. There are also portions of NetBSD and OpenBSD that have been integrated into FreeBSD as well, and we would therefore like to thank all the contributors to NetBSD and OpenBSD for their work. <sect><heading>Additional FreeBSD Contributors<label id="contrib:additional"></heading> <p>(in alphabetical order by first name): <itemize> <item>ABURAYA Ryushirou <tt><htmlurl url='mailto:rewsirow@ff.iij4u.or.jp' name='<rewsirow@ff.iij4u.or.jp>'></tt> <item>Ada T Lim <tt><htmlurl url='mailto:ada@bsd.org' name='<ada@bsd.org>'></tt> <item>Adam Glass <tt><htmlurl url='mailto:glass@postgres.berkeley.edu' name='<glass@postgres.berkeley.edu>'></tt> <item>Adam McDougall <tt><htmlurl url='mailto:mcdouga9@egr.msu.edu' name='<mcdouga9@egr.msu.edu>'></tt> <item>Adrian T. Filipi-Martin <tt><htmlurl url='mailto:atf3r@agate.cs.virginia.edu' name='<atf3r@agate.cs.virginia.edu>'></tt> <item>Akito Fujita <tt><htmlurl url='mailto:fujita@zoo.ncl.omron.co.jp' name='<fujita@zoo.ncl.omron.co.jp>'></tt> <item>Alain Kalker <tt><htmlurl url='mailto:A.C.P.M.Kalker@student.utwente.nl' name='<A.C.P.M.Kalker@student.utwente.nl>'></tt> <item>Alan Cox <tt><htmlurl url='mailto:alc@cs.rice.edu' name='<alc@cs.rice.edu>'></tt> <item>Amancio Hasty <tt><htmlurl url='mailto:ahasty@freebsd.org' name='<ahasty@freebsd.org>'></tt> <item>Andreas Kohout <tt><htmlurl url='mailto:shanee@rabbit.augusta.de' name='<shanee@rabbit.augusta.de>'></tt> <item>Andreas Lohr <tt><htmlurl url='mailto:andreas@marvin.RoBIN.de' name='<andreas@marvin.RoBIN.de>'></tt> <item>Andrew Gallatin <tt><htmlurl url='mailto:gallatin@cs.duke.edu' name='<gallatin@cs.duke.edu>'></tt> <item>Andrew Gordon <tt><htmlurl url='mailto:andrew.gordon@net-tel.co.uk' name='<andrew.gordon@net-tel.co.uk>'></tt> <item>Andrew Herbert <tt><htmlurl url='mailto:andrew@werple.apana.org.au' name='<andrew@werple.apana.org.au>'></tt> <item>Andrew McRae <tt><htmlurl url='mailto:amcrae@cisco.com' name='<amcrae@cisco.com>'></tt> <item>Andrew Moore <tt><htmlurl url='mailto:alm@FreeBSD.org' name='<alm@FreeBSD.org>'></tt> <item>Andrew Stevenson <tt><htmlurl url='mailto:andrew@ugh.net.au' name='<andrew@ugh.net.au>'></tt> <item>Andrew V. Stesin <tt><htmlurl url='mailto:stesin@elvisti.kiev.ua' name='<stesin@elvisti.kiev.ua>'></tt> <item>Andrey Zakhvatov <tt><htmlurl url='mailto:andy@icc.surw.chel.su' name='<andy@icc.surw.chel.su>'></tt> <item>Andy Whitcroft <tt><htmlurl url='mailto:andy@sarc.city.ac.uk' name='<andy@sarc.city.ac.uk>'></tt> <item>Angelo Turetta <tt><htmlurl url='mailto:ATuretta@stylo.it' name='<ATuretta@stylo.it>'></tt> <item>Anthony C. Chavez <tt><htmlurl url='mailto:magus@xmission.com' name='<magus@xmission.com>'></tt> <item>Anthony Yee-Hang Chan <tt><htmlurl url='mailto:yeehang@netcom.com' name='<yeehang@netcom.com>'></tt> <item>Ari Suutari <tt><htmlurl url='mailto:ari@suutari.iki.fi' name='<ari@suutari.iki.fi>'></tt> <item>Brent J. Nordquist <tt><htmlurl url='mailto:bjn@visi.com' name='<bjn@visi.com>'></tt> <item>Bernd Rosauer <tt><htmlurl url='mailto:br@schiele-ct.de' name='<br@schiele-ct.de>'></tt> <item>Bill Fumerola <tt><htmlurl url='mailto:billf@jade.chc-chimes.com' name='<billf@jade.chc-chimes.com>'></tt> <item>Bill Kish <tt><htmlurl url='mailto:kish@osf.org' name='<kish@osf.org>'></tt> <item>Brandon Gillespie <tt><htmlurl url='mailto:brandon@roguetrader.com' name='<brandon@roguetrader.com>'></tt> <item>&a.wlloyd <item>Bob Wilcox <tt><htmlurl url='mailto:bob@obiwan.uucp' name='<bob@obiwan.uucp>'></tt> <item>Boyd Faulkner <tt><htmlurl url='mailto:faulkner@mpd.tandem.com' name='<faulkner@mpd.tandem.com>'></tt> <item>Brent J. Nordquist <tt><htmlurl url='mailto:bjn@visi.com' name='<bjn@visi.com>'></tt> <item>Brett Taylor <tt><htmlurl url='mailto:brett@peloton.physics.montana.edu' name='<brett@peloton.physics.montana.edu>'></tt> <item>Brian Clapper <tt><htmlurl url='mailto:bmc@willscreek.com' name='<bmc@willscreek.com>'></tt> <item>Brian Handy <tt><htmlurl url='mailto:handy@lambic.space.lockheed.com' name='<handy@lambic.space.lockheed.com>'></tt> <item>Brian Tao <tt><htmlurl url='mailto:taob@risc.org' name='<taob@risc.org>'></tt> <item>Brion Moss <tt><htmlurl url='mailto:brion@queeg.com' name='<brion@queeg.com>'></tt> <item>Bruce Gingery <tt><htmlurl url='mailto:bgingery@gtcs.com' name='<bgingery@gtcs.com>'></tt> <item>Bruce Mah <tt><htmlurl url='mailto:bmah@ca.sandia.gov' name='<bmah@ca.sandia.gov>'></tt> <item>Carey Jones <tt><htmlurl url='mailto:mcj@acquiesce.org' name='<mcj@acquiesce.org>'></tt> <item>Carl Fongheiser <tt><htmlurl url='mailto:cmf@netins.net' name='<cmf@netins.net>'></tt> <item>Charles Hannum <tt><htmlurl url='mailto:mycroft@ai.mit.edu' name='<mycroft@ai.mit.edu>'></tt> <item>Charles Mott <tt><htmlurl url='mailto:cmott@srv.net' name='<cmott@srv.net>'></tt> <item>Chet Ramey <tt><htmlurl url='mailto:chet@odin.INS.CWRU.Edu' name='<chet@odin.INS.CWRU.Edu>'></tt> <item>Chia-liang Kao <tt><htmlurl url='mailto:clkao@CirX.ORG' name='<clkao@CirX.ORG>'></tt> <item>Chris Dabrowski <tt><htmlurl url='mailto: chris@vader.org' name='< chris@vader.org>'></tt> <item>Chris G. Demetriou <tt><htmlurl url='mailto:cgd@postgres.berkeley.edu' name='<cgd@postgres.berkeley.edu>'></tt> <item>Chris Shenton <tt><htmlurl url='mailto:cshenton@angst.it.hq.nasa.gov' name='<cshenton@angst.it.hq.nasa.gov>'></tt> <item>Chris Stenton <tt><htmlurl url='mailto:jacs@gnome.co.uk' name='<jacs@gnome.co.uk>'></tt> <item>Chris Timmons <tt><htmlurl url='mailto:skynyrd@opus.cts.cwu.edu' name='<skynyrd@opus.cts.cwu.edu>'></tt> <item>Chris Torek <tt><htmlurl url='mailto:torek@ee.lbl.gov' name='<torek@ee.lbl.gov>'></tt> <item>Christian Gusenbauer <tt><htmlurl url='mailto:cg@fimp01.fim.uni-linz.ac.at' name='<cg@fimp01.fim.uni-linz.ac.at>'></tt> <item>Christian Haury <tt><htmlurl url='mailto:Christian.Haury@sagem.fr' name='<Christian.Haury@sagem.fr>'></tt> <item>Christoph Robitschko <tt><htmlurl url='mailto:chmr@edvz.tu-graz.ac.at' name='<chmr@edvz.tu-graz.ac.at>'></tt> <item>Christopher T. Johnson <tt><htmlurl url='mailto:cjohnson@neunacht.netgsi.com' name='<cjohnson@neunacht.netgsi.com>'></tt> <item>Choi Jun Ho <tt><htmlurl url='mailto:junker@jazz.snu.ac.kr' name='<junker@jazz.snu.ac.kr>'></tt> <item>Chuck Hein <tt><htmlurl url='mailto:chein@cisco.com' name='<chein@cisco.com>'></tt> <item>Conrad Sabatier <tt><htmlurl url='mailto:conrads@neosoft.com' name='<conrads@neosoft.com>'></tt> <item>Cornelis van der Laan <tt><htmlurl url='mailto:nils@guru.ims.uni-stuttgart.de' name='<nils@guru.ims.uni-stuttgart.de>'></tt> <item>Craig Struble <tt><htmlurl url='mailto:cstruble@vt.edu' name='<cstruble@vt.edu>'></tt> <item>Cristian Ferretti <tt><htmlurl url='mailto:cfs@riemann.mat.puc.cl' name='<cfs@riemann.mat.puc.cl>'></tt> <item>Curt Mayer <tt><htmlurl url='mailto:curt@toad.com' name='<curt@toad.com>'></tt> <item>Dai Ishijima <tt><htmlurl url='mailto:ishijima@tri.pref.osaka.jp' name='<ishijima@tri.pref.osaka.jp>'></tt> <item>Dan Cross <tt><htmlurl url='mailto:tenser@spitfire.ecsel.psu.edu' name='<tenser@spitfire.ecsel.psu.edu>'></tt> <item>Daniel Baker <tt><htmlurl url='mailto:dbaker@crash.ops.neosoft.com' name='<dbaker@crash.ops.neosoft.com>'></tt> <item>Daniel M. Eischen <tt><htmlurl url='mailto:deischen@iworks.InterWorks.org' name='<deischen@iworks.InterWorks.org>'></tt> <item>Daniel O'Connor <tt><htmlurl url='mailto:doconnor@gsoft.com.au' name='<doconnor@gsoft.com.au>'></tt> <item>Danny J. Zerkel <tt><htmlurl url='mailto:dzerkel@feephi.phofarm.com' name='<dzerkel@feephi.phofarm.com>'></tt> <item>Dave Bodenstab <tt><htmlurl url='mailto:imdave@synet.net' name='<imdave@synet.net>'></tt> <item>Dave Burgess <tt><htmlurl url='mailto:burgess@hrd769.brooks.af.mil' name='<burgess@hrd769.brooks.af.mil>'></tt> <item>Dave Chapeskie <tt><htmlurl url='mailto:dchapes@ddm.on.ca' name='<dchapes@ddm.on.ca>'></tt> <item>Dave Edmondson <tt><htmlurl url='mailto:davided@sco.com' name='<davided@sco.com>'></tt> <item>Dave Rivers <tt><htmlurl url='mailto:rivers@ponds.uucp' name='<rivers@ponds.uucp>'></tt> <item>David A. Bader <tt><htmlurl url='mailto:dbader@umiacs.umd.edu' name='<dbader@umiacs.umd.edu>'></tt> <item>David Dawes <tt><htmlurl url='mailto:dawes@physics.su.OZ.AU' name='<dawes@physics.su.OZ.AU>'></tt> <item>David Holloway <tt><htmlurl url='mailto:daveh@gwythaint.tamis.com' name='<daveh@gwythaint.tamis.com>'></tt> <item>David Leonard <tt><htmlurl url='mailto:d@scry.dstc.edu.au' name='<d@scry.dstc.edu.au>'></tt> <item>Dean Huxley <tt><htmlurl url='mailto:dean@fsa.ca' name='<dean@fsa.ca>'></tt> <item>Dirk Froemberg <tt><htmlurl url='mailto:dirk@hal.in-berlin.de' name='<dirk@hal.in-berlin.de>'></tt> <item>Dmitry Kohmanyuk <tt><htmlurl url='mailto:dk@farm.org' name='<dk@farm.org>'></tt> <item>Dom Mitchell <tt><htmlurl url='mailto:dom@myrddin.demon.co.uk' name='<dom@myrddin.demon.co.uk>'></tt> <item>Don Croyle <tt><htmlurl url='mailto:croyle@gelemna.ft-wayne.in.us' name='<croyle@gelemna.ft-wayne.in.us>'></tt> <item>&a.whiteside; <item>Don Yuniskis <tt><htmlurl url='mailto:dgy@rtd.com' name='<dgy@rtd.com>'></tt> <item>Donald Maddox <tt><htmlurl url='mailto:dmaddox@scsn.net' name='<dmaddox@scsn.net>'></tt> <item>Doug Ambrisko <tt><htmlurl url='mailto:ambrisko@ambrisko.roble.com' name='<ambrisko@ambrisko.roble.com>'></tt> <item>Douglas Carmichael <tt><htmlurl url='mailto:dcarmich@mcs.com' name='<dcarmich@mcs.com>'></tt> <item>Eckart "Isegrim" Hofmann <tt><htmlurl url='mailto:Isegrim@Wunder-Nett.org' name='<Isegrim@Wunder-Nett.org>'></tt> <item>Eiji-usagi-MATSUmoto <tt><htmlurl url='mailto:usagi@clave.gr.jp' name='<usagi@clave.gr.jp>'></tt> <item>ELISA Font Project <item>Eric A. Griff <tt><htmlurl url='mailto:eagriff@global2000.net' name='<eagriff@global2000.net>'></tt> <item>Eric Blood <tt><htmlurl url='mailto:eblood@cs.unr.edu' name='<eblood@cs.unr.edu>'></tt> <item>Eric J. Chet <tt><htmlurl url='mailto:ejc@bazzle.com' name='<ejc@bazzle.com>'></tt> <item>Eric J. Schwertfeger <tt><htmlurl url='mailto:eric@cybernut.com' name='<eric@cybernut.com>'></tt> <item>Francis M J Hsieh <tt><htmlurl url='mailto:mjshieh@life.nthu.edu.tw' name='<mjhsieh@life.nthu.edu.tw>'></tt> <item>Frank Bartels <tt><htmlurl url='mailto:knarf@camelot.de' name='<knarf@camelot.de>'></tt> <item>Frank Chen Hsiung Chan <tt><htmlurl url='mailto:frankch@waru.life.nthu.edu.tw' name='<frankch@waru.life.nthu.edu.tw>'></tt> <item>Frank Maclachlan <tt><htmlurl url='mailto:fpm@crash.cts.com' name='<fpm@crash.cts.com>'></tt> <item>Frank Nobis <tt><htmlurl url='mailto:fn@trinity.radio-do.de' name='<fn@trinity.radio-do.de>'></tt> <item>Frank Volf <tt><htmlurl url='mailto:volf@oasis.IAEhv.nl' name='<volf@oasis.IAEhv.nl>'></tt> <item>FUJIMOTO Kensaku <tt><htmlurl url='mailto:fujimoto@oscar.elec.waseda.ac.jp' name='<fujimoto@oscar.elec.waseda.ac.jp>'></tt> <item>FURUSAWA Kazuhisa <tt><htmlurl url='mailto:furusawa@com.cs.osakafu-u.ac.jp' name='<furusawa@com.cs.osakafu-u.ac.jp>'></tt> <item>Gary A. Browning <tt><htmlurl url='mailto:gab10@griffcd.amdahl.com' name='<gab10@griffcd.amdahl.com>'></tt> <item>Gary Kline <tt><htmlurl url='mailto:kline@thought.org' name='<kline@thought.org>'></tt> <item>Gerard Roudier <tt><htmlurl url='mailto:groudier@club-internet.fr' name='<groudier@club-internet.fr>'></tt> <item>Gilad Rom <tt><htmlurl url='mailto:rom_glsa@ein-hashofet.co.il' name='<rom_glsa@ein-hashofet.co.il>'></tt> <item>Ginga Kawaguti <tt><htmlurl url='mailto:ginga@amalthea.phys.s.u-tokyo.ac.jp' name='<ginga@amalthea.phys.s.u-tokyo.ac.jp>'></tt> <item>Greg Ungerer <tt><htmlurl url='mailto:gerg@stallion.oz.au' name='<gerg@stallion.oz.au>'></tt> <item>Hans Huebner <tt><htmlurl url='mailto:hans@artcom.de' name='<hans@artcom.de>'></tt> <item>Hans Petter Bieker <tt><htmlurl url='mailto:hanspb@persbraten.vgs.no' name='<hanspb@persbraten.vgs.no>'></tt> <item>Harlan Stenn <tt><htmlurl url='mailto:Harlan.Stenn@pfcs.com' name='<Harlan.Stenn@pfcs.com>'></tt> <item>Havard Eidnes <tt><htmlurl url='mailto:Havard.Eidnes@runit.sintef.no' name='<Havard.Eidnes@runit.sintef.no>'></tt> <item>Hideaki Ohmon <tt><htmlurl url='mailto:ohmon@tom.sfc.keio.ac.jp' name='<ohmon@tom.sfc.keio.ac.jp>'></tt> <item>Hidekazu Kuroki <tt><htmlurl url='mailto:hidekazu@cs.titech.ac.jp' name='<hidekazu@cs.titech.ac.jp>'></tt> <item>Hidetoshi Shimokawa <tt><htmlurl url='mailto:simokawa@sat.t.u-tokyo.ac.jp' name='<simokawa@sat.t.u-tokyo.ac.jp>'></tt> <item>Hideyuki Suzuki <tt><htmlurl url='mailto:hideyuki@sat.t.u-tokyo.ac.jp' name='<hideyuki@sat.t.u-tokyo.ac.jp>'></tt> <item>Hironori Ikura <tt><htmlurl url='mailto:hikura@kaisei.org' name='<hikura@kaisei.org>'></tt> <item>Holger Veit <tt><htmlurl url='mailto:Holger.Veit@gmd.de' name='<Holger.Veit@gmd.de>'></tt> <item>HONDA Yasuhiro <tt><htmlurl url='mailto:honda@kashio.info.mie-u.ac.jp' name='<honda@kashio.info.mie-u.ac.jp>'></tt> <item>Hung-Chi Chu <tt><htmlurl url='mailto:hcchu@r350.ee.ntu.edu.tw' name='<hcchu@r350.ee.ntu.edu.tw>'></tt> <item>Ian Struble <tt><htmlurl url='mailto:ian@broken.net' name='<ian@broken.net>'></tt> <item>Ian Vaudrey <tt><htmlurl url='mailto:i.vaudrey@bigfoot.com' name='<i.vaudrey@bigfoot.com>'></tt> <item>Igor Vinokurov <tt><htmlurl url='mailto:igor@zynaps.ru' name='<igor@zynaps.ru>'></tt> <item>Ikuo Nakagawa <tt><htmlurl url='mailto:ikuo@isl.intec.co.jp' name='<ikuo@isl.intec.co.jp>'></tt> <item>IMAMURA Tomoaki <tt><htmlurl url='mailto:tomoak-i@is.aist-nara.ac.jp' name='<tomoak-i@is.aist-nara.ac.jp>'></tt> <item>Ishii Masahiro <item>Issei Suzuki<tt><htmlurl url='mailto:issei@t-cnet.or.jp' name='<issei@t-cnet.or.jp>'></tt> <item>Issei Suzuki <tt><htmlurl url='mailto:issei@jp.FreeBSD.org' name='<issei@jp.FreeBSD.org;'></tt> <item>Itsuro Saito <tt><htmlurl url='mailto:saito@miv.t.u-tokyo.ac.jp' name='<saito@miv.t.u-tokyo.ac.jp>'></tt> <item>J. David Lowe <tt><htmlurl url='mailto:lowe@saturn5.com' name='<lowe@saturn5.com>'></tt> <item>J. Han <tt><htmlurl url='mailto:hjh@best.com' name='<hjh@best.com>'></tt> <item>J.T. Conklin <tt><htmlurl url='mailto:jtc@cygnus.com' name='<jtc@cygnus.com>'></tt> <item>J.T. Jang <tt><htmlurl url='mailto:keith@email.gcn.net.tw' name='<keith@email.gcn.net.tw>'></tt> <item>James Clark <tt><htmlurl url='mailto:jjc@jclark.com' name='<jjc@jclark.com>'></tt> <item>James da Silva <tt><htmlurl url='mailto:jds@cs.umd.edu' name='<jds@cs.umd.edu>'></tt> et al <item>Janusz Kokot <tt><htmlurl url='mailto:janek@gaja.ipan.lublin.pl' name='<janek@gaja.ipan.lublin.pl>'></tt> <item>Jason Thorpe <tt><htmlurl url='mailto:thorpej@nas.nasa.gov' name='<thorpej@nas.nasa.gov>'></tt> <item>Javier Martin Rueda <tt><htmlurl url='mailto:jmrueda@diatel.upm.es' name='<jmrueda@diatel.upm.es>'></tt> <item>Jeff Bartig <tt><htmlurl url='mailto:jeffb@doit.wisc.edu' name='<jeffb@doit.wisc.edu>'></tt> <item>Jeff Kletsky <tt><htmlurl url='mailto:Jeff@Wagsky.com' name='<Jeff@Wagsky.com;'></tt> <item>Jeffrey Wheat <tt><htmlurl url='mailto:jeff@cetlink.net' name='<jeff@cetlink.net>'></tt> <item>Jerry Hicks <tt><htmlurl url='mailto:jhicks@glenatl.glenayre.com' name='<jhicks@glenatl.glenayre.com>'></tt> <item>Jian-Da Li <tt><htmlurl url='mailto:jdli@csie.NCTU.edu.tw' name='<jdli@csie.NCTU.edu.tw>'></tt> <item>Jim Binkley <tt><htmlurl url='mailto:jrb@cs.pdx.edu' name='<jrb@cs.pdx.edu>'></tt> <item>Jim Lowe <tt><htmlurl url='mailto:james@cs.uwm.edu' name='<james@cs.uwm.edu>'></tt> <item>Jim Wilson <tt><htmlurl url='mailto:wilson@moria.cygnus.com' name='<wilson@moria.cygnus.com>'></tt> <item>Jimbo Bahooli <tt><htmlurl url='mailto:griffin@blackhole.iceworld.org' name='<griffin@blackhole.iceworld.org>'></tt> <item>Joao Carlos Mendes Luis <tt><htmlurl url='mailto:jonny@coppe.ufrj.br' name='<jonny@coppe.ufrj.br>'></tt> <item>Joe "Marcus" Clarke <tt><htmlurl url='mailto:marcus@miami.edu' name='<marcus@miami.edu>'></tt> <item>Joe Jih-Shian Lu <tt><htmlurl url='mailto:jslu@dns.ntu.edu.tw' name='<jslu@dns.ntu.edu.tw>'></tt> <item>Joel Sutton <tt><htmlurl url='mailto:sutton@aardvark.apana.org.au' name='<sutton@aardvark.apana.org.au>'></tt> <item>Johann Tonsing <tt><htmlurl url='mailto:jtonsing@mikom.csir.co.za' name='<jtonsing@mikom.csir.co.za>'></tt> <item>John Capo <tt><htmlurl url='mailto:jc@irbs.com' name='<jc@irbs.com>'></tt> <item>John Heidemann <tt><htmlurl url='mailto:johnh@isi.edu' name='<johnh@isi.edu>'></tt> <item>John Hood <tt><htmlurl url='mailto:cgull@owl.org' name='<cgull@owl.org>'></tt> <item>John Perry <tt><htmlurl url='mailto:perry@vishnu.alias.net' name='<perry@vishnu.alias.net>'></tt> <item>John Polstra <tt><htmlurl url='mailto:jdp@polstra.com' name='<jdp@polstra.com>'></tt> <item>John Rochester <tt><htmlurl url='mailto:jr@cs.mun.ca' name='<jr@cs.mun.ca>'></tt> <item>John Saunders <tt><htmlurl url='mailto:john@pacer.nlc.net.au' name='<john@pacer.nlc.net.au>'></tt> <item>Jonathan Hanna <tt><htmlurl url='mailto:jh@pc-21490.bc.rogers.wave.ca' name='<jh@pc-214909.bc.rogers.wave.ca>'></tt> <item>Josef Karthauser <tt><htmlurl url='mailto:joe@uk.freebsd.org' name='<joe@uk.freebsd.org>'></tt> <item>Joseph Stein <tt><htmlurl url='mailto:joes@seaport.net' name='<joes@seaport.net>'></tt> <item>Josh Gilliam <tt><htmlurl url='mailto:josh@quick.net' name='<josh@quick.net>'></tt> <item>Josh Tiefenbach <tt><htmlurl url='mailto:josh@ican.net' name='<josh@ican.net>'></tt> <item>Juergen Lock <tt><htmlurl url='mailto:nox@jelal.hb.north.de' name='<nox@jelal.hb.north.de>'></tt> <item>Juha Inkari <tt><htmlurl url='mailto:inkari@cc.hut.fi' name='<inkari@cc.hut.fi>'></tt> <item>Julian Assange <tt><htmlurl url='mailto:proff@suburbia.net' name='<proff@suburbia.net>'></tt> <item>Julian Jenkins <tt><htmlurl url='mailto:kaveman@magna.com.au' name='<kaveman@magna.com.au>'></tt> <item>Julian Stacey <tt><htmlurl url='mailto:jhs@freebsd.org' name='<jhs@freebsd.org>'></tt> <item>Junichi Satoh <tt><htmlurl url='mailto:junichi@jp.freebsd.org' name='<junichi@jp.freebsd.org>'></tt> <item>Junya WATANABE <tt><htmlurl url='mailto:junya-w@remus.dti.ne.jp' name='<junya-w@remus.dti.ne.jp>'></tt> <item>Kapil Chowksey <tt><htmlurl url='mailto:kchowksey@hss.hns.com' name='<kchowksey@hss.hns.com>'></tt> <item>Kazuhiko Kiriyama <tt><htmlurl url='mailto:kiri@kiri.toba-cmt.ac.jp' name='<kiri@kiri.toba-cmt.ac.jp>'></tt> <item>Keith Bostic <tt><htmlurl url='mailto:bostic@bostic.com' name='<bostic@bostic.com>'></tt> <item>Keith Moore <item>Kenneth Monville <tt><htmlurl url='mailto:desmo@bandwidth.org' name='<desmo@bandwidth.org>'></tt> <item>Kent Vander Velden <tt><htmlurl url='mailto:graphix@iastate.edu' name='<graphix@iastate.edu>'></tt> <item>Kentaro Inagaki <tt><htmlurl url='mailto:JBD01226@niftyserve.ne.jp' name='<JBD01226@niftyserve.ne.jp>'></tt> <item>Kirk McKusick <tt><htmlurl url='mailto:mckusick@mckusick.com' name='<mckusick@mckusick.com>'></tt> <item>Kiroh HARADA <tt><htmlurl url='mailto:kiroh@kh.rim.or.jp' name='<kiroh@kh.rim.or.jp>'></tt> <item>Koichi Sato <tt><htmlurl url='mailto:copan@ppp.fastnet.or.jp' name='<copan@ppp.fastnet.or.jp>'></tt> <item>Kostya Lukin <tt><htmlurl url='mailto:lukin@okbmei.msk.su' name='<lukin@okbmei.msk.su>'></tt> <item>Kurt Olsen <tt><htmlurl url='mailto:kurto@tiny.mcs.usu.edu' name='<kurto@tiny.mcs.usu.edu>'></tt> <item>Lars Köller <tt><htmlurl url='mailto:Lars.Koeller@Uni-Bielefeld.DE' name='<Lars.Koeller@Uni-Bielefeld.DE>'></tt> <item>Liang Tai-hwa <tt><htmlurl url='mailto:avatar@www.mmlab.cse.yzu.edu.tw' name='<avatar@www.mmlab.cse.yzu.edu.twu>'></tt> <item>Lucas James <tt><htmlurl url='mailto:Lucas.James@ldjpc.apana.org.au' name='<Lucas.James@ldjpc.apana.org.au>'></tt> <item>Luigi Rizzo <tt><htmlurl url='mailto:luigi@iet.unipi.it' name='<luigi@iet.unipi.it>'></tt> <item>Makoto MATSUSHITA <tt><htmlurl url='mailto:matusita@jp.freebsd.org' name='<matusita@jp.freebsd.org>'></tt> <item>Makoto WATANABE <tt><htmlurl url='mailto:watanabe@zlab.phys.nagoya-u.ac.jp' name='<watanabe@zlab.phys.nagoya-u.ac.jp>'></tt> <item>Manu Iyengar <tt><htmlurl url='mailto:iyengar@grunthos.pscwa.psca.com' name='<iyengar@grunthos.pscwa.psca.com>'></tt> <item>Marc Frajola <tt><htmlurl url='mailto:marc@dev.com' name='<marc@dev.com>'></tt> <item>Marc Ramirez <tt><htmlurl url='mailto:mrami@mramirez.sy.yale.edu' name='<mrami@mramirez.sy.yale.edu>'></tt> <item>Marc Slemko <tt><htmlurl url='mailto:marcs@znep.com' name='<marcs@znep.com>'></tt> <item>Marc van Kempen <tt><htmlurl url='mailto:wmbfmk@urc.tue.nl' name='<wmbfmk@urc.tue.nl>'></tt> <item>Mario Sergio Fujikawa Ferreira <tt><htmlurl url='mailto:lioux@gns.com.br' name='<lioux@gns.com.br>'></tt> <item>Mark Huizer <tt><htmlurl url='mailto:xaa@stack.nl' name='<xaa@stack.nl>'></tt> <item>Mark J. Taylor <tt><htmlurl url='mailto:mtaylor@cybernet.com' name='<mtaylor@cybernet.com>'></tt> <item>Mark Krentel <tt><htmlurl url='mailto:krentel@rice.edu' name='<krentel@rice.edu>'></tt> <item>Mark Tinguely <tt><htmlurl url='mailto:tinguely@plains.nodak.edu' name='<tinguely@plains.nodak.edu>'></tt> <tt><htmlurl url='mailto:tinguely@hookie.cs.ndsu.NoDak.edu' name='<tinguely@hookie.cs.ndsu.NoDak.edu>'></tt> <item>Martin Birgmeier <item>Martti Kuparinen <tt><htmlurl url='mailto:erakupa@kk.etx.ericsson.se' name='<erakupa@kk.etx.ericsson.se>'></tt> <item>Masachika ISHIZUKA <tt><htmlurl url='mailto:ishizuka@isis.min.ntt.jp' name='<ishizuka@isis.min.ntt.jp>'></tt> <item>Masanori Kiriake <tt><htmlurl url='mailto:seiken@ncs.co.jp' name='<seiken@ncs.co.jp>'></tt> <item>Mats Lofkvist <tt><htmlurl url='mailto:mal@algonet.se' name='<mal@algonet.se>'></tt> <item>Matt Bartley <tt><htmlurl url='mailto:mbartley@lear35.cytex.com' name='<mbartley@lear35.cytex.com>'></tt> <item>Matt Thomas <tt><htmlurl url='mailto:thomas@lkg.dec.com' name='<thomas@lkg.dec.com>'></tt> <item>Matt White <tt><htmlurl url='mailto:mwhite+@CMU.EDU' name='<mwhite+@CMU.EDU>'></tt> <item>Matthew N. Dodd <tt><htmlurl url='mailto:winter@jurai.net' name='<winter@jurai.net>'></tt> <item>Matthew Stein <tt><htmlurl url='mailto:matt@bdd.net' name='<matt@bdd.net>'></tt> <item>Maurice Castro <tt><htmlurl url='mailto:maurice@planet.serc.rmit.edu.au' name='<maurice@planet.serc.rmit.edu.au>'></tt> <item>Michael Butschky <tt><htmlurl url='mailto:butsch@computi.erols.com' name='<butsch@computi.erols.com>'></tt> <item>Michael Elbel <tt><htmlurl url='mailto:me@FreeBSD.ORG' name='<me@FreeBSD.ORG>'></tt> <item>Michael Searle <tt><htmlurl url='mailto:searle@longacre.demon.co.uk' name='<searle@longacre.demon.co.uk>'></tt> <item>Miguel Angel Sagreras <tt><htmlurl url='mailto:msagre@cactus.fi.uba.ar' name='<msagre@cactus.fi.uba.ar>'></tt> <item>Mikael Hybsch <tt><htmlurl url='mailto:micke@dynas.se' name='<micke@dynas.se>'></tt> <item>Mikhail Teterin <tt><htmlurl url='mailto:mi@aldan.ziplink.net' name='<mi@aldan.ziplink.net>'></tt> <item>Mike McGaughey <tt><htmlurl url='mailto:mmcg@cs.monash.edu.au' name='<mmcg@cs.monash.edu.au>'></tt> <item>Mike Peck <tt><htmlurl url='mailto:mike@binghamton.edu' name='<mike@binghamton.edu>'></tt> <item>Ming-I Hseh <tt><htmlurl url='mailto:PA@FreeBSD.ee.Ntu.edu.TW' name='<PA@FreeBSD.ee.Ntu.edu.TW>'></tt> <item>MITA Yoshio <tt><htmlurl url='mailto:mita@jp.FreeBSD.ORG' name='<mita@jp.FreeBSD.ORG>'></tt> <item>MOROHOSHI Akihiko <tt><htmlurl url='mailto:moro@race.u-tokyo.ac.jp' name='<moro@race.u-tokyo.ac.jp>'></tt> <item>Motoyuki Kasahara <tt><htmlurl url='mailto:m-kasahr@sra.co.jp' name='<m-hasahr@sra.co.jp>'></tt> <item>Murray Stokely <tt><htmlurl url='mailto:murray@cdrom.com' name='<murray@cdrom.com>'></tt> <item>NAKAMURA Kazushi <tt><htmlurl url='mailto:nkazushi@highway.or.jp' name='<nkazushi@highway.or.jp>'></tt> <item>Naoki Hamada <tt><htmlurl url='mailto:nao@tom-yam.or.jp' name='<nao@tom-yam.or.jp>'></tt> <item>Narvi <tt><htmlurl url='mailto:narvi@haldjas.folklore.ee' name='<narvi@haldjas.folklore.ee>'></tt> <item>NIIMI Satoshi <tt><htmlurl url='mailto:sa2c@and.or.jp' name='<sa2c@and.or.jp>'></tt> <item>Nick Sayer <tt><htmlurl url='mailto:nsayer@quack.kfu.com' name='<nsayer@quack.kfu.com>'></tt> <item>Nicolas Souchu <tt><htmlurl url='mailto:Nicolas.Souchu@prism.uvsq.fr' name='<Nicolas.Souchu@prism.uvsq.fr>'></tt> <item>Nisha Talagala <tt><htmlurl url='mailto:nisha@cs.berkeley.edu' name='<nisha@cs.berkeley.edu>'></tt> <item>Nobuhiro Yasutomi <tt><htmlurl url='mailto:nobu@psrc.isac.co.jp' name='<nobu@psrc.isac.co.jp>'></tt> <item>Nobuyuki Koganemaru <tt><htmlurl url='mailto:kogane@kces.koganemaru.co.jp' name='<kogane@kces.koganemaru.co.jp>'></tt> <item>Noritaka Ishizumi <tt><htmlurl url='mailto:graphite@jp.FreeBSD.ORG' name='<graphite@jp.FreeBSD.ORG>'></tt> <item>Oliver Breuninger <tt><htmlurl url='mailto:ob@seicom.NET' name='<ob@seicom.NET>'></tt> <item>Oliver Fromme <tt><htmlurl url='mailto:oliver.fromme@heim3.tu-clausthal.de' name='<oliver.fromme@heim3.tu-clausthal.de>'></tt> <item>Oliver Laumann <tt><htmlurl url='mailto:net@informatik.uni-bremen.de' name='<net@informatik.uni-bremen.de>'></tt> <item>Oliver Oberdorf <tt><htmlurl url='mailto:oly@world.std.com' name='<oly@world.std.com>'></tt> <item>Paul Fox <tt><htmlurl url='mailto:pgf@foxharp.boston.ma.us' name='<pgf@foxharp.boston.ma.us>'></tt> <item>Paul Kranenburg <tt><htmlurl url='mailto:pk@cs.few.eur.nl' name='<pk@cs.few.eur.nl>'></tt> <item>Paul Mackerras <tt><htmlurl url='mailto:paulus@cs.anu.edu.au' name='<paulus@cs.anu.edu.au>'></tt> <item>Paulo Menezes <tt><htmlurl url='mailto:paulo@isr.uc.pt' name='<paulo@isr.uc.pt>'></tt> <item>Paul T. Root <tt><htmlurl url='mailto:proot@horton.iaces.com' name='<proot@horton.iaces.com>'></tt> <item>Pedro Giffuni <tt><htmlurl url='mailto:giffunip@asme.org' name='<giffunip@asme.org>'></tt> <item>Pedro A M Vazquez <tt><htmlurl url='mailto:vazquez@IQM.Unicamp.BR' name='<vazquez@IQM.Unicamp.BR>'></tt> <item>Peter Cornelius <tt><htmlurl url='mailto:pc@inr.fzk.de' name='<pc@inr.fzk.de>'></tt> <item>Peter Haight <tt><htmlurl url='mailto:peterh@prognet.com' name='<peterh@prognet.com>'></tt> <item>Peter Stubbs <tt><htmlurl url='mailto:PETERS@staidan.qld.edu.au' name='<PETERS@staidan.qld.edu.au>'></tt> <item>Pierre Beyssac <tt><htmlurl url='mailto:pb@fasterix.freenix.org' name='<bp@fasterix.freenix.org>'></tt> <item>Phil Maker <tt><htmlurl url='mailto:pjm@cs.ntu.edu.au' name='<pjm@cs.ntu.edu.au>'></tt> <item>R. Kym Horsell <item>Randall Hopper <tt><htmlurl url='mailto:rhh@stealth.ct.picker.com' name='<rhh@stealth.ct.picker.com>'></tt> <item>Richard Hwang <tt><htmlurl url='mailto:rhwang@bigpanda.com' name='<rhwang@bigpanda.com>'></tt> <item>Richard M. Neswold <tt><htmlurl url='mailto:rneswold@drmemory.fnal.gov' name='<rneswold@drmemory.fnal.gov>'></tt> <item>Richard Seaman, Jr. <tt><htmlurl url='mailto:dick@tar.com' name='<dick@tar.com>'></tt> <item>Richard Stallman <tt><htmlurl url='mailto:rms@gnu.ai.mit.edu' name='<rms@gnu.ai.mit.edu>'></tt> <item>Richard Wiwatowski <tt><htmlurl url='mailto:rjwiwat@adelaide.on.net' name='<rjwiwat@adelaide.on.net>'></tt> <item>Rob Mallory <tt><htmlurl url='mailto:rmallory@csusb.edu' name='<rmallory@csusb.edu>'></tt> <item>Rob Shady <tt><htmlurl url='mailto:rls@id.net' name='<rls@id.net>'></tt> <item>Rob Snow <tt><htmlurl url='mailto:rsnow@txdirect.net' name='<rsnow@txdirect.net>'></tt> <item>Robert Sanders <tt><htmlurl url='mailto:rsanders@mindspring.com' name='<rsanders@mindspring.com>'></tt> <item>Robert Withrow <tt><htmlurl url='mailto:witr@rwwa.com' name='<witr@rwwa.com>'></tt> <item>Ronald Kuehn <tt><htmlurl url='mailto:kuehn@rz.tu-clausthal.de' name='<kuehn@rz.tu-clausthal.de>'></tt> <item>Roland Jesse <tt><htmlurl url='mailto:jesse@cs.uni-magdeburg.de' name='<jesse@cs.uni-magdeburg.de>'></tt> <item>Ruslan Shevchenko <tt><htmlurl url='mailto:rssh@cki.ipri.kiev.ua' name='<rssh@cki.ipri.kiev.ua>'></tt> <item>SADA Kenji <tt><htmlurl url='mailto:sada@e-mail.ne.jp' name='<sada@e-mail.ne.jp>'></tt> <item>Samuel Lam <tt><htmlurl url='mailto:skl@ScalableNetwork.com' name='<skl@ScalableNetwork.com>'></tt> <item>Sander Vesik <tt><htmlurl url='mailto:sander@haldjas.folklore.ee' name='<sander@haldjas.folklore.ee>'></tt> <item>Sandro Sigala <tt><htmlurl url='mailto:ssigala@globalnet.it' name='<ssigala@globalnet.it>'></tt> <item>Sascha Blank <tt><htmlurl url='mailto:blank@fox.uni-trier.de' name='<blank@fox.uni-trier.de>'></tt> <item>Sascha Wildner <tt><htmlurl url='mailto:swildner@channelz.GUN.de' name='<swildner@channelz.GUN.de>'></tt> <item>Satoshi Taoka <tt><htmlurl url='mailto:taoka@infonets.hiroshima-u.ac.jp' name='<taoka@infonets.hiroshima-u.ac.jp>'></tt> <item>Scot W. Hetzel <tt><htmlurl url='mailto:hetzels@westbend.net' name='<hetzels@westbend.net>'></tt> <item>Scott Blachowicz <tt><htmlurl url='mailto:scott.blachowicz@seaslug.org' name='<scott.blachowicz@seaslug.org>'></tt> <item>Scott A. Kenney <tt><htmlurl url='mailto:saken@rmta.ml.org' name='<saken@rmta.ml.org>'></tt> <item>Seigou TANIMURA <tt><htmlurl url='mailto:tanimura@naklab.dnj.ynu.ac.jp' name='<tanimura@naklab.dnj.ynu.ac.jp>'></tt> <item>Seiichirou Hiraoka <tt><htmlurl url='mailto:flathill@flathill.gr.jp' name='<flathill@flathill.gr.jp>'></tt> <item>Serge Babkin <tt><htmlurl url='mailto:babkin@hq.icb.chel.su' name='<babkin@hq.icb.chel.su>'></tt> <item>Serge V. Vakulenko <tt><htmlurl url='mailto:vak@zebub.msk.su' name='<vak@zebub.msk.su>'></tt> <item>Sheldon Hearn <tt><htmlurl url='mailto:axl@iafrica.com' name='<axl@iafrica.com>'></tt> <item>Shigeyuki FUKUSHIMA <tt><htmlurl url='mailto:shige@kuis.kyoto-u.ac.jp' name='<shige@kuis.kyoto-u.ac.jp>'></tt> <item>Simon Marlow <tt><htmlurl url='mailto:simonm@dcs.gla.ac.uk' name='<simonm@dcs.gla.ac.uk>'></tt> <item>Slaven Rezic (Tomic) <tt><htmlurl url='mailto:eserte@cs.tu-berlin.de' name='<eserte@cs.tu-berlin.de>'></tt> <item>Soren Dayton <tt><htmlurl url='mailto:csdayton@midway.uchicago.edu' name='<csdayton@midway.uchicago.edu>'></tt> <item>Soren Dossing <tt><htmlurl url='mailto:sauber@netcom.com' name='<sauber@netcom.com>'></tt> <item>Stefan Eggers <tt><htmlurl url='mailto:seggers@semyam.dinoco.de' name='<seggers@semyam.dinoco.de>'></tt> <item>Stefan Moeding <tt><htmlurl url='mailto:s.moeding@ndh.net' name='<s.moeding@ndh.net>'></tt> <item>Stefan `Sec` Zehl <tt><htmlurl url='mailto:sec@42.org' name='<sec@42.org>'></tt> <item>Stephane Legrand <tt><htmlurl url='mailto:stephane@lituus.fr' name='<stephane@lituus.fr>'></tt> <item>Stephen Farrell <tt><htmlurl url='mailto:stephen@farrell.org' name='<stephen@farrell.org>'></tt> <item>Stephen J. Roznowski <tt><htmlurl url='mailto:sjr@home.net' name='<sjr@home.net>'></tt> <item>Steve Gerakines <tt><htmlurl url='mailto:steve2@genesis.tiac.net' name='<steve2@genesis.tiac.net>'></tt> <item>Steven G. Kargl <tt><htmlurl url='mailto:kargl@troutmask.apl.washington.edu' name='<kargl@troutmask.apl.washington.edu>'></tt> <item>Steven H. Samorodin <tt><htmlurl url='mailto:samorodi@NUXI.com' name='<samorodi@NUXI.com>'></tt> <item>Stuart Henderson <tt><htmlurl url='mailto:stuart@internationalschool.co.uk' name='<stuart@internationalschool.co.uk>'></tt> <item>Suzuki Yoshiaki <tt><htmlurl url='mailto:zensyo@ann.tama.kawasaki.jp' name='<zensyo@ann.tama.kawasaki.jp>'></tt> <item>Tadashi Kumano <tt><htmlurl url='mailto:kumano@strl.nhk.or.jp' name='<kumano@strl.nhk.or.jp>'></tt> <item>Taguchi Takeshi <tt><htmlurl url='mailto:taguchi@tohoku.iij.ad.jp' name='<taguchi@tohoku.iij.ad.jp>'></tt> <item>Takashi Mega <tt><htmlurl url='mailto:mega@minz.org' name='<mega@minz.org>'></tt> <item>Takashi Uozu <tt><htmlurl url='mailto:j1594016@ed.kagu.sut.ac.jp' name='<j1594016@ed.kagu.sut.ac.jp>'></tt> <item>Takayuki Ariga <tt><htmlurl url='mailto:a00821@cc.hc.keio.ac.jp' name='<a00821@cc.hc.keio.ac.jp>'></tt> <item>Takeru NAIKI <tt><htmlurl url='mailto:naiki@bfd.es.hokudai.ac.jp' name='<naiki@bfd.es.hokudai.ac.jp>'></tt> <item>Ted Faber <tt><htmlurl url='mailto:faber@ISI.EDU' name='<faber@ISI.EDU>'></tt> <item>Terry Lambert <tt><htmlurl url='mailto:terry@lambert.org' name='<terry@lambert.org>'></tt> <item>Terry Lee <tt><htmlurl url='mailto:terry@uivlsi.csl.uiuc.edu' name='<terry@uivlsi.csl.uiuc.edu>'></tt> <item>Tetsuya Furukawa <tt><htmlurl url='mailto:tetsuya@secom-sis.co.jp' name='<tetsuya@secom-sis.co.jp>'></tt> <item>Theo Deraadt <tt><htmlurl url='mailto:deraadt@fsa.ca' name='<deraadt@fsa.ca>'></tt> <item>Thomas König <tt><htmlurl url='mailto:Thomas.Koenig@ciw.uni-karlsruhe.de' name='<Thomas.Koenig@ciw.uni-karlsruhe.de>'></tt> <item>Þórður Ívarsson <tt><htmlurl url='mailto:totii@est.is' name='<totii@est.is>'></tt> <item>Tim Kientzle <tt><htmlurl url='mailto:kientzle@netcom.com' name='<kientzle@netcom.com>'></tt> <item>Tim Wilkinson <tt><htmlurl url='mailto:tim@sarc.city.ac.uk' name='<tim@sarc.city.ac.uk>'></tt> <item>Tom Samplonius <tt><htmlurl url='mailto:tom@misery.sdf.com' name='<tom@misery.sdf.com>'></tt> <item>Torbjorn Granlund <tt><htmlurl url='mailto:tege@matematik.su.se' name='<tege@matematik.su.se>'></tt> <item>Toshihiro Kanda <tt><htmlurl url='mailto:candy@fct.kgc.co.jp' name='<candy@fct.kgc.co.jp>'></tt> <item>Toshihiko SHIMOKAWA <tt><htmlurl url='mailto:toshi@tea.forus.or.jp' name='<toshi@tea.forus.or.jp>'></tt> <item>Trefor S. <tt><htmlurl url='mailto:trefor@flevel.co.uk' name='<trefor@flevel.co.uk>'></tt> <item>Ville Eerola <tt><htmlurl url='mailto:ve@sci.fi' name='<ve@sci.fi>'></tt> <item>Vladimir Kushnir <tt><htmlurl url='mailto:kushn@mail.kar.net' name='<kushn@mail.kar.net>'></tt> <item>Werner Griessl <tt><htmlurl url='mailto:werner@btp1da.phy.uni-bayreuth.de' name='<werner@btp1da.phy.uni-bayreuth.de>'></tt> <item>Wes Santee <tt><htmlurl url='mailto:wsantee@wsantee.oz.net' name='<wsantee@wsantee.oz.net>'></tt> <item>Wilko Bulte <tt><htmlurl url='mailto:wilko@yedi.iaf.nl' name='<wilko@yedi.iaf.nl>'></tt> <item>Wolfgang Stanglmeier <tt><htmlurl url='mailto:wolf@kintaro.cologne.de' name='<wolf@kintaro.cologne.de>'></tt> <item>Wu Ching-hong <tt><htmlurl url='mailto:woju@FreeBSD.ee.Ntu.edu.TW' name='<woju@FreeBSD.ee.Ntu.edu.TW>'></tt> <item>Yen-Shuo Su <tt><htmlurl url='mailto:yssu@CCCA.NCTU.edu.tw' name='<yssu@CCCA.NCTU.edu.tw>'></tt> <item>Yoshiaki Uchikawa <tt><htmlurl url='mailto:yoshiaki@kt.rim.or.jp' name='<yoshiaki@kt.rim.or.jp>'></tt> <item>Yoshiro Mihira <tt><htmlurl url='mailto:sanpei@yy.cs.keio.ac.jp' name='<sanpei@yy.cs.keio.ac.jp>'></tt> <item>Yukihiro Nakai <tt><htmlurl url='mailto:nakai@technologist.com' name='<nakai@technologist.com>'></tt> <item>Yuval Yarom <tt><htmlurl url='mailto:yval@cs.huji.ac.il' name='<yval@cs.huji.ac.il>'></tt> <item>Yves Fonk <tt><htmlurl url='mailto:yves@cpcoup5.tn.tudelft.nl' name='<yves@cpcoup5.tn.tudelft.nl>'></tt> </itemize> <sect><heading>386BSD Patch Kit Patch Contributors</heading> <p>(in alphabetical order by first name): <itemize> <item>Adam Glass <tt><htmlurl url='mailto:glass@postgres.berkeley.edu' name='<glass@postgres.berkeley.edu>'></tt> <item>Adrian Hall <tt><htmlurl url='mailto:adrian@ibmpcug.co.uk' name='<adrian@ibmpcug.co.uk>'></tt> <item>Andrey A. Chernov <tt><htmlurl url='mailto:ache@astral.msk.su' name='<ache@astral.msk.su>'></tt> <item>Andrew Herbert <tt><htmlurl url='mailto:andrew@werple.apana.org.au' name='<andrew@werple.apana.org.au>'></tt> <item>Andrew Moore <tt><htmlurl url='mailto:alm@netcom.com' name='<alm@netcom.com>'></tt> <item>Andy Valencia <tt><htmlurl url='mailto:ajv@csd.mot.com' name='<ajv@csd.mot.com>'></tt> <tt><htmlurl url='mailto:jtk@netcom.com' name='<jtk@netcom.com>'></tt> <item>Arne Henrik Juul <tt><htmlurl url='mailto:arnej@Lise.Unit.NO' name='<arnej@Lise.Unit.NO>'></tt> <item>Bakul Shah <tt><htmlurl url='mailto:bvs@bitblocks.com' name='<bvs@bitblocks.com>'></tt> <item>Barry Lustig <tt><htmlurl url='mailto:barry@ictv.com' name='<barry@ictv.com>'></tt> <item>Bob Wilcox <tt><htmlurl url='mailto:bob@obiwan.uucp' name='<bob@obiwan.uucp>'></tt> <item>Branko Lankester <item>Brett Lymn <tt><htmlurl url='mailto:blymn@mulga.awadi.com.AU' name='<blymn@mulga.awadi.com.AU>'></tt> <item>Charles Hannum <tt><htmlurl url='mailto:mycroft@ai.mit.edu' name='<mycroft@ai.mit.edu>'></tt> <item>Chris G. Demetriou <tt><htmlurl url='mailto:cgd@postgres.berkeley.edu' name='<cgd@postgres.berkeley.edu>'></tt> <item>Chris Torek <tt><htmlurl url='mailto:torek@ee.lbl.gov' name='<torek@ee.lbl.gov>'></tt> <item>Christoph Robitschko <tt><htmlurl url='mailto:chmr@edvz.tu-graz.ac.at' name='<chmr@edvz.tu-graz.ac.at>'></tt> <item>Daniel Poirot <tt><htmlurl url='mailto:poirot@aio.jsc.nasa.gov' name='<poirot@aio.jsc.nasa.gov>'></tt> <item>Dave Burgess <tt><htmlurl url='mailto:burgess@hrd769.brooks.af.mil' name='<burgess@hrd769.brooks.af.mil>'></tt> <item>Dave Rivers <tt><htmlurl url='mailto:rivers@ponds.uucp' name='<rivers@ponds.uucp>'></tt> <item>David Dawes <tt><htmlurl url='mailto:dawes@physics.su.OZ.AU' name='<dawes@physics.su.OZ.AU>'></tt> <item>David Greenman <tt><htmlurl url='mailto:dg@Root.COM' name='<dg@Root.COM>'></tt> <item>Eric J. Haug <tt><htmlurl url='mailto:ejh@slustl.slu.edu' name='<ejh@slustl.slu.edu>'></tt> <item>Felix Gaehtgens <tt><htmlurl url='mailto:felix@escape.vsse.in-berlin.de' name='<felix@escape.vsse.in-berlin.de>'></tt> <item>Frank Maclachlan <tt><htmlurl url='mailto:fpm@crash.cts.com' name='<fpm@crash.cts.com>'></tt> <item>Gary A. Browning <tt><htmlurl url='mailto:gab10@griffcd.amdahl.com' name='<gab10@griffcd.amdahl.com>'></tt> <item>Gary Howland <tt><htmlurl url='mailto:gary@hotlava.com' name='<gary@hotlava.com>'></tt> <item>Geoff Rehmet <tt><htmlurl url='mailto:csgr@alpha.ru.ac.za' name='<csgr@alpha.ru.ac.za>'></tt> <item>Goran Hammarback <tt><htmlurl url='mailto:goran@astro.uu.se' name='<goran@astro.uu.se>'></tt> <item>Guido van Rooij <tt><htmlurl url='mailto:guido@gvr.win.tue.nl' name='<guido@gvr.win.tue.nl>'></tt> <item>Guy Harris <tt><htmlurl url='mailto:guy@auspex.com' name='<guy@auspex.com>'></tt> <item>Havard Eidnes <tt><htmlurl url='mailto:Havard.Eidnes@runit.sintef.no' name='<Havard.Eidnes@runit.sintef.no>'></tt> <item>Herb Peyerl <tt><htmlurl url='mailto:hpeyerl@novatel.cuc.ab.ca' name='<hpeyerl@novatel.cuc.ab.ca>'></tt> <item>Holger Veit <tt><htmlurl url='mailto:Holger.Veit@gmd.de' name='<Holger.Veit@gmd.de>'></tt> <item>Ishii Masahiro, R. Kym Horsell <item>J.T. Conklin <tt><htmlurl url='mailto:jtc@cygnus.com' name='<jtc@cygnus.com>'></tt> <item>Jagane D Sundar <tt><htmlurl url='mailto: jagane@netcom.com ' name='< jagane@netcom.com >'></tt> <item>James Clark <tt><htmlurl url='mailto:jjc@jclark.com' name='<jjc@jclark.com>'></tt> <item>James Jegers <tt><htmlurl url='mailto:jimj@miller.cs.uwm.edu' name='<jimj@miller.cs.uwm.edu>'></tt> <item>James W. Dolter <item>James da Silva <tt><htmlurl url='mailto:jds@cs.umd.edu' name='<jds@cs.umd.edu>'></tt> et al <item>Jay Fenlason <tt><htmlurl url='mailto:hack@datacube.com' name='<hack@datacube.com>'></tt> <item>Jim Wilson <tt><htmlurl url='mailto:wilson@moria.cygnus.com' name='<wilson@moria.cygnus.com>'></tt> <item>Jörg Lohse <tt><htmlurl url='mailto:lohse@tech7.informatik.uni-hamburg.de' name='<lohse@tech7.informatik.uni-hamburg.de>'></tt> <item>Jörg Wunsch <tt><htmlurl url='mailto:joerg_wunsch@uriah.heep.sax.de' name='<joerg_wunsch@uriah.heep.sax.de>'></tt> <item>John Dyson - <tt><htmlurl url='mailto:formerly dyson@ref.tfs.com' name='<formerly dyson@ref.tfs.com>'></tt> <item>John Woods <tt><htmlurl url='mailto:jfw@eddie.mit.edu' name='<jfw@eddie.mit.edu>'></tt> <item>Jordan K. Hubbard <tt><htmlurl url='mailto:jkh@whisker.hubbard.ie' name='<jkh@whisker.hubbard.ie>'></tt> <item>Julian Elischer <tt><htmlurl url='mailto:julian@dialix.oz.au' name='<julian@dialix.oz.au>'></tt> <item>Julian Stacey <tt><htmlurl url='mailto:jhs@freebsd.org' name='<jhs@freebsd.org>'></tt> <item>Karl Lehenbauer <tt><htmlurl url='mailto:karl@NeoSoft.com' name='<karl@NeoSoft.com>'></tt> <tt><htmlurl url='mailto:karl@one.neosoft.com' name='<karl@one.neosoft.com>'></tt> <item>Keith Bostic <tt><htmlurl url='mailto:bostic@toe.CS.Berkeley.EDU' name='<bostic@toe.CS.Berkeley.EDU>'></tt> <item>Ken Hughes <item>Kent Talarico <tt><htmlurl url='mailto:kent@shipwreck.tsoft.net' name='<kent@shipwreck.tsoft.net>'></tt> <item>Kevin Lahey <tt><htmlurl url='mailto:kml%rokkaku.UUCP@mathcs.emory.edu' name='<kml%rokkaku.UUCP@mathcs.emory.edu>'></tt> <tt><htmlurl url='mailto:kml@mosquito.cis.ufl.edu' name='<kml@mosquito.cis.ufl.edu>'></tt> <item>Marc Frajola <tt><htmlurl url='mailto:marc@dev.com' name='<marc@dev.com>'></tt> <item>Mark Tinguely <tt><htmlurl url='mailto:tinguely@plains.nodak.edu' name='<tinguely@plains.nodak.edu>'></tt> <tt><htmlurl url='mailto:tinguely@hookie.cs.ndsu.NoDak.edu' name='<tinguely@hookie.cs.ndsu.NoDak.edu>'></tt> <item>Martin Renters <tt><htmlurl url='mailto:martin@tdc.on.ca' name='<martin@tdc.on.ca>'></tt> <item>Michael Clay <tt><htmlurl url='mailto:mclay@weareb.org' name='<mclay@weareb.org>'></tt> <item>Michael Galassi <tt><htmlurl url='mailto:nerd@percival.rain.com' name='<nerd@percival.rain.com>'></tt> <item>Mike Durkin <tt><htmlurl url='mailto:mdurkin@tsoft.sf-bay.org' name='<mdurkin@tsoft.sf-bay.org>'></tt> <item>Naoki Hamada <tt><htmlurl url='mailto:nao@tom-yam.or.jp' name='<nao@tom-yam.or.jp>'></tt> <item>Nate Williams <tt><htmlurl url='mailto:nate@bsd.coe.montana.edu' name='<nate@bsd.coe.montana.edu>'></tt> <item>Nick Handel <tt><htmlurl url='mailto:nhandel@NeoSoft.com' name='<nhandel@NeoSoft.com>'></tt> <tt><htmlurl url='mailto:nick@madhouse.neosoft.com' name='<nick@madhouse.neosoft.com>'></tt> <item>Pace Willisson <tt><htmlurl url='mailto:pace@blitz.com' name='<pace@blitz.com>'></tt> <item>Paul Kranenburg <tt><htmlurl url='mailto:pk@cs.few.eur.nl' name='<pk@cs.few.eur.nl>'></tt> <item>Paul Mackerras <tt><htmlurl url='mailto:paulus@cs.anu.edu.au' name='<paulus@cs.anu.edu.au>'></tt> <item>Paul Popelka <tt><htmlurl url='mailto:paulp@uts.amdahl.com' name='<paulp@uts.amdahl.com>'></tt> <item>Peter da Silva <tt><htmlurl url='mailto:peter@NeoSoft.com' name='<peter@NeoSoft.com>'></tt> <item>Phil Sutherland <tt><htmlurl url='mailto:philsuth@mycroft.dialix.oz.au' name='<philsuth@mycroft.dialix.oz.au>'></tt> <item>Poul-Henning Kamp<tt><htmlurl url='mailto:phk@FreeBSD.ORG' name='<phk@FreeBSD.ORG>'></tt> <item>Ralf Friedl <tt><htmlurl url='mailto:friedl@informatik.uni-kl.de' name='<friedl@informatik.uni-kl.de>'></tt> <item>Rick Macklem <tt><htmlurl url='mailto:root@snowhite.cis.uoguelph.ca' name='<root@snowhite.cis.uoguelph.ca>'></tt> <item>Robert D. Thrush <tt><htmlurl url='mailto:rd@phoenix.aii.com' name='<rd@phoenix.aii.com>'></tt> <item>Rodney W. Grimes <tt><htmlurl url='mailto:rgrimes@cdrom.com' name='<rgrimes@cdrom.com>'></tt> <item>Sascha Wildner <tt><htmlurl url='mailto:swildner@channelz.GUN.de' name='<swildner@channelz.GUN.de>'></tt> <item>Scott Burris <tt><htmlurl url='mailto:scott@pita.cns.ucla.edu' name='<scott@pita.cns.ucla.edu>'></tt> <item>Scott Reynolds <tt><htmlurl url='mailto:scott@clmqt.marquette.mi.us' name='<scott@clmqt.marquette.mi.us>'></tt> <item>Sean Eric Fagan <tt><htmlurl url='mailto:sef@kithrup.com' name='<sef@kithrup.com>'></tt> <item>Simon J Gerraty <tt><htmlurl url='mailto:sjg@melb.bull.oz.au' name='<sjg@melb.bull.oz.au>'></tt> <tt><htmlurl url='mailto:sjg@zen.void.oz.au' name='<sjg@zen.void.oz.au>'></tt> <item>Stephen McKay <tt><htmlurl url='mailto:syssgm@devetir.qld.gov.au' name='<syssgm@devetir.qld.gov.au>'></tt> <item>Terry Lambert <tt><htmlurl url='mailto:terry@icarus.weber.edu' name='<terry@icarus.weber.edu>'></tt> <item>Terry Lee <tt><htmlurl url='mailto:terry@uivlsi.csl.uiuc.edu' name='<terry@uivlsi.csl.uiuc.edu>'></tt> <item>Tor Egge <tt><htmlurl url='mailto:Tor.Egge@idi.ntnu.no' name='<Tor.Egge@idi.ntnu.no>'></tt> <item>Warren Toomey <tt><htmlurl url='mailto:wkt@csadfa.cs.adfa.oz.au' name='<wkt@csadfa.cs.adfa.oz.au>'></tt> <item>Wiljo Heinen <tt><htmlurl url='mailto:wiljo@freeside.ki.open.de' name='<wiljo@freeside.ki.open.de>'></tt> <item>William Jolitz <tt><htmlurl url='mailto:withheld' name='<withheld>'></tt> <item>Wolfgang Solfrank <tt><htmlurl url='mailto:ws@tools.de' name='<ws@tools.de>'></tt> <item>Wolfgang Stanglmeier <tt><htmlurl url='mailto:wolf@dentaro.GUN.de' name='<wolf@dentaro.GUN.de>'></tt> <item>Yuval Yarom <tt><htmlurl url='mailto:yval@cs.huji.ac.il' name='<yval@cs.huji.ac.il>'></tt> </itemize>