summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Minor man page formatting changes and improvements.rwatson2000-04-172-5/+12
| | | | Suggested by: chris
* Connect pam_opie to the build.kris2000-04-172-0/+2
|
* Add pam_opie, a PAM module using the OPIE one-time-password scheme.kris2000-04-172-0/+150
| | | | Submitted by: Jim Bloom <bloom@acm.org>
* Allow applications to disable the installation of the atexit() handlerkris2000-04-172-2/+13
| | | | | | which cleans up OPIE lockfiles. This is required for pam_opie. Submitted by: Jim Bloom <bloom@acm.org>
* Code compiles and installs 100% better if included in the Makefile.rwatson2000-04-163-0/+16
| | | | Suggested by: Voices in my head.
* Add sparcnetbsd support and cleanup style so that this looks nearlysteve2000-04-161-7/+9
| | | | identical to Makefile.sparc.
* Fix a typo (aout32.o -> aout32.c). Add support for NetBSD/Sparc andsteve2000-04-161-4/+13
| | | | sparc64.
* Create <event.h> -> <sys/event.h> link that I forgot earlier.jlemon2000-04-161-2/+2
| | | | Reminded by: ache
* Introduce userland utilities to set and get extended attributes. Theserwatson2000-04-164-0/+342
| | | | | | | | utilities do not present the world's greatest interface, and will undoubtably change soon. However, they do let people experiment with extended attributes, and provide samples of how to use the syscalls. Obtained from: TrustedBSD
* Some more i386-only BIOS-friendliness:msmith2000-04-1615-89/+736
| | | | | | | | | - Add support for using the PCI BIOS functions for configuration space accesses, and make this the default. - Make PNPBIOS the default (obsoletes the PNPBIOS config option). - Add two new boot-time tunables to disable each of the above.
* Add mention of extended attributes in release notes.rwatson2000-04-162-0/+12
| | | | Suggested by: kkenn
* Second patch that prepares for the addition of thegroudier2000-04-161-301/+303
| | | | | | | | | | | | multi-firmware support. This patch just changes numerous names in the driver sources and is actually nilpotent. This has been checked by comparing the generated assembly code. The names that have been changed are related to the script names. They were named `script' and `script H'. They are now named respectively `script A' and `script B'.
* Change tail to use kqueue/kevent to obtain a notification whenjlemon2000-04-161-22/+51
| | | | the file changes (when doing tail -{f|F}).
* Add files that I forgot to `cvs add' on last commit.jlemon2000-04-163-0/+1111
|
* Replace the POLLEXTEND extensions with the kqueue() mechanism.jlemon2000-04-162-25/+29
|
* Introduce kqueue() and kevent(), a kernel event notification facility.jlemon2000-04-1629-18/+682
|
* Internat diff reducer.markm2000-04-161-0/+1
|
* Remove unneeded #includejlemon2000-04-161-1/+0
|
* Do not pull in <sys/select.h>, it isn't required.jlemon2000-04-161-1/+2
|
* Add a config.SH for the sparc and sparc64 ports. The ones for the sparc64steve2000-04-164-0/+2400
| | | | | | might need some adjusting for the size of long long and long double. Reviewed and approved by: markm
* This commit was generated by cvs2svn to compensate for changes in r59281,markm2000-04-161-0/+90
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of OpenSSL v0.9.5amarkm2000-04-164-5/+97
| |
* | Convert pcvt to use the newbus driver framework, options COMPAT_OLDISAhm2000-04-165-187/+157
| | | | | | | | is no longer required to compile pcvt.
* | Remove debugging coderoger2000-04-161-1/+1
| |
* | Fix typo in interrupt handling code and fix bug in setting of adelayroger2000-04-164-14/+24
| |
* | Make vinum compile again using the "cast to buf" workaround.phk2000-04-163-20/+21
| | | | | | | | Approved by: grog
* | Overlooked a s/b_act/bio_queue/ substitution due to targ not being in LINT.phk2000-04-161-2/+2
| | | | | | | | Spotted by: mjacob
* | Add the scsi-target driver to LINT.phk2000-04-163-0/+3
| |
* | - Define registers as offsets from register base rather than offsets frommdodd2000-04-162-14/+10
| | | | | | | | | | | | | | EISA slot base. - Remove unused IOPORT resource. Reviewed by: jlemon
* | Include <sys/bus.h>, which is needed after Doug's latest object changes.imp2000-04-162-0/+4
| |
* | Allow the firewall rules to be established by a shell script insteadbsd2000-04-161-1/+3
| | | | | | | | | | | | | | of forcing them to be an 'ipfw' rules file. This allows one to determine interface addresses dynamically, etc. The rule is if the file referenced by ${firewall_type} is executable, it is sourced, but if it is just readable, it is used as input to 'ipfw' like before.
* | Change "FreeBSD 5.0" to ".Fx 5.0"chris2000-04-161-1/+2
| |
* | Fix two bugs in extended attribute support for UFS/FFS:rwatson2000-04-161-2/+5
| | | | | | | | | | | | | | | | | | | | o Put back in {} removed during over-zealous cleanup of gratuitous debugging output during preparation for the commit. Due to the missing {}, writes on extended attributes always silently failed. Doh. o Don't unlock the target vnode if it's the backing vnode, as we don't lock the target vnode if it's the backing vnode.
* | Remove MAINTAINER.grog2000-04-162-4/+0
| |
* | Don't try to compile in INET6 support when NOINET6 is defined.steve2000-04-153-3/+12
| |
* | Use the non-asm routines (for now) on the sparc and sparc64 ports.steve2000-04-152-0/+11
| |
* | A messy commit that checkpoints the driver (not known to actually work)dmlb2000-04-151-236/+330
| | | | | | | | | | | | | | | | | | | | | | before I rip out the scheduler - whilst v. nice 'n all, it is doing the wrong job. We need something that sends commands to the card atomically so dhcp etc. works right. I've renamed and moved a lot of the scheduler code so that it is all in one place and all starts with ray_cmd_ ray_stop has some debugging crap left in - to be deleted rsn
* | Merged in a load of information from the card documentation - not finished yet.dmlb2000-04-151-121/+338
| |
* | A few comment tidy-ups.dmlb2000-04-151-13/+27
| | | | | | | | | | | | | | Add a %b printf descriptor Change the START command to DOWNLOAD to avoid confusion with start as in transmitting a packet.
* | Fix typo, extentions -> extensionsasmodai2000-04-152-2/+2
| | | | | | | | Submitted by: George Cox <gjvc@sophos.com>
* | ext2fs relies on UFS support code, and as a result also requiresrwatson2000-04-1514-0/+24
| | | | | | | | | | | | | | | | | | | | extattr.h to be included. This fixes the broken ext2fs build as of the import of extattr code. Also added $FreeBSD: $ to a couple of files that didn't have them, without which I couldn't commit this fix. Reported by: "George W. Dinolt" <gdinolt@pacbell.net>
* | Remove pccard.conf.sample from Makefile, sorry I forgot.iwasaki2000-04-151-1/+1
| |
* | Remove src/etc/pccard.conf.sample. This file is no longer used.iwasaki2000-04-151-1057/+0
| | | | | | | | | | | | The pccardd default config file is changed to /etc/defaults/pccard.conf. Approved by: imp
* | First patch that prepares for the adding of multi-firmwaregroudier2000-04-151-313/+233
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | support. Changes are rather simplifications of the SCRIPTS interface (prior to complexifying it again;) ), dead code removes and comment fixes. Code removed: - Handling of kernel variables referenced from SCRIPTS. - Handling of selection without ATN. Slightly rewritten: - Handling of illegal phase (4/5) and data overrun conditions. Simplifications: - Extended error flag and bits now only set from the C code. - Move the extended error status (xerr_status) and nego status (nego_status) outside the data structure accessed by SCRIPTS (struct dsb). - Get rid of the script status field (scr_st). - Only patch SCR_NO_OP SCRIPTS instructions to adapt SCRIPTS to actual chip capabilities. Cosmetic changes: - Miscellaneous comments in SCRIPTS. - FreeBSD_4_Bus define replaced by FreeBSD_Bus_Io_Abstraction.
* | Add include files to alpha/include directory.roger2000-04-152-0/+475
| | | | | | | | | | Eventually the i386/include and alpha/include header files for the bktr driver will be moved to a common directory.
* | Update to driver 2.11.roger2000-04-155-8/+26
| | | | | | | | | | Driver now compiles on FreeBSD/Alpha, but still requires testing. Remove a printf, submitted by Chris D. Faulhaber <jedgar@fxp.org>
* | Complete the bio/buf divorce for all code below devfs::strategyphk2000-04-1583-1444/+1474
| | | | | | | | | | | | | | | | | | | | Exceptions: Vinum untouched. This means that it cannot be compiled. Greg Lehey is on the case. CCD not converted yet, casts to struct buf (still safe) atapi-cd casts to struct buf to examine B_PHYS
* | Introduced /usr/sbin/extattrctl, a utility for managing UFS/FFS extendedrwatson2000-04-154-0/+261
| | | | | | | | | | | | | | | | | | | | attributes (recently committed). Using extattrctl, the extended attribute service may be started and stopped for specific file systems; specific attributes may be enabled or disabled, and the backing file for each attribute configured. Also, backing files may be initialized. Reviewed by: adrian, bp, freebsd-fs, the unthanked masses Obtained from: TrustedBSD
* | make mmap sort-of work. there seem to be interactions with certain hwcg2000-04-155-154/+172
| | | | | | | | | | | | | | | | | | | | drivers, so still work in progress. do various mmap-related ioctls right. improve blocksize control. bits of cleanup.
* | This commit was generated by cvs2svn to compensate for changes in r59243,obrien2000-04-15299-0/+78108
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
OpenPOWER on IntegriCloud