summaryrefslogtreecommitdiffstats
path: root/sbin/devfs
Commit message (Collapse)AuthorAgeFilesLines
* Remove a useless use of cat, strip overzealous punctuation, anddd2004-11-061-16/+16
| | | | clarify some text.
* Parse file mode with setmode(3) for consistency with other programsdd2004-11-062-12/+9
| | | | that do this kind of thing.
* Typedefing an array of incomplete structs is non-standard C code.stefanf2004-06-021-1/+1
| | | | Approved by: das (mentor)
* Userland signed char fixes for PPC build. Problems were using a chargrehan2004-01-222-2/+2
| | | | | | | | | return for getopt() and comparing to -1, ditto with fgetc() and EOF, and using the kg_nice value from <sys/user.h> Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at> Reviewed by: obrien, bde (a while back) Tested lightly on: ppc, i386, make universe
* Get rid of duplicates.ru2003-09-141-1/+1
|
* Minor mdoc(7) cleanup, based on the PR below.simon2003-07-261-2/+4
| | | | | | | PR: docs/54826 Submitted by: Lukas Ertl <l.ertl@univie.ac.at> Reviewed by: ru Approved by: ceri (mentor)
* Xref police: chmod(8) -> chmod(1).sobomax2003-06-171-1/+1
|
* mdoc(7) police: markup nits.ru2002-12-091-25/+29
| | | | Approved by: re
* Treat the pathptrn field as a real pattern with the aid of fnmatch().dd2002-10-081-3/+0
|
* Don't depend on pollution in <machine/limits.h> (by way ofmike2002-07-291-0/+1
| | | | <sys/param.h>) for definition of <stdint.h> macros.
* Nuke whitespace at EOL.dd2002-07-282-3/+3
|
* What we're actually passing around is an ioctl request, not a command,dd2002-07-281-3/+3
| | | | and it's an unsigned long, not an int.
* This compiles cleanly with WARNS=5 on i386 and alpha, so try to makedd2002-07-281-1/+1
| | | | sure that doesn't change.
* Implement this (quoted from the updated man page): If the first tokendd2002-07-284-9/+181
| | | | | of a rule specification is a single dash (``-''), rules are read from the standard input and the rest of the specification is ignored.
* Use more standard section names in an attempt to unconfuse new usersdd2002-07-281-8/+5
| | | | | | | | | | | (and make it easier to find stuff for the old ones). I originally put everything under one "RULE SUBSYSTEM" so it didn't look like devfs(8) is dedicated to the rule subsystem, but since nobody has any idea what else might go here, it's not worth confusing people just to save a little time for someone that might add something rule-unrelated to devfs(8) in a few years. Suggested by: sheldonh, phk
* Introduce the DEVFS "rule" subsystem. DEVFS rules permit thedd2002-07-175-0/+948
administrator to define certain properties of new devfs nodes before they become visible to the userland. Both static (e.g., /dev/speaker) and dynamic (e.g., /dev/bpf*, some removable devices) nodes are supported. Each DEVFS mount may have a different ruleset assigned to it, permitting different policies to be implemented for things like jails. Approved by: phk
OpenPOWER on IntegriCloud