summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo and use Fx macro instead of literal FreeBSD.se1999-08-021-3/+4
| | | | Submitted by: charnier
* Use err[x]/warn[x] and improve error reportingbrian1999-08-021-23/+25
| | | | Submitted by: charnier
* #ifdef IPPROTO_OSPFIGP before expecting it to be defined.brian1999-08-023-3/+13
| | | | This unbreaks OpenBSD.
* Add -n option to print numeric user and group IDs instead of namessheldonh1999-08-023-9/+31
| | | | | | | | | | | | in a long (-l) listing. MFC-jockies should make sure that bde's concerns regarding the number of digits required to represent a uid_t and the use of snprintf on the associated PR have been addressed before going wild. PR: 12866 Reported by: Philip Kizer <pckizer@nostrum.com> Obtained from: NetBSD
* Filter ospf and igmp separately.brian1999-08-023-8/+50
| | | | Kind-of submitted by: phk
* Add new ports category "ftp".asami1999-08-022-2/+4
|
* Add ports-ftp.asami1999-08-022-2/+4
|
* Use Byacc rather than Bison.obrien1999-08-022-4/+2
|
* Clear flags on psuedo terminals before trying to chmod and chown them.imp1999-08-021-1/+2
|
* English fixes: consistent spacing after periods, "userland", not "user land",hoek1999-08-021-17/+18
| | | | | | other typos, ~four grammar gnits, an ironic case of incorrect parallelization, bad capitalization, an incorrect use of the infamous slash ('/'), and an unclear sentence.
* Bruce noted that the use of err(), fixed to errx() in the last commit,hoek1999-08-021-3/+6
| | | | | | | | did not specify an exit code. This implies the use of either a hand- rolled err() (Bruce's suggestion) or a random error code (my suggestion), both of which are against the style guidelines. This commit specifies the correct error code (implicitly). This also changes the error message to be a little more helpful.
* Move the specification of EDGE/LEVEL triggered interrupts tomdodd1999-08-0122-104/+160
| | | | | | | | | | | | | | | | | eisa_add_intr() which now takes an additional arguement (one of EISA_TRIGGER_LEVEL or EISA_TRIGGER_EDGE). The flag RR_SHAREABLE has no effect when passed to bus_alloc_resource(dev, SYS_RES_IRQ, ...) in an EISA device context as the eisa_alloc_resource() call (bus_alloc_resource method) now deals with this flag directly, depending on the device ivars. This change does nothing more than move all the 'shared = inb(foo + iobsse)' nonesense to the device probe methods rather than the device attach. Also, print out 'edge' or 'level' in the IRQ announcement message. Reviewed by: dfr
* Mention that EXIT_SUCCESS and EXIT_FAILURE are preferred overhoek1999-08-011-1/+7
| | | | sysexits.h-values as exit codes for portable programs.
* Typo of sample command line.sada1999-08-011-2/+2
| | | | Submitted by: Seiichi Satomi <ssatomi@rr.iij4u.or.jp>
* Richard the Lionheart was crowned on 3rd September 1189, not the 27thnik1999-08-011-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | February. If you do a web search for "lionheart crowned" you'll get lots of conflicting information. Some sites say 3rd September, while others say 27th February. Most of the "27th February" crowd seem to take their information from other incarnations of this file on other operating systems. After a very pleasant afternoon spent lunching with my girlfriend's parents, I availed myself of their extensive reference library. You'd be surprised how hard it is to get concrete information about this. The _Encyclopedia Brittanica_ doesn't mention the date, only the year, as does _Brewer's Dictionary of Phrase and Fable_, as do all the other printed sources I tried. One of them even said July 7th 1189! Microsoft's (yeah, so sue me) Encarta '95 has quite a comprehensive entry, but again, no day and month information In desperation, I tried the web once more, and finally stumbled upon http://www.btinternet.com/~timeref/hsttime2.htm. This revealed that Henry II died on 6th July 1189 (presumably the source of the 7th July entry in another reference), and that Richard was crowned on 3rd September. Best of all, this site gives references. So if any of you have a copy of _The Life and Times of Richard I_, John Gillingham, pub. George Weidenfeld and Nicholson Limited, 1974, then you can confirm this for yourselves. For completenesses sake, I tried to find an ISBN number for the above book. But Amazon and Barnes and Noble don't appear to stock it (although it looks like a revised version, by the same author, is due out in October 1999, in case anyone's interested). PR: docs/10488 Submitted by: solon@macaulay.demon.co.uk
* Add ipfw recompile and bpfilter -> bpf changesimp1999-08-011-1/+9
|
* Note need to recompile pccardd with latest kernel.imp1999-08-011-1/+5
|
* o Add additional printfs for error cases when we can't attach the device.imp1999-08-013-9/+29
| | | | | | | | o Add field to dev_desc for the size of the io port range. This isn't used yet in the committed sources, but will make the transition easier in the future. If you build this into your kernel, you will need to rebuild pccardd.
* o Add "debuglevel" keyword to config file.imp1999-08-016-35/+78
| | | | | | | | | | | | | | | | | | | o Document debug level keyword o Implement debug level: o For most of the diagnostic messages, change them from #ifdef DEBUG to if (debuglevel > 0). o Add a couple more diagnostic messages that weren't present before o Fix a couple of excessively long lines. Reviewed by: hosokawa-san o Start to implement the stopgap kludge for -current's pccard code by passing the length of the i/o range. If DEV_DESC_HAS_SIZE is defined, we'll set the size. This is done as an ifdef so that I can generate patches against the kernel more easily. o Add preliminary support for tweaking sleep times, but leave it disabled until a good range of values can be established. Didn't fix: logmsg problem noted by Nate.
* Make ipfw's logging more dynamic. Now, log will use the default limitgreen1999-08-016-23/+184
| | | | | | | | | | | | | _or_ you may specify "log logamount number" to set logging specifically the rule. In addition, "ipfw resetlog" has been added, which will reset the logging counters on any/all rule(s). ipfw resetlog does not affect the packet/byte counters (as ipfw reset does), and is the only "set" command that can be run at securelevel >= 3. This should address complaints about not being able to set logging amounts, not being able to restart logging at a high securelevel, and not being able to just reset logging without resetting all of the counters in a rule.
* Clarify that "-w" ignores horizontal white space changes.obrien1999-08-011-1/+1
|
* Sync with sys/i386/conf/majors.i386 revision 1.80.kato1999-08-011-1/+3
|
* Only use Bison to generate cc1plus's parse code.obrien1999-08-012-4/+4
|
* Cleanup - diked out a heap of old KLM stuff that isn't needed anymore.newton1999-08-011-65/+3
|
* Remove inappropriate references to the wrong name for the bootstrapgrog1999-08-012-16/+2
| | | | | | | manager, thus killing two birds with one stone. Objected-to-by: bde rnordier
* Move the memory access behavior information provided by madvisealc1999-08-016-24/+38
| | | | | | from the vm_object to the vm_map. Submitted by: dillon
* pmap_object_init_pt:alc1999-07-313-6/+6
| | | | Verify that object != NULL.
* Fixed $Id$.bde1999-07-311-3/+3
| | | | | | | Removed POSIX.1/NetBSD markup (braces) for NAME_MAX, etc. We don't define this. Most FreeBSD man pages hard-code the limits; in fact, utimes.2 recently became the only file in libc/sys/*.2 that mentions NAME_MAX. There probably should be mandoc macros for this.
* Removed a duplicate reference to System V.4.bde1999-07-311-2/+1
|
* Fixed syntax error in previous commit.bde1999-07-311-2/+3
|
* FIxed disordering in previous commit. Fixed some old disorder.bde1999-07-311-3/+3
|
* Add a -E flag, similar to -e (overide variables from environment) excepthoek1999-07-314-14/+47
| | | | | | | | that -E only operates for a specified variable. Useful since the -e option will often pull-in many unwanted variable overrides (esp. in a make world situation). Uses include overriding BINOWN (which cannot be done by normal methods or through abuses of MAKEFLAGS) or likely for ports to honour CFLAGS (provided they're running on a system whose make(1) has this option).
* Print an error message on illegal numerical arguments.hoek1999-07-311-5/+20
| | | | Submitted by: bin/9349 (slightly modified) Assar Westerlund <assar@sics.se>
* When printing an error message after command execution fails, don't assumehoek1999-07-311-2/+4
| | | | | the only possible error is "command not found". This makes debugging of messages such as "/bin/sh: not found" less common...
* Remove explicit testing of the NOFSCHG variable. Its functionality (in thishoek1999-07-311-3/+1
| | | | file) is now superceeded by INSTALLFLAGS_EDIT in bsd.{prog,kmod,lib}.mk.
* Add variable INSTALLFLAGS_EDIT used to remove arbitrary INSTALLFLAGS.hoek1999-07-314-11/+35
| | | | | | | | | | | | | | | Specifically intended for removing -fschg ("INSTALLFLAGS_EDIT=:S/schg/uchg/") this makes the NOFSCHG flag redundant. NOFSCHG will still be honoured by bsd.lib.mk but is valid for buildworld only. NOFSCHG is still implemented in the old way (ie. _not_ ".if NOFSCHG then { INSTALLFLAGS_EDIT+=:S/schg/,/ }" to emphasize the fact that NOFSCHG is only supported in a limited fashion and for buildworld. The interface and implementation are such that future use of flags such as sappnd can also be easily removed or altered (perhaps to uappnd). This commit brought to you by the letters B, D, and E, and the numbers six, one, thirteen, and three.
* Add INSTALL.TXT back.jkh1999-07-311-2/+2
|
* Change the type of vpgqueues::lcnt from "int *" to "int". The indirectionalc1999-07-314-26/+24
| | | | served no purpose.
* Tune table since 0200-0206 is not available, add more charsache1999-07-312-18/+10
|
* bad news: chars 0200-0206 used internally in troff, make them back illegalache1999-07-312-2/+2
|
* Use errx() instead of err() in example code calling err() after strtol().hoek1999-07-311-2/+2
|
* make all chars above 127 legalache1999-07-312-4/+4
|
* change prev. commit: emulate latin1 on ascii if latin1 chars areache1999-07-312-2/+2
| | | | in the text as groff authors suppose
* Comment change: "Be warned, this will update your installed system, excepthoek1999-07-311-2/+2
| | | | for the configuration files in the /etc directory." .... and the kernel.
* Add more koi8-r charsache1999-07-312-0/+128
|
* install msafer.7ache1999-07-311-3/+3
|
* Pick hardcoded latin1 chars definitions only if -Tlatin1ache1999-07-312-2/+3
|
* Reserve majors for arla.jkh1999-07-312-2/+6
|
* Cleanups to the pthread header files.rse1999-07-312-26/+26
| | | | | Submitted by: Ralf S. Engelschall <rse@engelschall.com> Reviewed by: John Birrell <jb@cimlogic.com.au>
* Make intelligible:grog1999-07-312-276/+686
| | | | | | | | | | Describe the command formats in English. Add references to other programs (boot0cfg, fdisk). Remove some old cruft, including FUD about single-level bootstraps. Add example of output format. Not-objected-to-by: msmith rnordier
OpenPOWER on IntegriCloud