summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix return value check for inet_pton().sumikawa2000-01-251-1/+1
| | | | Obtained from: KAME Project
* Now that kernel is capable of notifying user processes aboutru2000-01-251-8/+6
| | | | | | | the interface MTU change (src/sys/net/if_sl.c,v 1.83), track interface MTU with -dynamic option as well. PR: 15494
* Do not use "DEFAULT_VTABLE_THUNKS". The bugs that have existed sinceobrien2000-01-251-3/+4
| | | | | EGCS 1.x have not been worked out. And with 4.0 RELEASE comming quickly we need C++ to be stable and usable.
* Fix English. Also use full spelling and reorg a little while I'm here.obrien2000-01-251-5/+5
| | | | Submitted by: Andy Farkas <andyf@speednet.com.au>
* Remove i8042.h. This file is an improvement on its successors, but itbde2000-01-251-27/+0
| | | | has been unused for too long.
* Install the USB include files in /usr/include/dev/usb.n_hibma2000-01-253-2/+11
| | | | | | | We should still sort out some way of avoiding the clutter. Not all files should be there. Prompted by: Louis A. Mamakos <louie@TransSys.COM>
* Don't follow null pointers if we somehow have a null devswitch entrybde2000-01-251-11/+17
| | | | | | | despite having a non-null cn_tab entry. This case now works the same as if there is no physical console, except i/o at the kernel printf level may still work. This frees drivers of physical console drivers from the responsibility of attaching the device no matter what.
* Fixed the profiling version ALTENTRY(). Again. The previous versionbde2000-01-252-10/+18
| | | | | didn't set up the frame pointer before calling mcount, and then jumped to the wrong place in ENTRY() to defeat the point of the jump.
* Removed ssc and su.bde2000-01-251-2/+2
|
* Fixed breakage of installation of zzz.8 in previous commit. MLINKSbde2000-01-251-1/+1
| | | | consists of pairs of link names.
* s/pass0/pass/ so the passthrough device is removed from BOOTMFS.peter2000-01-255-10/+10
|
* Remove historical vestage from the days when there was 1 boot floppy forobrien2000-01-251-1/+1
| | | | | | i386 and 2 for the Alpha. Ok'ed by: JKH
* Do not use "DEFAULT_VTABLE_THUNKS". The bugs that have existed sinceobrien2000-01-251-4/+3
| | | | | EGCS 1.x have not been worked out. And with 4.0 RELEASE comming quickly we need C++ to be stable and usable.
* put things in place for jumbogramsmjacob2000-01-251-17/+35
|
* o Fix http proxy code for various extentions and deal with FTP archivejkh2000-01-2511-220/+305
| | | | | | | | | format changes. o Make anonymous ftp setup more analy retentive. PR: 16070 Submitted by: Philipp Mergenthaler <un1i@rz.uni-karlsruhe.de>
* define jumbo packet sizemjacob2000-01-251-0/+1
|
* Reserve a major number for /dev/skip, used by the "security/skip" port.archie2000-01-251-0/+1
|
* Type-o, change from[...] = 0 to fromb[...] = 0. The incorrect bufferdillon2000-01-251-1/+1
| | | | | | | | | was having its last element zero'd. It turns out not to be a security hole or to have any real effect on the code because 'from' was previously pointing to a buffer of the same size as 'fromb', and the last element in fromb is already 0 anyway due to the use of sizeof(fromb)-1 in the strncpy() call. But I'm not pressing my luck so only the type-o is being fixed.
* Block almost all signals in the default locking method instead ofjdp2000-01-254-32/+40
| | | | | | | | just a few of them. This looks like it solves the recent ld-elf.so.1: assert failed: /usr/src/libexec/rtld-elf/lockdflt.c:55 failures seen by some applications such as JDK.
* Avoid m_len and m_pkthdr.len inconsistency when changing m_lenshin2000-01-252-0/+4
| | | | | | | for an mbuf whose M_PKTHDR is set. PR: related to kern/15175 Reviewed by: archie
* Fix the bug that IPv4 ttl is not initialized when AF_INET6 socket is usedshin2000-01-252-16/+10
| | | | | | | | for IPv4 communication.(IPv4 mapped IPv6 addr.) Also removed IPv6 hoplimit initialization because it is alway done at tcp_output. Confirmed by: Bernd Walter <ticso@cicely5.cicely.de>
* 'start' command was not reenabling printing.dillon2000-01-241-3/+4
| | | | PR: bin/15728
* Back out previous commit minus spelling fixes. Should have asked maintainercharnier2000-01-242-37/+29
| | | | before.
* Fix typo for the flag ``--ungzip'' which should have been ``--gunzip''archie2000-01-241-1/+4
| | | | | | | | as is documented in the man page. Retain the older mistaken version of the flag for backwards compatibility in case anybody is using it. Add $FreeBSD$ tag as cvs requires it. PR: gnu/7800
* General cleanup.sos2000-01-249-571/+613
| | | | | | | | | | | | | | | | | | | Dont be so verbose in the probe, only ONE line printed now, to get more info boot verbose. Centralise most printf's in ata-all & ata-dma to use the ata_printf function, it saves alot of codelines. Repeat the identify command if drive fails the first. Protect the timeout functions with splbio. Dont update the transfer details before we are sure the transfer succeded, this way they are proberly retried on errors. Move the handling of next_writeable to userland. Use the READ_CD command to read CD's. That enables us to read _anything_ via the normal read/write interface. This kindof obsoletes the READAUDIO ioctl, but we keep that for now.
* Another target to keep "make release" orthogonal.markm2000-01-241-0/+2
|
* Make a "do nothing" target to help "make release" look clean.markm2000-01-241-0/+2
|
* Move the *intrq variables into net/intrq.c and unconditionallybrian2000-01-2412-36/+203
| | | | | | | | | | | include this in all kernels. Declare some const *intrq_present variables that can be checked by a module prior to using *intrq to queue data. Make the if_tun module capable of processing atm, ip, ip6, ipx, natm and netatalk packets when TUNSIFHEAD is ioctl()d on. Review not required by: freebsd-hackers
* Update to keep track of next_writeable in userland.sos2000-01-241-1/+1
| | | | Recompile both kernel & burncd !!
* Add a (commented out) macro that will, when uncommented, cause Kerberos5markm2000-01-242-6/+26
| | | | | | | (AKA Heimdal) to be built. Suitable admonishments about the experimental state of this code are included. SEROUS HACKERS ONLY!!
* Merge cc_drv into cc_int. Merge more shared files into cc_int.obrien2000-01-249-24/+20
|
* Build Kerberos5 if the correct macro is set. This is not for themarkm2000-01-241-6/+29
| | | | faint_hearted; serious hackers only!
* Grr...markm2000-01-240-0/+0
| | | | | The previous commit comment should have been: "Attach directory to build".
* Move CFLAGS to a more obvious place and allow INET6 to work.markm2000-01-241-10/+10
|
* Move CFLAGS to a more obvious place and allow INET6 to work properly.markm2000-01-241-1/+1
|
* This commit was generated by cvs2svn to compensate for changes in r56545,markm2000-01-246-0/+182
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Bring in rest of K5 (AKA Heimdal) userland.markm2000-01-246-0/+182
| | | | | | | | | | The brave amongst you may want to start playing with this (ATM experimental) code.
* | Bring in rest of K5 (AKA Heimdal) userland.markm2000-01-241-0/+27
| | | | | | | | | | The brave amongst you may want to start playing with this (ATM experimental) code.
* | Update my email address.asmodai2000-01-241-1/+1
| |
* | Add AUTHORS section.asmodai2000-01-242-0/+16
| |
* | We _do_ support MS_ASYNCguido2000-01-241-1/+1
| | | | | | | | Reviewed by: Matthew Dillon <dillon@apollo.backplane.com>
* | Add support for DM9102A boards with Davicom DM9801 HomePNA PHYs.wpaul2000-01-242-14/+154
| |
* | Copy i386/isa/atapi-cd.[ch] to a new name so that it doesn't have thepeter2000-01-2410-1868/+40
| | | | | | | | | | | | | | | | | | same object file (atapi-cd.o) as the ata drivers. I'd have called it wcd.[ch], but there's already one of those in the Attic that we can't clobber - the good names are taken. Fix building so that it can be compiled into LINT alongside ata. Requested by: bde
* | Update skeleton dir file from the latest install-info(1).ru2000-01-241-9/+10
| |
* | o No need to install `dir-tmpl' to /usr/share/info.ru2000-01-241-3/+3
| | | | | | | | | | | | o Do not clobber an existing /usr/share/info/dir. Reviewed by: bde
* | o Use --defsection and --defentry options of install-info(1) instead ofru2000-01-241-10/+9
| | | | | | | | | | | | | | | | "fancy substitutions". o Invoke install-info(1) with --quiet to automatically remove duplicate Info dir entries. Reviewed by: bde
* | Add dependant devices (device pci) that need to be present beforeasmodai2000-01-242-0/+2
| | | | | | | | this driver can be used.
* | Quietly delete duplicate Info entries with --quiet.ru2000-01-241-1/+6
| | | | | | | | Reviewed by: bde
* | Bah! Give me the pointy hat. Never commit fixes when just awake.asmodai2000-01-242-2/+2
| | | | | | | | | | | | anable -> enable Spotted by: Alexander Leidinger <Alexander@leidinger.net>
* | Merged from sys/i386/conf/GENERIC rev 1.236.kato2000-01-242-6/+6
| |
OpenPOWER on IntegriCloud