aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bring the FreeBSD changes to the virgin sources.Mark Murray1997-09-0766-534/+944
| | | | Notes: svn path=/head/; revision=29181
* Staticized.Bruce Evans1997-09-072-6/+6
| | | | Notes: svn path=/head/; revision=29180
* Some staticized variables were still declared to be extern.Bruce Evans1997-09-0732-81/+41
| | | | Notes: svn path=/head/; revision=29179
* Include kernel.h instead of declaring "extern int hz".Bruce Evans1997-09-072-5/+4
| | | | Notes: svn path=/head/; revision=29178
* Removed superfluous quoting of function args.Bruce Evans1997-09-074-6/+6
| | | | Notes: svn path=/head/; revision=29177
* Fixed style bug in pseudocode.Bruce Evans1997-09-071-1/+1
| | | | Notes: svn path=/head/; revision=29176
* Fix an intermittent problem during SMP code operation. Not all of theJohn Dyson1997-09-072-4/+4
| | | | | | | | idle page table directories for all of the processors was being updated during kernel grow operations. The problem appears to be gone now. Notes: svn path=/head/; revision=29174
* Update samples for the changed LQR default.Brian Somers1997-09-071-2/+5
| | | | Notes: svn path=/head/; revision=29172
* Disable LQR by default. It causes too many problemsBrian Somers1997-09-073-7/+7
| | | | | | | | with too many ISPs to be a good default. LQR is still accepted by default. Notes: svn path=/head/; revision=29170
* Enable A law encoding.Wolfgang Helbig1997-09-061-0/+73
| | | | | | | Enable A law encoding. Notes: svn path=/head/; revision=29169
* Enable A law encoding.Wolfgang Helbig1997-09-061-1/+4
| | | | Notes: svn path=/head/; revision=29168
* Use __libalias_version to derive the name toBrian Somers1997-09-061-1/+2
| | | | | | | pass to dlopen(). Notes: svn path=/head/; revision=29164
* Ingored incoming packets are now dropped whenBrian Somers1997-09-064-4/+40
| | | | | | | | deny_incoming option is set to yes. Submitted by: Ari Suutari <ari@suutari.iki.fi> Notes: svn path=/head/; revision=29163
* Upgrade to 2.4 (Fix -PKT_ALIAS_UNREGISTERED_ONLY)Brian Somers1997-09-0610-8/+34
| | | | | | | | | | Submitted by: Charles Mott <cmott@srv.net> Add __libalias_version so that ppp can derive the correct library name for dlopen() Notes: svn path=/head/; revision=29162
* Changed the Ints labels for the IO APIC from "INT#" to "PIN#" to betterSteve Passe1997-09-061-4/+4
| | | | | | | | reflect its logical usage. Ie., there is NOT a 1-to-1 correspondence between IRQ numbers and APIC pin numbers as there is with the 8259 ICU. Notes: svn path=/head/; revision=29161
* Synchronize with sys/i386/i386/trap.c revision 1.110.KATO Takenori1997-09-061-8/+9
| | | | Notes: svn path=/head/; revision=29158
* Insist that the user has group network.Brian Somers1997-09-052-16/+19
| | | | | | | Discussed on: -committers Notes: svn path=/head/; revision=29155
* "lmd" -> "-lmd"Nate Williams1997-09-051-2/+2
| | | | | | | Submitted by: Vincent Poy <vince@venus.gaianet.net> Notes: svn path=/head/; revision=29152
* Argh, what was I thinking?? Don't (yet) halt the CPU in the idle loopPeter Wemm1997-09-053-3/+9
| | | | | | | | | | | | while waiting for an interrupt (rather than spinning on the runqueue status bits), since the other cpu can put stuff in there and the sleeping cpu may not get an interrupt for a while. When we have a reschedule IPI, this can come back. Pointed out by: fsmp Notes: svn path=/head/; revision=29151
* Teach libdescrypt about elf builds.Peter Wemm1997-09-051-3/+19
| | | | Notes: svn path=/head/; revision=29147
* When compiling under elf, use correct library naming conventions. AlsoPeter Wemm1997-09-051-3/+19
| | | | | | | | add the required extra symlink. Set the -soname to libcrypt.so so that the symlink is used at runtime rather than resolved at compile time. Notes: svn path=/head/; revision=29146
* If elf, don't add libmd.a just because we link against libskey.so.Peter Wemm1997-09-051-0/+3
| | | | | | | A Notes: svn path=/head/; revision=29145
* If building elf, don't link in libmd.a just for libskey.so to use. UnderPeter Wemm1997-09-051-3/+9
| | | | | | | elf, libskey.so will not expose it's implementation on it's caller. Notes: svn path=/head/; revision=29144
* If building under elf, have libskey.so depend on libmd and libcrypt.Peter Wemm1997-09-051-0/+5
| | | | Notes: svn path=/head/; revision=29143
* If not building a.out, still build a pic version of libmd. This allowsPeter Wemm1997-09-051-1/+3
| | | | | | | | | | | things like libskey.so to be dynamically self contained. Things like md5(1) where speed is critical should still link with libmd.a, but for things like login, where it's a once-off call if skey is used, it's not worth the hassle. Notes: svn path=/head/; revision=29142
* Restore the BINFORMAT?= in sys.mk, or it's painfully difficult to usePeter Wemm1997-09-052-4/+10
| | | | | | | | | | | .if in Makefiles. bsd.prog.mk and bsd.lib.mk do not depend on it however. Allow overriding of the -soname arg when building the lib*crypt.so* libs since libdescrypt.so and libscrupt.so both need a -soname of libcrypt.so so that the symlink is obeyed at runtime rather than at compile time. Notes: svn path=/head/; revision=29141
* Hopefully better fix for logwtmp(): rename to a privateThomas Gellekum1997-09-053-7/+8
| | | | | | | version ftpd_logwtmp(). Notes: svn path=/head/; revision=29140
* logwtmp() prototype is in <libutil.h>.Thomas Gellekum1997-09-051-2/+1
| | | | Notes: svn path=/head/; revision=29139
* Changes to support NetBSD and the new ifmedia extensions.David Greenman1997-09-056-486/+1684
| | | | | | | Submitted by: Jason Thorpe <thorpej@netbsd.org> Notes: svn path=/head/; revision=29138
* Synchronize with sys/i386/conf/options.1386 revision 1.58.KATO Takenori1997-09-052-2/+4
| | | | Notes: svn path=/head/; revision=29137
* Synchronize with sys/i386/isa/syscons.c and syscons.h revisions 1.231KATO Takenori1997-09-052-24/+23
| | | | | | | and 1.33, respectively. Notes: svn path=/head/; revision=29136
* Make the Sony TSL-7000 a known tape changer device.Joerg Wunsch1997-09-051-1/+9
| | | | Notes: svn path=/head/; revision=29134
* Synchronize with sys/i386/isa/wd.c revision 1.136.KATO Takenori1997-09-051-55/+103
| | | | Notes: svn path=/head/; revision=29133
* Synchronize with sys/i386/i386/machdep.c revision up to 1.263.KATO Takenori1997-09-052-42/+70
| | | | Notes: svn path=/head/; revision=29132
* Back out use of -m, since 2.1.x apparently do not have it. (sigh..)Peter Wemm1997-09-051-3/+3
| | | | Notes: svn path=/head/; revision=29130
* Change the BINFORMAT definitions so that they do not depend on sys.mk,Peter Wemm1997-09-053-6/+9
| | | | | | | | | since 2.1.x make(1) apparently does not have the -m switch to set both the the bsd.*.mk and sys.mk location, and this breaks 'make world' from a 2.1.x system. Notes: svn path=/head/; revision=29129
* Cosmetic adjustment for the trap/double fault/panic cpu id listing.Peter Wemm1997-09-054-26/+32
| | | | | | | It now prints the apic id in hex rather than decimal. Notes: svn path=/head/; revision=29128
* Add redirection for new _clock_lock symbolPeter Wemm1997-09-051-1/+2
| | | | Notes: svn path=/head/; revision=29127
* Add cvsup.ca.FreeBSD.org.John Polstra1997-09-051-1/+4
| | | | Notes: svn path=/head/; revision=29125
* - Changed default PAGER from 'less' to 'more', since we don't have lessNate Williams1997-09-051-2/+2
| | | | | | | | | | in the base system. PR: bin/4471 Submitted by: Dmitry Khrustalev <dima@xyzzy.machaon.ru> Notes: svn path=/head/; revision=29124
* Notes that WEBNFS is supported.Jordan K. Hubbard1997-09-051-0/+2
| | | | Notes: svn path=/head/; revision=29123
* Add a new compile option SC_HISTORY_SIZE for syscons.Kazutaka YOKOTA1997-09-045-5/+10
| | | | Notes: svn path=/head/; revision=29122
* Add a new compile option SC_HISTORY_SIZE to specify the history bufferKazutaka YOKOTA1997-09-046-42/+57
| | | | | | | | | | | | | | | size in terms of lines (instead of bytes). When changing video mode in ioctl SW_XXX commands, syscons checks scp->history_size and allocate a history buffer at least as large as the new screen size. (This was unnecessary before, because HISTORY_SIZE was as large as 100 lines and this is bigger than the maximum screen size: 60 lines). Similar adjustment is done in ioctl CONS_HISTORY command too. PR: kern/4169 Reviewed by: sos Notes: svn path=/head/; revision=29121
* The parameters to logwtmp should be const char'sPaul Traina1997-09-042-4/+6
| | | | Notes: svn path=/head/; revision=29119
* FreeBSD specific schanges - mainly religious issues about where to putMark Murray1997-09-046-22/+36
| | | | | | | stuff. Notes: svn path=/head/; revision=29118
* Added an replacement for callrpc that uses tcp as primary transport method.Tor Egge1997-09-041-3/+72
| | | | | | | This enables larger reply messages. Notes: svn path=/head/; revision=29117
* "It's" -> "Its" in two places.John Polstra1997-09-041-3/+3
| | | | Notes: svn path=/head/; revision=29114
* Upgrade of EIDE DMA support, Johns comments:Søren Schmidt1997-09-047-297/+478
| | | | | | | | | | | | | | | * lots of fixes to error handling-- mostly works now * improve DMA timing config for Triton chipsets-- PIIX4 and UDMA drive still untested * generally improve DMA config in many ways-- mostly cleanup * clean up boot-time messages * rewrite PRD generation algorithm * first wd timeout is now longer, to handle drive spinup Submitted by: John Hood <cgull@smoke.marlboro.vt.us> Notes: svn path=/head/; revision=29113
* No longer needed, superceded by ide-pci.c ide-pcireg.hSøren Schmidt1997-09-042-382/+0
| | | | Notes: svn path=/head/; revision=29112
* sonewconn no longer passes curproc to the protocol attach methodTor Egge1997-09-042-4/+4
| | | | | | | | | since that might cause in_pcballoc to call MALLOC with M_WAITOK during a software interrupt. Reviewed by: Garrett Wollman <wollman@khavrinen.lcs.mit.edu> Notes: svn path=/head/; revision=29111