aboutsummaryrefslogtreecommitdiff
path: root/sbin/mknod
Commit message (Collapse)AuthorAgeFilesLines
* General further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-201-0/+2
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 3-Clause license. 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. Special thanks to Wind River for providing access to "The Duke of Highlander" tool: an older (2014) run over FreeBSD tree was useful as a starting point. Notes: svn path=/head/; revision=326025
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+0
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
* Renumber copyright clause 4Warner Losh2017-02-282-2/+2
| | | | | | | | | | | | Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is too pedantic, so give up on that point. Submitted by: Jan Schaumann <jschauma@stevens.edu> Pull Request: https://github.com/freebsd/freebsd/pull/96 Notes: svn path=/head/; revision=314436
* mknod appeared in V4 UNIXSevan Janiyan2016-10-021-2/+2
| | | | | | | | | | | | http://minnie.tuhs.org/cgi-bin/utree.pl?file=V4/man/man8/mknod.8 PR: 212509 Approved by: bcr (mentor) MFC after: 4 days Differential Revision: https://reviews.freebsd.org/D8105 Notes: svn path=/head/; revision=306606
* Explicitly add more files to the 'runtime' package.Glen Barber2016-02-091-0/+1
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/projects/release-pkg/; revision=295450
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+18
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Updated dependenciesSimon J. Gerraty2014-05-161-1/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=266219
| * Updated dependenciesSimon J. Gerraty2014-05-101-0/+2
| | | | | | | | Notes: svn path=/projects/bmake/; revision=265802
| * Updated dependenciesSimon J. Gerraty2013-03-111-0/+1
| | | | | | | | Notes: svn path=/projects/bmake/; revision=248169
| * Updated dependenciesSimon J. Gerraty2013-02-161-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=246868
| * Sync FreeBSD's bmake branch with Juniper's internal bmake branch.Marcel Moolenaar2012-08-221-0/+19
|/ | | | | | | Requested by: Simon Gerraty <sjg@juniper.net> Notes: svn path=/projects/bmake/; revision=239572
* Fix some more warnings found by clang.Rebecca Cran2010-11-221-1/+1
| | | | Notes: svn path=/head/; revision=215704
* mdoc: drop redundant .Pp and .LP callsUlrich Spörlein2010-10-081-1/+0
| | | | | | | They have no effect when coming in pairs, or before .Bl/.Bd Notes: svn path=/head/; revision=213573
* Bump WARNS where possible.Ulrich Spörlein2010-02-151-1/+0
| | | | | | | | Checked by: make universe Approved by: ed (co-mentor) Notes: svn path=/head/; revision=203916
* Allow mknod(8) to be only invoked with a pathname as an argument.Ed Schouten2010-01-312-32/+40
| | | | | | | | | | | | In 99% of the cases people just want to recreate device nodes they removed from /dev. There is no reason to pass the additional "c 0 0" anymore. Also slightly improve the manpage. Remove references to non-existent device names and platforms. Notes: svn path=/head/; revision=203277
* Refine r198714, it's not as easy as just leaving the major number zero.Christian Brueffer2009-11-011-1/+0
| | | | | | | | Submitted by: ed MFC after: 1 week Notes: svn path=/head/; revision=198768
* The majors file was removed long ago, 0 should be used instead.Christian Brueffer2009-10-311-4/+2
| | | | | | | | | PR: 139230 Submitted by: pluknet <pluknet@gmail.com> MFC after: 1 week Notes: svn path=/head/; revision=198714
* In the previous changeset a cast of myminor to u_int wereXin LI2007-06-141-1/+1
| | | | | | | | | | | | | | removed, which will cause problems on architectures where longs are longer than ints, for instance, "mknod foo c 0 0xffff00ff" would fail in such cases. Use a proper cast instead. Prompted by: bde Notes: svn path=/head/; revision=170692
* WARNS=6Xin LI2007-06-131-11/+6
| | | | Notes: svn path=/head/; revision=170653
* Sync program's usage() with manpage's SYNOPSIS.Ruslan Ermilov2005-02-101-2/+2
| | | | Notes: svn path=/head/; revision=141611
* Mark mknod(8) as deprecated. Add text in the 'COMPATIBILITY' sectionJoseph Koshy2004-12-171-1/+26
| | | | | | | | | describing the changes in device management since FreeBSD 4.0. Reviewed by: ru Notes: svn path=/head/; revision=138978
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-1/+2
| | | | Notes: svn path=/head/; revision=131488
* Assorted markup, grammar, and spelling fixes.Ruslan Ermilov2004-05-171-9/+9
| | | | Notes: svn path=/head/; revision=129327
* Remove advertising clause from University of California Regent's license,Mark Murray2004-04-092-8/+0
| | | | | | | | | per letter dated July 22, 1999. Approved by: core, imp Notes: svn path=/head/; revision=128073
* style.Makefile(5):Johan Karlsson2004-02-231-1/+1
| | | | | | | Use WARNS?= instead of WARNS=. Notes: svn path=/head/; revision=126178
* Document that mknod(8) can be used to undelete entries under devfs.Alfred Perlstein2003-12-291-0/+13
| | | | Notes: svn path=/head/; revision=123946
* Remove some more MAKEDEV information.Tom Rhodes2003-03-251-17/+2
| | | | | | | | PR: 50294 Submitted by: Sergey A. Osokin <osa@FreeBSD.org.ru> Notes: svn path=/head/; revision=112627
* Killed one more instance of pseudo-devices.Ruslan Ermilov2003-02-241-1/+1
| | | | Notes: svn path=/head/; revision=111448
* s/filesystem/file system/g as discussed on -developersTom Rhodes2002-08-211-1/+1
| | | | Notes: svn path=/head/; revision=102231
* The .Nm utilityPhilippe Charnier2002-07-061-2/+2
| | | | Notes: svn path=/head/; revision=99501
* Minor English fixes.Dima Dorfman2002-03-101-2/+2
| | | | | | | | PR: 35730 Submitted by: Gary W. Swearingen <swear@blarg.net> Notes: svn path=/head/; revision=91992
* Default to WARNS=2.David E. O'Brien2001-12-041-0/+1
| | | | | | | | | Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike Notes: svn path=/head/; revision=87325
* Refer people looking to figure out what major to use for a device toDima Dorfman2001-11-041-9/+3
| | | | | | | | | | | MAKEDEV and sys/conf/majors, not sys/conf/device.<arch>, which has never existed in the history of FreeBSD (well, at least it isn't in the repository). PR: 31558 Notes: svn path=/head/; revision=86049
* Remove whitespace at EOL.Dima Dorfman2001-07-151-1/+1
| | | | Notes: svn path=/head/; revision=79754
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-101-1/+1
| | | | Notes: svn path=/head/; revision=79530
* mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2).Ruslan Ermilov2001-07-061-2/+2
| | | | Notes: svn path=/head/; revision=79366
* - Backout botched attempt to introduce MANSECT feature.Ruslan Ermilov2001-03-261-0/+1
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74815
* Set the default manual section for sbin/ to 8.Ruslan Ermilov2001-03-201-1/+1
| | | | Notes: svn path=/head/; revision=74531
* mdoc(7) police: Change -filled displays (which just happenRuslan Ermilov2001-02-071-1/+1
| | | | | | | | | to be the same as -ragged in the current implementation) to -ragged. With mdocNG, -filled displays produce the correct output, formatted and justified to both margins. Notes: svn path=/head/; revision=72126
* mdoc(7) police: split punctuation characters + misc fixes.Ruslan Ermilov2001-02-011-1/+1
| | | | Notes: svn path=/head/; revision=71895
* Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-181-2/+2
| | | | Notes: svn path=/head/; revision=70152
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-2/+2
| | | | Notes: svn path=/head/; revision=68960
* Spelling fix.Mike Pritchard2000-03-241-1/+1
| | | | Notes: svn path=/head/; revision=58512
* Remove single-space hard sentence breaks. These degrade the qualitySheldon Hearn2000-03-011-1/+2
| | | | | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc. Notes: svn path=/head/; revision=57668
* Add chown(8)-like functionality. This will allow us to not use chown(8)David E. O'Brien2000-01-062-6/+98
| | | | | | | in MAKEDEV(8) -- removing the need of having /usr mounted. Notes: svn path=/head/; revision=55496
* Cast myminor/mymajor results to u_int soMatt Jacob2000-01-051-1/+2
| | | | | | | | comparisons to longs work correctly on alpha. Notes: svn path=/head/; revision=55479
* $Id$ -> $FreeBSD$Peter Wemm1999-08-282-2/+2
| | | | Notes: svn path=/head/; revision=50476
* Fix mknod which overloaded a little too much on "minor" and "major"Poul-Henning Kamp1999-05-101-6/+6
| | | | Notes: svn path=/head/; revision=46859
* Remove unused #include. Add usage().Philippe Charnier1998-07-062-12/+15
| | | | Notes: svn path=/head/; revision=37422