summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* IPv6 support.ume2000-05-207-68/+278
|
* Document "-alias".obrien2000-05-201-7/+9
|
* Revert rev 1.10 as I took the bug report too much on face value. The bugobrien2000-05-201-8/+8
| | | | | | | | submitter has been refered to the ISC to determine if there his problems are due to a bug in the script. As a side note, `man 8 ifconfig' does not show "ifconfig -alias" as being acceptable, but it is and does server a purpose.
* Take crtbegin.c and crtend.c from the new machine-independentjdp2000-05-204-135/+4
| | | | "common" sister directory.
* Our `ifconfig' syntax uses "alias" not "-alias".obrien2000-05-201-8/+8
| | | | Submitted by: Per Kristian Hove <Per.Hove@math.ntnu.no>
* Oops, rman_get_bushandle() should be converted to rman_get_virtual()nyan2000-05-201-1/+1
| | | | if resources are mapped to memory.
* ASM_DECLARE_OBJECT_NAME and ASM_FINISH_DECLARE_OBJECT are ELF MI routinesobrien2000-05-203-98/+54
| | | | | | | | | to generate the special .type and .size directives which are used to set the corresponding fields of the linker symbol table entries in the ELF object file. As such they are not i386-specific and thus belong in our MI header. Otherwise on the Alpha we don't properly give the type and size of dynamic symbols. Bintuil versions past 2.9.1 warn of this and w/o this change, `ld' generates a lot of warnings during a `make world'.
* Match the include protection with the install location.obrien2000-05-201-3/+3
|
* Don't forget 'stripe' and 'mirror' commands when we turn offgrog2000-05-201-2/+2
| | | | | | debugging. Submitted-by: mdodd
* <machine/lpt.h> does not exist anymore. use <dev/ppbus/lptio.h> now.peter2000-05-191-1/+1
| | | | Forgotten by: obrien
* Install /usr/include/dev/ppbus as well as dev/usbpeter2000-05-191-2/+2
|
* Add dev/ppbus for lptio.hpeter2000-05-191-0/+2
|
* Correct the syntax of ROOTDEVNAME and describe it somewhat better.msmith2000-05-193-9/+24
|
* We use a MI version of this now, which is mostly this file repo copied toobrien2000-05-191-24/+0
| | | | dev/ppbus/lptio.h.
* Update the man page to match utmp.h.mpp2000-05-191-1/+1
|
* Rather than use a MD lpt.h, we now use the MI lptio.h.obrien2000-05-191-2/+1
|
* Correct confusion and differentiate appropriately between GMT and UTC whendbaker2000-05-192-4/+4
| | | | | | | | | date is launched with the "u" argument. It now operates in the documented manner. Fix typo in date man page. Submitted by: David McNett <nugget@slacker.com>
* Sync with sys/i386/conf/GENERIC revisions from 1.246 to 1.256.nyan2000-05-191-8/+12
|
* Fixed to support PC-98.nyan2000-05-193-3/+5
|
* Use the rman_get_bustag() and rman_get_bushandle() functions.nyan2000-05-191-9/+6
|
* Minor nit: this tar(1) replacement still used /dev/rst0 as its defaultjoerg2000-05-191-1/+1
| | | | device.
* Supported the mss on PC-98 and Sound Blaster 98.nyan2000-05-196-3/+93
| | | | Submitted by: "T.Yamaoka" <taka@windows.squares.net>
* One of loaders' bugs disappeared somewhere along the way.dcs2000-05-191-5/+0
|
* Add RSS0262 - 5614Jx3[G] V90+K56Flex Modem.tanimura2000-05-192-0/+2
| | | | | PR: kern/18168 Submitted by: Tony Voet <voet@engineer.com>
* Better handling of some boundary conditions.des2000-05-192-4/+9
| | | | Submitted by: ume
* fork() -> vfork()kris2000-05-191-3/+4
| | | | | | | | This would have been commit #2 which was "Obtained from: BSD/OS" except their code is buggy (they call err() if the execl() fails, which will incorrectly call exit()), so instead this is: Obtained from: NetBSD
* Move man page directives to common/Makefile.inc.dcs2000-05-191-0/+5
|
* This file got repo-copied to common/.dcs2000-05-191-756/+0
|
* Move man page directives to common/Makefile.inc.dcs2000-05-192-4/+0
|
* Remove INSTALL_FORTH stuff.dcs2000-05-191-1/+0
|
* Move man page directives to common/Makefile.inc.dcs2000-05-191-6/+0
| | | | Remove INSTALL_FORTH stuff.
* Remove duplicated ';' statement delimiters.kris2000-05-191-2/+2
| | | | Obtained from: BSD/OS
* This is step 1 in an effort to unify the start-up files for thejdp2000-05-196-78/+120
| | | | | | | | | | | | | | | | | various architectures. Now all the work is done in crtbegin.c. It doesn't contain any assembly language code, so it should work fine on all architectures. (I have tested it on the i386 and the alpha.) The old assembly language files crt[in].S are now empty shells that generate no code or data. They should not be removed any time soon, because the various versions of gcc in src and ports expect them to exist. Next I will move crtbegin.c into a new common machine-independent directory, and adjust the i386-elf Makefile to use that version. After that I will adjust the alpha Makefile to use the common version too. Requested by: obrien
* Add ACH2012 - 5634BTS 56K Video Ready Modem.tanimura2000-05-192-0/+2
| | | | | PR: kern/17351 Submitted by: Eric D. Futch <efutch@nyct.net>
* Remove a superfluous `.Pp' occuring directly afterchris2000-05-191-1/+0
| | | | `.Sh IMPLEMENTATION NOTES'.
* Add a note under IMPLEMENTATION NOTES about the behavior of sendfile()chris2000-05-191-0/+27
| | | | in the threaded library.
* List ECONNRESET as a return value. EINVAL was not documented either.peter2000-05-192-0/+4
|
* Return ECONNRESET instead of EINVAL if the connection has been shotpeter2000-05-191-3/+3
| | | | | | | | down as a result of a reset. Returning EINVAL in that case makes no sense at all and just confuses people as to what happened. It could be argued that we should save the original address somewhere so that getsockname() etc can tell us what it used to be so we know where the problem connection attempts are coming from.
* Eliminate a couple of evil common declarations.peter2000-05-183-2/+4
|
* bump __FreeBSD_version for the bio/buf divorce by phk.billf2000-05-181-1/+1
|
* snd_cwnd was updated twice in the tcp_newreno function.jayanth2000-05-182-2/+0
|
* Print the correct value for the map type on a verbose boot.dfr2000-05-182-2/+2
| | | | | PR: kern/18662 Submitted by: tamaru@ap.t.u-tokyo.ac.jp
* Fix misleading comment.wollman2000-05-181-1/+1
|
* Make corrections to allow for Alpha.dcs2000-05-182-8/+8
|
* Add new option (-target_addr) to control how to deal with incoming packetsru2000-05-182-1/+34
| | | | | | not associated with any pre-existing link. Submitted by: brian
* This commit was generated by cvs2svn to compensate for changes in r60679,asmodai2000-05-181-44/+43
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of BIND v8.2.3-T5Basmodai2000-05-181-44/+43
| |
* | Correct two stupid typos in the DSA key location.kris2000-05-181-1/+1
| | | | | | | | Submitted by: Udo Schweigert <ust@cert.siemens.de>
* | Install /etc/ssl/openssl.cnfkris2000-05-181-0/+8
| | | | | | | | | | Submitted by: Doug Barton <DougB@gorean.org> Forgotten by: kris
* | Correct previous commit: solve the "stopped clock" syndrome in remotegrog2000-05-182-4/+4
| | | | | | | | kernel debugger.
OpenPOWER on IntegriCloud