repo.or.cz
/
mascara-docs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* reordered a little bit
[mascara-docs.git]
/
i86
/
elks
/
elkscmd
/
SIBODEV
blob
13d6d0bf1556861e13cbf72f98d3532da12974f9
1
#!/bin/sh
2
3
MKDEV
=/
bin
/
mknod
4
5
# Memory devices
6
7
$MKDEV
mem c
1 1
8
$MKDEV
kmem c
1 2
9
$MKDEV
null c
1 3
10
$MKDEV
zero c
1 5
11
$MKDEV
full c
1 7
12
13
# Virtual consoles
14
15
$MKDEV
tty1 c
4 0
16
$MKDEV
tty2 c
4 1
17
$MKDEV
tty3 c
4 2
18
19
$MKDEV
ttys0 c
4 64
20
21
#$MKDEV ttyp0 c 4 8
22
#$MKDEV ttyp1 c 4 9
23
#$MKDEV ttyp2 c 4 10
24
#$MKDEV ttyp3 c 4 11
25
#
26
#$MKDEV ptyp0 c 2 8
27
#$MKDEV ptyp1 c 2 9
28
#$MKDEV ptyp2 c 2 10
29
#$MKDEV ptyp3 c 2 11
30
31
# Parallel devices
32
33
#$MKDEV lp0 c 6 0
34