diff options
author | nick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-12-01 17:08:12 +0000 |
---|---|---|
committer | nick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-12-01 17:08:12 +0000 |
commit | 3ed9f207ebf2e60d36cef039eee53ac6220d3c71 (patch) | |
tree | 46489014f1b8530d4c91f92b9f384147c666a172 /drivers | |
parent | a1216fc770372c946cb7e06df814df0863b0ffcb (diff) |
Improving auto-install
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3247 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/radeon/Makefile | 7 | ||||
-rw-r--r-- | drivers/radeon/README | 14 |
2 files changed, 20 insertions, 1 deletions
diff --git a/drivers/radeon/Makefile b/drivers/radeon/Makefile index b1cdad459d..c778105f81 100644 --- a/drivers/radeon/Makefile +++ b/drivers/radeon/Makefile @@ -38,6 +38,11 @@ install: cp radeon_vid.o $(MOD_PATH) cp rage128_vid.o $(MOD_PATH) depmod -a +nodes: mknod /dev/radeon_vid c 178 0 mknod /dev/rage128_vid c 178 0 - +# Stuff below is for me only ;) +vid: + make install + rmmod radeon_vid + modprobe radeon_vid diff --git a/drivers/radeon/README b/drivers/radeon/README index ab716ba4eb..2655f95051 100644 --- a/drivers/radeon/README +++ b/drivers/radeon/README @@ -33,6 +33,8 @@ Installation: Simply type two commands in this directory: make make install +If you install it first time then type also: +make nodes Using with mplayer: ~~~~~~~~~~~~~~~~~~~ @@ -42,6 +44,18 @@ mplayer -vo vesa:lvo:/dev/radeon_vid -<your options> filename or mplayer -vo vesa:lvo:/dev/rage128_vid -<your options> filename +Configuring: +~~~~~~~~~~~~ + +You can tune up some parameters with using following trick: +echo "parameter=value">/dev/radeon_vid +Example: +echo "double_buff=on">/dev/radeon_vid + +To know more about these parameters - try read /dev/radeon_vid file ;) +Note: don't use 'cat' since it cab catch EOF during reading such files. +(I use midnight commander for that ;) + Note: ~~~~~ You can pass only options with can be recognized by vo_vesa driver. |