aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* libipsec and IPsec related apps. (and some KAME related man pages)Yoshinobu Inoue2000-01-0673-10/+18408
| | | | | | | | Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project Notes: svn path=/head/; revision=55505
* Change REGENTS -> AUTHOR in the copyright.Daniel Eischen2000-01-061-1/+2
| | | | | | | | | | | Add $FreeBSD$. I missed this file in a previous commit. Pointed out by: tg Notes: svn path=/head/; revision=55504
* Now that chown is no longer available, we shouldn't try to use it.Mike Smith2000-01-061-49/+31
| | | | | | | | | | | | | Improve the internal mknod() to understand being passed an (optional) user:group specification. Don't apply root:wheel to nodes explicitly anywhere, it's the default. Remove an odd looking uucp:wheel assignment, as it's inconsistent with all the other tty?? devices. Notes: svn path=/head/; revision=55503
* remove most of PF_INET6 description. add references only.Jun-ichiro itojun Hagino2000-01-061-138/+4
| | | | | | | Suggested by: Ruslan Ermilov <ru@FreeBSD.org> Notes: svn path=/head/; revision=55502
* Cleanups: remove stale comments left over from when I cloned the ADMtekBill Paul2000-01-062-17/+1
| | | | | | | | driver, remove unused member of kue_chain struct also left over from ADMtek driver. Notes: svn path=/head/; revision=55501
* Checkpoint of today's changes. We now get to the point where the pccardWarner Losh2000-01-067-137/+121
| | | | | | | | | | | | | | | | | | | | layer is trying to access the now unexistant chip functions. o Added DEVPRINTF which is like DPRINTF only calls device_printf. o Made it possible to define PCICDEBUG o Remove ph_parent and use the softc pointer sc instead in pcic_handle. o Remove all references to dv_xname o Add some debug messages. o enable MI attach/detach calling for pccard. o convert pcic_chip_socket_{en,dis}able to pcic_{dis,en}able_socket and connect them to the power_{enable,disbale}_socket. o Remove pccard pointer from pcic_softc. o GC some unused pccard functions. o Convert pccard_chip_socket* to POWER_ENABLE_SOCKET o kill pccard_attach_args. o power_if.m updates. More to come. Notes: svn path=/head/; revision=55500
* Add power_if.[cho] generation for new pccard system.Warner Losh2000-01-061-0/+15
| | | | | | | Also added commented out xe driver pending change. Should be benign. Notes: svn path=/head/; revision=55499
* Merge most of FDC_YE into the mainline driver.Warner Losh2000-01-065-153/+63
| | | | | | | | | | | | | | | | | | | | o Rename FDC_PCMCIA to FDC_NODMA to allow systems that don't have dma for floppies. o Remove all but two FDC_YE ifdefs. They aren't needed. o Move defines for YE_DATAPORT to fdreg.h. Not fixed: o The pccard probe/attach. However, motivated individuals can more easily add this now. This is a merge of changes I've had in my tree for a long time. These fixes were tested on my VAIO with its normal floppy. Please let me know if I broke anything. Prodded by: Peter Wemm <peter@freebsd.org> Notes: svn path=/head/; revision=55498
* Revert rev 1.3. chown(8)-like functionality has been added to mknod(8)David E. O'Brien2000-01-061-6/+1
| | | | | | | | and MAKEDEV(8) will be changed to not use chown(8), thus removing the depdendance on a having /usr mounted. Notes: svn path=/head/; revision=55497
* Add chown(8)-like functionality. This will allow us to not use chown(8)David E. O'Brien2000-01-062-6/+98
| | | | | | | in MAKEDEV(8) -- removing the need of having /usr mounted. Notes: svn path=/head/; revision=55496
* allow mixer-only devices - ie, devices with no play/rec channelsCameron Grant2000-01-061-15/+25
| | | | Notes: svn path=/head/; revision=55494
* bring in description for KAME IPv6 changes.Jun-ichiro itojun Hagino2000-01-062-4/+160
| | | | | | | | | XXX it looks that sysctl.3 lacks most of PF_INET items. Reviewed by: shin Obtained from: KAME (netbsd-current) Notes: svn path=/head/; revision=55493
* implement OSF_GET_MAX_UPROCS portion of osf1_getsysinfo() for AT&T kshAndrew Gallatin2000-01-062-2/+10
| | | | Notes: svn path=/head/; revision=55492
* Shutup complaints about unimplemented SVR4 ioctlsAndrew Gallatin2000-01-061-0/+8
| | | | Notes: svn path=/head/; revision=55491
* Make example for handling "-##" work and comply with style(9). StillTim Vanderhoek2000-01-061-5/+12
| | | | | | | | | doesn't handle nastier corner cases such as "-j3 -33" correctly. <shrug> PR: docs/12994 (James Howard <howardjp@wam.umd.edu>) Notes: svn path=/head/; revision=55490
* make_devices(): Create devices with permissions 640, not 740.Greg Lehey2000-01-051-10/+10
| | | | | | | Pointed-out-by: "Rodney W. Grimes" <freebsd@gndrsh.dnsmgr.net> Notes: svn path=/head/; revision=55489
* Update copyright date for Y2K (did the other files but forgot this one).Bill Paul2000-01-051-1/+5
| | | | | | | | Also update comments to credit to Rob Furr with donating the adapter that I used for testing. No code changes. Notes: svn path=/head/; revision=55488
* Don't tsleep with PCATCH, it's a wonderful way to hang the system.Greg Lehey2000-01-051-5/+6
| | | | | | | Reported-by: Bernd Walter <ticso@cicely.de> Notes: svn path=/head/; revision=55487
* Add missing header file.Greg Lehey2000-01-051-0/+1
| | | | | | | Not-reported-by: peter Notes: svn path=/head/; revision=55486
* Add documentation for SVR4 options in LINT.Mark Newton2000-01-053-9/+57
| | | | Notes: svn path=/head/; revision=55485
* Unbreak LINT -- typedefs from signal.h are needed to make prototypes inMark Newton2000-01-051-0/+1
| | | | | | | this file make sense. Notes: svn path=/head/; revision=55484
* don't panic if channel init fails, report and fail gracefullyCameron Grant2000-01-052-3/+10
| | | | Notes: svn path=/head/; revision=55483
* Fix a few obscure memory leaks.Archie Cobbs2000-01-051-5/+11
| | | | Notes: svn path=/head/; revision=55481
* Cast myminor/mymajor results to u_int soMatt Jacob2000-01-051-1/+2
| | | | | | | | comparisons to longs work correctly on alpha. Notes: svn path=/head/; revision=55479
* Export the nselcoll counter via the kern.nselcoll sysctl so we can seePeter Wemm2000-01-051-1/+3
| | | | | | | | | just how bad it gets in various situations. Reminded by: adrian Notes: svn path=/head/; revision=55478
* Support filesystems with the not-so-new "filetype" feature. ThisBruce Evans2000-01-052-132/+190
| | | | | | | | feature gives the d_type field for struct dirent. We used to panic in ext2_readdir() for filesystems with this feature. Notes: svn path=/head/; revision=55477
* Actually remove unrequired SRCS.Bruce Evans2000-01-052-2/+0
| | | | Notes: svn path=/head/; revision=55476
* Fixed the type of dllockinit() (const unpoisoning).Bruce Evans2000-01-051-4/+1
| | | | | | | | Use long lines instead of lines split with backslash-newline in synopsis. My synopsis checker doesn't understand backslash-newline. Notes: svn path=/head/; revision=55475
* Fixed missing include in synopsis.Bruce Evans2000-01-052-4/+4
| | | | | | | | Use long lines instead of lines split with backslash-newline in synopsis. My synopsis checker doesn't understand backslash-newline. Notes: svn path=/head/; revision=55474
* Fixed missing include in synopsis.Bruce Evans2000-01-051-0/+1
| | | | Notes: svn path=/head/; revision=55473
* Correct the vendor ID for KLSI: it's actually 0x5e9. 0x3e8 is theBill Paul2000-01-055-15/+23
| | | | | | | | vendor ID for Aox Inc, which makes the controller engine and/or firmware for the KLSI chip. Notes: svn path=/head/; revision=55472
* Make the evil broken pnpbios compensation slightly less evil.Peter Wemm2000-01-052-30/+40
| | | | | | | | | | This is the hack that compensates for when bios vendors "forget" to include the fdc control (0x3f7) port in their io port mappings. Instead of accessing ports outside of a range allocated to a handle, simply allocate the port directly. It even shows up in the probe.. Notes: svn path=/head/; revision=55471
* Refreshed the silly copy of <sys/types.h>. It was 3 years out of date.Bruce Evans2000-01-051-24/+38
| | | | Notes: svn path=/head/; revision=55470
* Refreshed the silly copy of <sys/disklabel.h>. The old copy wasBruce Evans2000-01-052-320/+638
| | | | | | | | seriously out of date. It older than Lite1 (it has an undeprecated DISKTAB but not _PATH_DISKTAB). Notes: svn path=/head/; revision=55469
* Doh. Forgot to add the entry for the 3Com 3c19250 to the supportedBill Paul2000-01-051-0/+2
| | | | | | | devices table. Notes: svn path=/head/; revision=55468
* Do not attempt to load the firmware a second time. If you reboot yourBill Paul2000-01-051-1/+59
| | | | | | | | | | | | | | | | | | | | | | | machine but leave your KLSI adapter plugged into your USB port, it may stay powered on and retain its firmware in memory. Trying to load the firmware again in this case will wedge the chip. Try to detect this in the kue_load_fw() routine and bail if the firmware is already loaded and running. Also, in the probe/match routine, force the revision code to the hardware default and force a rescan of the quirk database. This is necessary because the adapter will return a different revision code if the firmware has been loaded. Without the firmware, the revision code is 0x002. With the firmware, the revision code is 0x202. This confuses the quirk mechanism, which won't match a quirk to a device unless the revision code agrees with the quirk table entry. This makes probe/attach of these devices somewhat more reliable. Also add a few comments about the device's operation. Notes: svn path=/head/; revision=55467
* Refreshed the silly copy of <sys/dirent.h>. _KERNEL was still spelledBruce Evans2000-01-051-6/+7
| | | | | | | | | | KERNEL, and the changes to remove the <sys/types.h> prerequisite had not reached here. Removed unused/wrong include of <sys/types.h> in synopsis. Notes: svn path=/head/; revision=55466
* Refreshed the silly literal copy of <sys/mtio.h>. _KERNEL was stillBruce Evans2000-01-051-14/+30
| | | | | | | spelled KERNEL... Notes: svn path=/head/; revision=55465
* Zap pci_map_dense() and pci_map_bwx() - they were for compatability butPeter Wemm2000-01-053-38/+0
| | | | | | | | are not used. All the drivers that use memory mapped IO on the Alpha have been ported already. Notes: svn path=/head/; revision=55464
* Fixed missing includes in synopsis. <sys/file.h> went missing when KERNELBruce Evans2000-01-051-2/+3
| | | | | | | | was not updated to _KERNEL. Actually including <sys/file.h> as specified never actually worked, since a prerequisite was missing. Notes: svn path=/head/; revision=55463
* Patch up some of the evilness left over from the early newbus porting.Peter Wemm2000-01-053-166/+288
| | | | | | | | | | | | | In particular: - Don't leave resources allocated in the probe routine. Allocate them during probe and release them. Probe's job is to identify devices only. - Don't abuse the ivars pointer.. (!). Create real ivars and use the proper access system. (the bus_read_ivar method) - Don't add the children until attach() has successfully grabbed the hardware, otherwise there are potential leaks if attach fails. Notes: svn path=/head/; revision=55462
* Fixed missing include in synopsis.Bruce Evans2000-01-051-1/+2
| | | | | | | | Removed superfluous quoting of function name in .Fo macro. My synopsis checker doesn't understand it. Notes: svn path=/head/; revision=55461
* KERNEL -> _KERNELEivind Eklund2000-01-055-5/+5
| | | | Notes: svn path=/head/; revision=55460
* mdoc(7)'fyAlexey Zelkin2000-01-051-10/+13
| | | | | | | sort XREFs Notes: svn path=/head/; revision=55459
* mdoc(7)'fyAlexey Zelkin2000-01-051-68/+71
| | | | Notes: svn path=/head/; revision=55458
* Don't build with X support if DESTDIR is defined. This preventsMarcel Moolenaar2000-01-051-21/+18
| | | | | | | | | | | breaking a cross-build caused by taking the X libraries on the build machine. In general this means that we never compile with X support. The user has to manually compile doscmd for that. Suggested by: bde, imp (among others) Notes: svn path=/head/; revision=55457
* Synced with sys/i386/isa/clock.c rev 1.149.KATO Takenori2000-01-053-27/+81
| | | | Notes: svn path=/head/; revision=55456
* Synced with sys/i386/i386/userconfig.c rev 1.166.KATO Takenori2000-01-051-0/+1
| | | | Notes: svn path=/head/; revision=55455
* Synced with sys/i386/conf/GENERIC rev 1.222.KATO Takenori2000-01-052-0/+2
| | | | Notes: svn path=/head/; revision=55454
* Missed a filename variable quote in rcPeter Wemm2000-01-051-1/+1
| | | | Notes: svn path=/head/; revision=55453