mirror of https://github.com/mpv-player/mpv
Auto-install stuff
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3245 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
2574e86cf9
commit
88a0a29956
|
@ -1,5 +1,10 @@
|
|||
KERNEL_INCLUDES = /usr/src/linux/include
|
||||
INCLUDES = -I$(KERNEL_INCLUDES)
|
||||
# auto install
|
||||
CONFIG_SHELL=/bin/sh -c
|
||||
KERNEL_VERSION=$(shell $(CONFIG_SHELL) 'uname -r')
|
||||
MOD_PATH_PREFIX=
|
||||
MOD_PATH=$(MOD_PATH_PREFIX)/lib/modules/$(KERNEL_VERSION)/kernel/drivers/video/
|
||||
|
||||
#
|
||||
# standard CFLAGS
|
||||
|
@ -28,5 +33,11 @@ clean:
|
|||
rm -f *.o *~
|
||||
|
||||
install:
|
||||
@echo Please copy *.o files to '/lib/modules/LINUX_VER/kernel/drivers/video' folder
|
||||
mkdir -p $(MOD_PATH)
|
||||
cp radeonfb.o $(MOD_PATH)
|
||||
cp radeon_vid.o $(MOD_PATH)
|
||||
cp rage128_vid.o $(MOD_PATH)
|
||||
depmod -a
|
||||
mknod /dev/radeon_vid c 178 0
|
||||
mknod /dev/rage128_vid c 178 0
|
||||
|
||||
|
|
|
@ -10,11 +10,9 @@ Linus distribution.
|
|||
|
||||
Alternative way:
|
||||
~~~~~~~~~~~~~~~~
|
||||
Simply type 'make' command in this directory then copy results ( *.o files ) to:
|
||||
/lib/modules/$(LINUX_VER)/kernel/drivers/video
|
||||
directory.
|
||||
Don't forget about:
|
||||
depmod -a
|
||||
Simply type two commands in this directory:
|
||||
make
|
||||
make install
|
||||
|
||||
Anyway you should have 'Frame buffer support' compiled into linux-kernel
|
||||
and at least '8bpp packed pixel support' compiled and installed as module.
|
||||
|
@ -32,18 +30,9 @@ support for rage128 / rage128pro chips).
|
|||
Installation:
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
After building modules just copy them to:
|
||||
/lib/modules/$(LINUX_VER)/kernel/drivers/video
|
||||
directory.
|
||||
Don't forget about:
|
||||
depmod -a
|
||||
|
||||
If you are doing it first time then create the device then execute
|
||||
following command:
|
||||
mknod /dev/radeon_vid c 178 0
|
||||
for radeon_vid.o
|
||||
mknod /dev/rage128_vid c 178 0
|
||||
for rage128_vid.o
|
||||
Simply type two commands in this directory:
|
||||
make
|
||||
make install
|
||||
|
||||
Using with mplayer:
|
||||
~~~~~~~~~~~~~~~~~~~
|
||||
|
|
Loading…
Reference in New Issue