summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Determine the names of the picobsd releases automatically.joe2000-12-232-18/+18
| | | | | Use the 'realclean' target in the crunch.mk file for cleaning the object build tree.
* use ``config auto'' for ACCTON EN2216-PCMCIA-ETHERNETsanpei2000-12-231-2/+1
| | | | Submitted by: taguchi@tohoku.iij.ad.jp
* use ``config auto'' for IBM PCMCIA Ethernet I/IIsanpei2000-12-231-1/+1
| | | | Submitted by: WAKABAYAI Susumu <susumu@wakabaya.net>
* fix MELCO LPC3-TX configsanpei2000-12-231-1/+2
| | | | | | | | | | use ``config auto'' add ether line Submitted by: bsd-nomads mailing list 14954: Seigo Tanimura <tanimura@r.dl.itc.u-tokyo.ac.jp> 14967: Yoichi Nakayama <yoichi@eken.phys.nagoya-u.ac.jp> 14971: WAKABAYAI Susumu <susumu@wakabaya.net>
* use ``config auto "sio" ?'' for Xircom CreditCard Modem CM-56Tsanpei2000-12-231-1/+1
| | | | | PR: conf/23068 Submitted by: Matt <kienow@infinet.com>
* Make sure we have a non-null proc pointer before referring to fieldsmjacob2000-12-231-1/+1
| | | | off of it.
* fix a panic if the requested blocksize was greater than the data rate,cg2000-12-231-0/+2
| | | | resulting in a divide by 0.
* kill a warningcg2000-12-231-1/+1
|
* fix a typocg2000-12-231-1/+1
|
* add sys/dev/sound/pcm/buffer.c, lefo out of last commitcg2000-12-233-2/+3
|
* update code dealing with snd_dbuf objects to do so using a functional interfacecg2000-12-2324-400/+638
| | | | | | | | | | | | | | | modify chn_setblocksize() to pick a default soft-blocksize appropriate to the sample rate and format in use. it will aim for a power of two size small enough to generate block sizes of at most 20ms. it will also set the hard-blocksize taking into account rate/format conversions in use. update drivers to implement setblocksize correctly: updated, tested: sb16, emu10k1, maestro, solo updated, untested: ad1816, ess, mss, sb8, csa not updated: ds1, es137x, fm801, neomagic, t4dwave, via82c686 i lack hardware to test: ad1816, csa, fm801, neomagic others will be updated/tested in the next few days.
* *sigh* The `pecoff' module was added to all arches w/out testing a compileobrien2000-12-221-2/+2
| | | | on all arches. This fixes the Alpha kernel build.
* Probe generic i960 devices for the old AMI signature as well as the currentmsmith2000-12-222-5/+8
| | | | | | one, in order to support adapters with older firmware. Submitted by: "Prasanth S." <prasanths@ami.co.in>
* Ensure that received packets are at least as long as the rwho packetiedowse2000-12-221-4/+10
| | | | | | | | | | | | | header before trying to process them. Without this sanity check, rwhod can attempt to byte-swap all of memory when a short packet is received, and so dies with a SIGBUS. While I'm here, change two other syslog messages to be more informative: use dotted quad rather than hex notation for IP addresses, and include the source IP in the 'bad from port' message. PR: bin/14844 Reviewed by: dwmalone
* Note that the root filesystem better be on the first partition for itwilko2000-12-221-1/+4
| | | | | | to be bootable Triggered by: questions on -alpha
* Teach man(1) how to look inside compressed manualsru2000-12-222-70/+56
| | | | | | for preprocessor directives. Avoid use of cat(1). PR: bin/23585
* Update the date of last change.obrien2000-12-221-1/+1
| | | | Submitted by: ru
* Warn if the size of the remote file isn't known.des2000-12-221-2/+11
| | | | | | | If the -R option was specified, don't truncate the local file even if its mtime is incorrect. PR: bin/23719
* Document FTP_LOGIN.des2000-12-221-0/+2
|
* Check the FTP_LOGIN environment variable before falling back ondes2000-12-221-0/+2
| | | | FTP_ANONYMOUS_USER.
* Hostnames are case-insensitivebrian2000-12-221-1/+2
|
* Add ACPI AC adaptor and ACPI Control Method Battery.takawata2000-12-227-3/+484
| | | | And install notify handler for thermal zone .
* Remove COMPAT_OLDPCI.joe2000-12-227-7/+0
|
* Add the -bzip and -I flags as aliases for -y for Red Hat compatibility.obrien2000-12-222-1/+5
|
* Merged from Makefile.i386 revision 1.217.kato2000-12-221-2/+2
|
* Merged from Makefile.i386 revision 1.216.kato2000-12-221-6/+6
|
* Merged from files.i386 and options.i386 revisions 1.341 and 1.141,kato2000-12-222-1/+3
| | | | respectively.
* Merge vendor/device information from another database, but keep themsmith2000-12-221-84/+662
| | | | | | | | | | | current format. The new database also has subvendor/subdevice ID information, which we aren't using for now. This adds 272 new vendors and 376 new device identifiers, as well as cleaning out some of the bad entries in the previous revision. We now combine data from: http://www.yourvote.com/pci http://members.hyperlink.com.au/~chart/pci.htm
* Use the canonical spelling for the path to sys.obrien2000-12-224-8/+8
|
* Fix printf(1) for cases where a long string with no format specifiers isben2000-12-211-4/+16
| | | | | | followed by a %d (probably others too) format specifier. Reviewed by: audit
* * Rename M_WAIT mbuf subsystem flag to M_TRYWAIT.bmilekic2000-12-2151-197/+198
| | | | | | | | | | | | | | | | | | This is because calls with M_WAIT (now M_TRYWAIT) may not wait forever when nothing is available for allocation, and may end up returning NULL. Hopefully we now communicate more of the right thing to developers and make it very clear that it's necessary to check whether calls with M_(TRY)WAIT also resulted in a failed allocation. M_TRYWAIT basically means "try harder, block if necessary, but don't necessarily wait forever." The time spent blocking is tunable with the kern.ipc.mbuf_wait sysctl. M_WAIT is now deprecated but still defined for the next little while. * Fix a typo in a comment in mbuf.h * Fix some code that was actually passing the mbuf subsystem's M_WAIT to malloc(). Made it pass M_WAITOK instead. If we were ever to redefine the value of the M_WAIT flag, this could have became a big problem.
* Greatly speed up the modules `make obj' phase.obrien2000-12-212-12/+12
|
* Greatly speed up the module `depend' phase.obrien2000-12-212-12/+12
|
* Add pecoff directory.takawata2000-12-211-1/+1
| | | | Submitted by:nyan
* mdoc(7) police: simplify construct.ru2000-12-211-4/+1
|
* Re-Enable OSD_PRIORITY_GPE. Now 20001215 has been commited.takawata2000-12-211-2/+0
|
* Resolve conflicts from the ACPI CA 20001215 vendor import.msmith2000-12-2111-67/+61
|
* This commit was generated by cvs2svn to compensate for changes in r70243,msmith2000-12-21256-1082/+1182
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Update to the Intel 20001215 ACPI CA snapshot.msmith2000-12-21267-1149/+1243
| |
* | If the utmp login time is greater than the tty atime, use it to calculatebrian2000-12-212-2/+14
| | | | | | | | | | | | | | | | | | the idle time instead of the atime. This makes entries for people that have logged in but done nothing else show up correctly. Reviewed by: markk@knigma.org
* | Add commented out entry showing use of console.info feature.phk2000-12-201-0/+2
| |
* | A last minute brucification resulted in syntax errors in the previous commit.phk2000-12-201-4/+4
| |
* | Replace logwakeup() with "int msgbuftrigger". There is littlephk2000-12-205-66/+115
| | | | | | | | | | | | | | | | | | | | | | point in calling a function just to set a flag. Keep better track of the syslog FAC/PRI code and try to DTRT if they mingle. Log all writes to /dev/console to syslog with <console.info> priority. The formatting is not preserved, there is no robust, way of doing it. (Ideas with patches welcome).
* | Disable my previous committed code for a moment.iwasaki2000-12-201-0/+2
| | | | | | | | | | Note to myself: this needs to be enabled again when newer version of ACPI is imported.
* | Add task priority definition for OSD_PRIORITY_GPE in AcpiOsQueueForExecution().iwasaki2000-12-201-0/+3
| | | | | | | | This is needed to next ACPICA import.
* | Join tree entries for Linksys PCMPC100 series as follows:toshi2000-12-201-9/+2
| | | | | | | | | | | | "Linksys" "EtherFast 10/100 PC Card (PCMPC100)" "Linksys" "Etherfast 10/100 PC Card (PCMPC100 V2)" "Linksys" "EtherFast 10/100 PC Card (PCMPC100 V3)"
* | Fix my previous commit. Remove ed_get_Linksys() function prototypes.toshi2000-12-201-2/+0
| |
* | When retrieving the time of day in nanosleep(), store it in thedeischen2000-12-203-12/+36
| | | | | | | | | | | | | | | | global time of day. This costs us nothing, but is a bit of a hack to work around a process blocking and not having the time updated by an ITIMER_PROF signal. PR: 23679
* | Change priority of procedure queueing.takawata2000-12-201-2/+2
| | | | | | | | This is needed to next ACPICA import.
* | Enable check for pending signals after calling a signal handler.deischen2000-12-203-0/+9
| | | | | | | | | | | | | | Restoration of a threads signal mask after invocation of a signal handler may allow pending signals to become deliverable. PR: 23647
OpenPOWER on IntegriCloud