summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Changed default cursor shape to non-blink mode.nyan2000-08-084-6/+12
| | | | Submitted by: Tomokazu HARADA <tkhara@osk4.3web.ne.jp>
* Fix some whitespace errors.kbyanc2000-08-081-12/+12
| | | | Pointed out by: ps
* Fixed PC-9821 NOTE supports with LINE30 mode.nyan2000-08-084-6/+32
| | | | Submitted by: Tomokazu HARADA <tkhara@osk4.3web.ne.jp>
* Replace -l with .Fl lkbyanc2000-08-081-1/+3
| | | | Pointed out by: sheldonh
* Fix the comments to properly document the PQ_MEDIUMCACHE andkbyanc2000-08-082-4/+4
| | | | | | | PQ_NORMALCACHE options. PR: 20409 Submitted by: Tony Finch <dot@dotat.at>
* Typo/spelling fixes.rnordier2000-08-081-4/+4
|
* The Yamaha CDR100 doesn't seem to like multi-LUN probing.ken2000-08-081-0/+4
| | | | | PR: kern/20347 Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
* This is an overhaul of the mode page handling in camcontrol as well askbyanc2000-08-0810-767/+852
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | related patches. These include: * Mode page editting can be scripted. This involves two things: first, if stdin is not a tty, changes are read from stdin rather than invoking $EDITOR. Second, and more importantly, not all modepage entries must be included in the change set. This means that camcontrol can now gracefully handle more intrusive editting from the $EDITOR, including removal or rearrangement of lines. It also means that you can do stuff like: # echo "WCE: 1" | camcontrol modepage da3 -m 8 -e # newfs /dev/da3 # echo "WCE: 0" | camcontrol modepage da3 -m 8 -e * Range-checking on user-supplied input values. modeedit.c now uses the field width specifiers to determine the maximum allowable value for a field. If the user enters a value larger than the maximum, it clips the value to the max and warns the user. This also involved patching cam_cmdparse.c to be more consistent with regards to the "count" parameter to arg_put (previously is was the length of strings and 1 for all integral types). The cam_cdbparse(3) man page was also updated to reflect the revised semantics. * In the process, I removed the 64 entry limit on mode pages (not that we were even close to hitting that limit). This was a nice side-effect of the other changes. * Technically, the new mode editting functionality allows editting of character array entries in mode pages (type 'c' or 'z'), however since buff_encode doesn't grok them it is currently useless. * Camcontrol gained two new options related to mode pages: -l and -b. The former lists all available mode pages for a given device. The latter forces mode page display in binary format (the default when no mode page definition was found in scsi_modes). * Added support for mode page names to scsi_modes. Allows names to be displayed alongside mode numbers in the mode page listing. Updated scsi_modes to use the new functionality. This also adds the semicolon into the scsi_modes syntax as an optional mode page definition terminator. This is needed to name pages without providing a page format definition. * Updated scsi_all.h to include a structure describing mode page headers. * Added $FreeBSD$ line to scsi_modes. Inspired by: dwhite Reviewed by: ken
* If using a DB_RECNO, db::put should return the new key if R_IAFTER isgreen2000-08-081-1/+9
| | | | | | set, not the previous key. Add $FreeBSD$, not taking this off the vendor branch because it's not on.
* - Fixed warnings and typo.nyan2000-08-082-1/+6
| | | | | | - Recognize slice type 0x24 as FAT (only PC-98). Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp>
* kevent() is not a POSIX cancellation point, so _kevent() need not bejasone2000-08-081-7/+2
| | | | | | defined. Remove some unnecessary header file inclusions.
* Update link to Making the World tutorial (now in the handbook)marko2000-08-071-2/+2
|
* Fix bug with -c optionmarko2000-08-071-0/+1
| | | | | PR: 18176 Reviewed by: Bruce A. Mah <bmah@acm.org>
* Fix a bug where we were accessing already free'd memory during node shutdown.archie2000-08-071-1/+1
| | | | Detected via: 0xdeadc0de
* Add another Bill Paul quote.jlemon2000-08-071-0/+5
| | | | Approved by: jkh
* Add a "-i" option ("insecure") which disables the checks forjdp2000-08-074-35/+36
| | | | | | | root ownership, etc. I will soon commit a companion knob for "/etc/rc.conf". Submitted by: Maxime Henrion <mhenrion@cybercable.fr>
* Document three new control messages.archie2000-08-071-1/+17
|
* Add three new control messages to the ng_ether(4) netgraph node type:archie2000-08-072-4/+83
| | | | | | NGM_ETHER_GET_ENADDR: Get the device's Ethernet address NGM_ETHER_SET_PROMISC: Enable/disable promiscuous mode NGM_ETHER_SET_AUTOSRC: Enable/disable packet source address override
* Fix some warnings. Here are more part-time volatiles - ie: data thatpeter2000-08-071-3/+3
| | | | | lives in memory and is sometimes busmastered to/from the controller. I believe these are all ok.
* Make the kqueue socket read filter honor the SO_RCVLOWAT value.jlemon2000-08-071-1/+1
| | | | Spotted by: "Steve M." <stevem@redlinenetworks.com>
* Close PR 20438. Make fix for preserving LED settings conditional onwpaul2000-08-072-6/+14
| | | | presence Intel 21143 chip.
* Add wrapper for kevent() syscalljlemon2000-08-0713-9/+95
| | | | Noted as missing by: nicolas.leonard@animaths.com
* Document return value of ENOENT for nonexistent/invalid filter entries.jlemon2000-08-071-0/+2
|
* Fix bug with timeout; previously, when attempting to poll the kqueue byjlemon2000-08-071-14/+22
| | | | | | | | | | | | | | | passing a zero-valued timeout, the code would always sleep for one tick. Change code to avoid calling tsleep if we have no intention of sleeping. Bring in bugfix from sys_select.c, r1.60 which also applies here. Modify error handling slightly; passing in an invalid fd will now result in EBADF returned in the eventlist, while an attempt to change a knote which does not exist will result in ENOENT being returned. Previously such attempts would fail silently without notification. Pointed out by: nicolas.leonard@animaths.com Rick Reed (rr@yahoo-inc.com)
* To make compilable without -DINET6.ume2000-08-072-0/+4
| | | | | PR: bin/20407 Submitted by: Patrick Bihan-Faou <patrick@mindstep.com>
* Make the update target consistent; both ports and doc are updatedsheldonh2000-08-071-1/+6
| | | | | | | | | | | if their SUPFILE variables are defined _and_ NO_PORTSUPDATE and NO_DOCUPDATE respectively are not defined. Previously, only ports was updated and there was no way to prevent this without undefining its SUPFILE variable. PR: 17514 Reported by: Udo Erdelhoff <ue@nathan.ruhr.de>
* Adjust TCP checksum rather than compute it afresh.ru2000-08-072-8/+16
| | | | Submitted by: Erik Salander <erik@whistle.com>
* Use ``diff -w'' for setuid.{to,yester}day comparisonsbrian2000-08-071-1/+1
| | | | rather than ``diff -b''.
* Back this one out until I can fix _all_ of the headers. The headers suregreen2000-08-072-2/+2
| | | | are shpxed quite nicely.
* Add workaround for livelock problem when starting APs.tegge2000-08-072-0/+8
| | | | | | | | With more than 1 AP present, an AP could fail to properly release the mp lock before waiting for smp_started to become nonzero. With early startup of APs, the BSP could fail to properly release the mp lock before waiting for smp_started to become nonzero.
* Don't use kern.disks sysctl on PC-98 because the wd driver doesn't callnyan2000-08-071-0/+4
| | | | disk_create() function.
* Update the usage string to reflect -n as an option.ps2000-08-071-1/+1
|
* Actually make syslogd understand the new -n option by putting itps2000-08-071-1/+1
| | | | | | in getopt. Submitted by: Clive Lin <clive@CirX.ORG>
* 0xA0 = Suspend to disk.joe2000-08-072-0/+2
|
* Save and restore the registers SOF and FRAMENUMBER on suspend. In somen_hibma2000-08-072-5/+15
| | | | | | | | | cases the registers are not correctly set on resume. This solves the problem of USB failing after resuming a machine. Submitted by: mike+fbsd@medianstrip.net PR: 18261
* Regen.n_hibma2000-08-062-7/+30
|
* New idsn_hibma2000-08-061-0/+4
| | | | | Submitted by: Scott Long PR: 18897
* Some new ids, from NetBSDn_hibma2000-08-061-1/+2
|
* Type in FreeBSD capitalizationimp2000-08-061-1/+1
|
* Add entry on the installkernel changes as well as more grumpy notesimp2000-08-061-1/+18
| | | | | about needing to be on -current to track -current. Tweak the 4.0 -> 4.x version stuff.
* sync CCR register definitions with creative sourcescg2000-08-061-1/+3
|
* Add experimental code for ATA100 support on:sos2000-08-063-64/+199
| | | | | | | | | | | Promise Ultra100 / Fasttrak100 HighPoint HPT370 controllers (fx Abit KA7-100 onboard ctrl, Abit HotRod 100) Intel ICH2 (Intel 815E based motherboards) So far I can read >90MB/s on the Promise and the HPT370. I can write >64MB/s on the promise and >50MB/s on the HPT370 so it seems writing is still done in ATA66 mode :( The ICH2 support is untested as of yet...
* Missed one misspelling in previous commit.archie2000-08-061-1/+1
|
* Use tsleep instead od DELAY in probe when not in boot.sos2000-08-061-1/+4
| | | | This fixes the uptil 30s hangs on PCCARD ata device probes.
* Cleaning conflicting module tree. Use modules/3dfx instead.cokane2000-08-061-22/+0
|
* Fix clean to remove pci.hcokane2000-08-061-7/+11
| | | | | | Numerous style fixes Submitted by: Marcel Moolenaar <marcel@cup.hp.com>
* fix the staticy sound issuecg2000-08-061-154/+140
| | | | | | use timer instead of per-channel interrupts do playback like the linux driver - may fix nmi-with-ecc issue
* Remove sequence checking in the burner support.sos2000-08-062-49/+4
| | | | | This was really a leftover from the wormcontrol days, it is no longer needed when using burncd.
* Be a bit more restrictive in using multisector transfers.sos2000-08-061-4/+6
|
* Good, fixing the header showed incorrect usage of it! #define _KERNELgreen2000-08-061-0/+3
| | | | here for the include of sys/select.h.
OpenPOWER on IntegriCloud