Remove building with NOCRYPTO option
[minix.git] / minix / commands / MAKEDEV / MAKEDEV.8
blob51e0063d87d093b89f17f906013f0f6ee93e3c87
1 .Dd October 4, 2013
2 .Dt MAKEDEV 8
3 .Os
4 .Sh NAME
5 .Nm MAKEDEV, DESCRIBE
6 .Nd make/describe device files
7 .Sh SYNOPSIS
8 .Nm MAKEDEV
9 .Op Fl n | Fl m
10 .Op Fl r | Fl s
11 .Op key ...
12 .Nm DESCRIBE
13 .Op device ...
14 .Sh DESCRIPTION
15 .Nm MAKEDEV
16 may be used to create the device files normally found in the /dev directory.
17 .Nm MAKEDEV
18 knows about all supported devices and will create them in the current
19 directory with the proper owner and mode. For many devices
20 .Nm MAKEDEV
21 will not only create the device you want, but also the devices related
22 to it that you will probably want too. Naming one floppy device will
23 create all floppy devices for the same drive for instance.
24 .Pp
25 The options are as follows:
26 .Bl -tag -width Xxxexcludexfilexx
27 .It Fl n
28 echo the commands it would execute when you call it without that flag.
29 .It Fl m
30 echo
31 .Nm mtree(8)
32 formatted lines instead of creating the device nodes.
33 .It Fl r
34 Restricted set of devices. This set is used when generating the ramdisk.
35 .It Fl s
36 Standard set of devices. This set is used when popluating /dev.
37 .El
38 .Pp
39 .Ar key
40 arguments are simply the names of the devices you want to create. Call
41 .Nm MAKEDEV
42 without arguments to see a list of keys that it understands.
43 .Pp
44 The command
45 .Nm DESCRIBE
46 will give you a one-line description of a given device. By default It
47 will list all devices in /dev.
48 .Sh "SEE ALSO"
49 .Xr dev 4 ,
50 .Xr mknod 8
51 .Sh BUGS
52 The eagerness of
53 .Nm MAKEDEV
54 to create devices may cause many "File exists" errors from
55 .Nm mknod .
56 .Sh AUTHORS
57 Written by Kees J. Bot (kjb@cs.vu.nl) and Lionel A. Sambuc (lionel@minix3.org)