aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/video4linux/bttv/MAKEDEV
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/video4linux/bttv/MAKEDEV')
-rw-r--r--Documentation/video4linux/bttv/MAKEDEV28
1 files changed, 28 insertions, 0 deletions
diff --git a/Documentation/video4linux/bttv/MAKEDEV b/Documentation/video4linux/bttv/MAKEDEV
new file mode 100644
index 000000000000..6c29ba43b6c6
--- /dev/null
+++ b/Documentation/video4linux/bttv/MAKEDEV
@@ -0,0 +1,28 @@
1#!/bin/bash
2
3function makedev () {
4
5 for dev in 0 1 2 3; do
6 echo "/dev/$1$dev: char 81 $[ $2 + $dev ]"
7 rm -f /dev/$1$dev
8 mknod /dev/$1$dev c 81 $[ $2 + $dev ]
9 chmod 666 /dev/$1$dev
10 done
11
12 # symlink for default device
13 rm -f /dev/$1
14 ln -s /dev/${1}0 /dev/$1
15}
16
17# see http://roadrunner.swansea.uk.linux.org/v4lapi.shtml
18
19echo "*** new device names ***"
20makedev video 0
21makedev radio 64
22makedev vtx 192
23makedev vbi 224
24
25#echo "*** old device names (for compatibility only) ***"
26#makedev bttv 0
27#makedev bttv-fm 64
28#makedev bttv-vbi 224