summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 'duak' -> 'dual'billf2000-02-211-1/+1
|
* Spell out '3' as 'three'billf2000-02-211-1/+1
|
* Fix the changer code, dont wait for device ready on unload, itsos2000-02-213-20/+38
| | | | | | wont become ready as there is no media - doh. Update the command name reporting.
* Fix several problems with EPSV (verbosity, one-per-session, missing place)ache2000-02-213-6/+14
| | | | Approved by: jkh
* Fix an __asm operand constraint which broke the -O3 and -O0 builds.bsd2000-02-212-12/+12
| | | | | Submitted by: Seigo Tanimura <tanimura@freebsd.org> Approved by: jkh
* Cleanup manpage a bit.ru2000-02-211-6/+6
|
* Fix a buffer overflow.ru2000-02-211-2/+2
| | | | | | PR: 16415 Submitted by: Kevin Day <toasty@dragondata.com> Approved by: jkh
* (Null commit) rev 1.83 actually fixes the panic in theru2000-02-210-0/+0
| | | | sl_compress_tcp() due to the NULL pointer dereference.
* [[ Forced commit due to /tmp/msg botch ]]imp2000-02-210-0/+0
| | | | | | | | | | | | | | Minor improvements in pcic. o Change IODF_ACTIVE to MDF_ACTIVE when dealing with memory. This is a text only change. o Better spl safty, ala comments from Bruce and the nomads. o Default to resetting the pcic on resume. This is needed for newer machines and may fix jordan's vaio problem. o i/o mapping verbosity under bootverbose. o Added comment about irqs that should have been in prior commit. o Added sanity check on memory rid. Approved by: Der Uber Hubbard
* /tmp/msgimp2000-02-214-33/+35
|
* Fix grammar error (repeated word).`billf2000-02-211-1/+1
| | | | | PR: bin/16810 Submitted by: Will Andrews <andrews@technologist.com>
* Newbus-ify the USR Sportster TA Intern driver.gj2000-02-213-57/+301
| | | | | | | | | | | | | | | | | | Enable the driver in sys/conf/files.i386. In isa/isavar.h increase ISA_NPORT from 32 to 50. This is required because this brain-damaged card maps 49 (!) port ranges. This does not have a negative impact because this value only specifies the maximum number of entries in a linked list and not the size of an array which is allocated in all drivers. The register/fifo access routines were not newbus-ified because 1) I knew that the old code worked and is simpler and more efficient 2) the if_ed driver does something similar and 3) the newbus macros collapse to inb/outb anyway. Reviewed and tested by: hm Approved by: jkh
* Make the doc menu work again by checking the right variables.jkh2000-02-202-30/+30
|
* Now I remember why I didn't write out the gateway in the DHCP case;jkh2000-02-202-2/+2
| | | | it was a feature.
* Fix possible SLIOCSUNIT panicache2000-02-201-0/+1
| | | | | | PR: 16564 Submitted by: ru Approved by: jkh
* Don't forget to reset the hardware debug registers when a process thatbsd2000-02-2014-3/+364
| | | | | | | | | | was using them exits. Don't allow a user process to cause the kernel to take a TRCTRAP on a user space address. Reviewed by: jlemon, sef Approved by: jkh
* Followup to previous commit; change fd_mask from signed to unsigned aspeter2000-02-201-1/+1
| | | | | | | | | it should have been to start with. The implications of that are not pleasant when combined with >> as it breaks on multiples of NFDBITS. Right shifting of a signed value fills with a copy of the sign bit, not a zero. Reported by: bde
* Skeleton framework for network driver and initial probing of device.dmlb2000-02-202-0/+897
|
* Update the documentation to reflect Bill Paul's latest changes.n_hibma2000-02-205-11/+4
|
* Move the warning on wrong IRQ values to the right place, before anyn_hibma2000-02-204-32/+32
| | | | | | | resource allocation is attempted. It will present the user with a message that he has to switch on USB support in his BIOS.
* Fix select(2) for the Alpha. (!!) It was never returning true forpeter2000-02-202-9/+12
| | | | | | | | | | | | | fd's in the range of 32-63, 96-127 etc. The first problem was the FD_*() macros were shifting a 32 bit integer "1" left by more than 32 bits. The same problem happened in selscan(). ffs() also takes an int argument and causes failure. For cases where int == long (ie: the usual case for x86, but not always as gcc can have long being a 64 bit quantity) ffs() could be used. Reported by: Marian Stagarescu <marian@bile.skycache.com> Reviewed by: dfr, gallatin (sys/types.h only) Approved by: jkh
* Hide the "devclass_alloc_unit: %s%d already exists, using next available..."sos2000-02-201-1/+2
| | | | | | behind bootverbose Approved by: jkh
* Fix the fvwm desktop option (for all 3 of us who use it).jkh2000-02-203-3/+3
|
* Docfix: Note krb5 flags.jkh2000-02-201-0/+1
| | | | | PR: 16818 Submitted by: martti.kuparinen@nomadiclab.com
* Fix buffer overrun in pcfclock_read(). The submitter is the originalsheldonh2000-02-201-0/+3
| | | | | | | | author of the affected code. PR: 16552 Submitted by: Sascha Schumann <sascha@schumann.cx> Approved by: jkh
* Fix version # for ipfilter.jkh2000-02-201-1/+1
| | | | | PR: 16818 Submitted by: martti.kuparinen@nomadiclab.com
* Do not conditionalize function prototype definition for functions wejasone2000-02-201-6/+0
| | | | | | | implement. Noticed by: Thimble Smith <tim@mysql.com> Approved by: jkh
* Fix 'camcontrol inquiry'. The inquiry data structure changes (increased token2000-02-203-3/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 256 bytes) caused it to break on many devices. The SCSI spec says that for commands with 8-bit length fields, a value of 0 means 256 bytes. As it turns out, many devices don't deal with that properly. Some interpret the 0 as 0, and return no data. Others return more than 256 bytes of data, and cause an overrun. The fix is to tell the device we've only allocated SHORT_INQUIRY_LENGTH (36 bytes) of inquiry data, instead of sizeof(struct scsi_inquiry_data). camcontrol.c: Change inq_len in the call to scsi_inquiry() to SHORT_INQUIRY_LENGTH, and add a long comment explaining the reason for the change. scsi_all.h: Add a comment above the definitinon of SHORT_INQUIRY_LENGTH alerting people that it is both the initial probe inquiry length, and the minimum amount of data needed for scsi_print_inquiry() to function. scsi_all.c: Add a comment about SHORT_INQUIRY_LENGTH being the minimum amount of data needed for scsi_print_inquiry() to function. Reviewed by: gibbs Approved by: jkh Reported by: "John W. DeBoskey" <jwd@unx.sas.com>
* - As jail(8) has been almost completely rewritten, prepend another copyright/rwatson2000-02-201-7/+58
| | | | | | | | | | | | | | | | | | | | | BSD-style license, as an add-on to phk's beerware license. Please fedex some beer to phk. - Add a ``make depend'' line to the jail-building, which fixes openssl, among other things. Suggested by: kris - Add ``newaliases'' to the list of things to do when setting up a new jail, so that the jailed sendmail doesn't complain. - Correct references to ``kern.jail.set_hostname_allowed'' which now read ``jail.set_hostname_allowed''. - Add a reference to sysctl.conf where the sysctl can easily be set in a persistent way. - Add a list of cross references to the man page. - Fix a formatting nit or two.
* Disable chflags() from within jail() so that root within jail can't makerwatson2000-02-201-1/+1
| | | | | | | a mess in securelevel environments. Results in one warning during /etc/rc as it attempts to remove file flags, but this is harmless. Approved by: High Lord Hubbard
* If user says they're in the USA, record that fact in /etc/make.confjkh2000-02-1914-0/+128
|
* Fixed a little bit strange INET6 output.shin2000-02-191-0/+1
| | | | | Specified by: Ben Smithurst <ben@scientia.demon.co.uk> Approved by: jkh
* detect deleted tty lines in /etc/ttys.alfred2000-02-191-1/+25
|
* Use static buffer to save source route hostnames.shin2000-02-193-3/+3
| | | | Approved by: jkh
* Print "Trying ..." for each host. Also cleanups for error printing.shin2000-02-193-24/+9
| | | | | | Approved by: jkh Submitted by: Ben Smithurst <ben@scientia.demon.co.uk>
* Removed bogus line.shin2000-02-191-1/+0
| | | | | Specified by: ache Approved by: jkh
* Change IPv6 scoped addr format again based on recent standard discussion.shin2000-02-195-12/+9
| | | | | | | | | Sorry for the flapping, but no change will be done for 4.0 anymore. Official standard will be published around April or later. If different format would be adopted at that time, then support for the new format will be added to the succeeding FreeBSD 4.x. Approved by: jkh
* Added IPv6 name resolving support for utmp logging.shin2000-02-191-15/+42
| | | | Approved by: jkh
* PS/2 mice are a lot more common than serial mice now; use /dev/psm0jkh2000-02-191-1/+1
| | | | as default rather than /dev/cuaa0
* no need to fix moused setting here; fix in defaultsjkh2000-02-193-3/+0
|
* Whoops, forgot to delete the ! operator in the reversed conditionaljkh2000-02-193-3/+3
| | | | for anonftp. Fix.
* Remove the vga-pci driver. It serves no purpose and it hides the hardwaredfr2000-02-195-56/+9
| | | | | | | | from useful drivers such as the 3D DRI drivers I will be porting for hardware accelerated OpenGL. The hardware will still be reported during boot using the nomatch system. Approved by: jkh
* 1. If checking for directory-ness, check "dir" and "dir/" to catchjkh2000-02-191-0/+2
| | | | | | the case where we have a symlink pointing at a dir. 2. Restore stomped character before returning in make_hierarchy()
* 1. If checking for directory-ness, check "dir" and "dir/" to catchjkh2000-02-191-2/+8
| | | | | | the case where we have a symlink pointing at a dir. 2. Restore stomped character before returning in make_hierarchy()
* Re-add "May" to the list of dates supported.alfred2000-02-181-2/+2
| | | | Approved by: jkh
* Update the ata driver to take more advantage of newbus, thissos2000-02-1817-612/+1106
| | | | | | | | | | | | | | | | was needed to make attach/detach of devices work, which is needed for the PCCARD support. (PCCARD support is still not working though, more to come on that) Support the CMD646 chip which is used on many alphas, sadly only in WDMA2 mode, as the silicon is broken beyond belief for UDMA modes. Lots of cosmetic fixes here and there. Sorry for the size of this megapatchfromhell but it was not possible otherwise... newbus patches based on work from: dfr (Doug Rabson)
* Fix up a few documentation nits in jail(8), as well as improve therwatson2000-02-181-24/+72
| | | | | | instructions so as to reduce warnings during jail startup, etc. Add a somewhat bolder warning recommending the use of kern.jail.set_hostname to limit jail renamining.
* Invert the meaning of two questions in the Standard installation so justjkh2000-02-183-9/+12
| | | | | whapping "Yes" by default does not turn you into an anonymous FTP-supporting gateway machine. Those aren't the right "defaults."
* Correct an error message presumably as a result of cut/paste.peter2000-02-181-1/+1
| | | | kvm_getfiles() referred to itself as kvm_getprocs().
* Dont allow burn when format not selected.sos2000-02-181-6/+9
| | | | | | | | Use the right format in printfs. Fix the partial write error (the res variable). Reminder by: (Bill Fumerola <billf@FreeBSD.org>)
OpenPOWER on IntegriCloud