summaryrefslogtreecommitdiffstats
path: root/Documentation/video4linux/bttv/MAKEDEV
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2016-07-18 10:04:48 -0300
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-07-18 10:04:48 -0300
commit2287cb47fb6bc16c0f7e08756eb1541204a130de (patch)
treef0814470703f7ddec027d6e010a7e850ef40a3ab /Documentation/video4linux/bttv/MAKEDEV
parent2e97d6d3013fa0d44c322b6181ea4b8f8a519094 (diff)
downloadlinux-stable-2287cb47fb6bc16c0f7e08756eb1541204a130de.tar.gz
linux-stable-2287cb47fb6bc16c0f7e08756eb1541204a130de.tar.bz2
linux-stable-2287cb47fb6bc16c0f7e08756eb1541204a130de.zip
[media] doc-rst: move bttv documentation to bttv.rst file
There were several files under Documentation/video4linux/bttv. Instead of simply copying them to the rst folder, I opted to merge into a single document and adjust the headers to adjust the section levels and fix the cards tables. There are two exceptions on the merge: - The Tuners were renamed as a separate document, as they describe a separate driver; - I removed the PROBLEMS section. It describes problems with the very first generation of 3D boards (Mistique/S3). It sounds very unlikely that someone would still need to install a bttv board on such hardware. Also, it is not very well written, IMHO. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/video4linux/bttv/MAKEDEV')
-rw-r--r--Documentation/video4linux/bttv/MAKEDEV27
1 files changed, 0 insertions, 27 deletions
diff --git a/Documentation/video4linux/bttv/MAKEDEV b/Documentation/video4linux/bttv/MAKEDEV
deleted file mode 100644
index 093c0cd18042..000000000000
--- a/Documentation/video4linux/bttv/MAKEDEV
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-function makedev () {
-
- for dev in 0 1 2 3; do
- echo "/dev/$1$dev: char 81 $[ $2 + $dev ]"
- rm -f /dev/$1$dev
- mknod /dev/$1$dev c 81 $[ $2 + $dev ]
- chmod 666 /dev/$1$dev
- done
-
- # symlink for default device
- rm -f /dev/$1
- ln -s /dev/${1}0 /dev/$1
-}
-
-# see http://linux.bytesex.org/v4l2/API.html
-
-echo "*** new device names ***"
-makedev video 0
-makedev radio 64
-makedev vbi 224
-
-#echo "*** old device names (for compatibility only) ***"
-#makedev bttv 0
-#makedev bttv-fm 64
-#makedev bttv-vbi 224