aboutsummaryrefslogtreecommitdiff
path: root/sbin/devfs/rule.c
Commit message (Collapse)AuthorAgeFilesLines
* other: Fix several typos and minor errorsEitan Adler2017-12-271-1/+1
| | | | | | | | | | | - duplicate words - typos - references to old versions of FreeBSD Reviewed by: imp, benno Notes: svn path=/head/; revision=327233
* various: general adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. No functional change intended. Notes: svn path=/head/; revision=326276
* Spelling fixes for sbin/Ulrich Spörlein2012-01-071-1/+1
| | | | Notes: svn path=/head/; revision=229778
* Add missing static keywords for global variables to tools in sbin/.Ed Schouten2011-11-041-1/+1
| | | | | | | | | These tools declare global variables without using the static keyword, even though their use is limited to a single C-file, or without placing an extern declaration of them in the proper header file. Notes: svn path=/head/; revision=227081
* o Typo in the error message: s/invald/invalid.Maxim Konovalov2006-01-051-1/+1
| | | | | | | | PR: misc/91341 Submitted by: Guy Harris Notes: svn path=/head/; revision=154053
* Remove filtering on major device number. These are assigned randomlyPoul-Henning Kamp2005-02-271-8/+0
| | | | | | | | these days so filtering on them makes no sense other than as a foot-shooting device. Notes: svn path=/head/; revision=142669
* Parse file mode with setmode(3) for consistency with other programsDima Dorfman2004-11-061-11/+7
| | | | | | | that do this kind of thing. Notes: svn path=/head/; revision=137303
* Userland signed char fixes for PPC build. Problems were using a charPeter Grehan2004-01-221-1/+1
| | | | | | | | | | | | 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 Notes: svn path=/head/; revision=124830
* Nuke whitespace at EOL.Dima Dorfman2002-07-281-1/+1
| | | | Notes: svn path=/head/; revision=100805
* What we're actually passing around is an ioctl request, not a command,Dima Dorfman2002-07-281-3/+3
| | | | | | | and it's an unsigned long, not an int. Notes: svn path=/head/; revision=100803
* Implement this (quoted from the updated man page): If the first tokenDima Dorfman2002-07-281-8/+63
| | | | | | | | of a rule specification is a single dash (``-''), rules are read from the standard input and the rest of the specification is ignored. Notes: svn path=/head/; revision=100799
* Introduce the DEVFS "rule" subsystem. DEVFS rules permit theDima Dorfman2002-07-171-0/+419
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 Notes: svn path=/head/; revision=100206