Source
1
+
libdrm - userspace library for drm
1
2
2
-
DRM README file
3
-
4
-
5
-
There are two main parts to this package: the DRM client library/interface
6
-
(libdrm.so) and kernel/hardware-specific device modules (such as radeon.ko).
7
-
The kernel device modules are not shipped with libdrm releases and should only
8
-
be built from the git tree by developers and bleeding-edge testers of
9
-
non-Intel hardware. The Intel kernel modules are developed in the Linux
10
-
kernel tree.
3
+
This is libdrm, a userspace library for accessing the DRM, direct
4
+
rendering manager, on Linux, BSD and other operating systes that
5
+
support the ioctl interface. The library provides wrapper functions
6
+
for the ioctls to avoid exposing the kernel interface directly, and
7
+
for chipsets with drm memory manager, support for tracking relocations
8
+
and buffers. libdrm is a low-level library, typically used by
9
+
graphics drivers such as the Mesa DRI drivers, the X drivers, libva
10
+
and similar projects. New functionality in the kernel DRM drivers
11
+
typically requires a new libdrm, but a new libdrm will always work
12
+
with an older kernel.
11
13
12
14
13
15
Compiling
14
16
---------
15
17
16
-
By default, libdrm and the DRM header files will install into /usr/local/.
17
-
If you want to install this DRM to replace your system copy, say:
18
-
19
-
./configure --prefix=/usr --exec-prefix=/
20
-
21
-
Then,
22
-
make install
18
+
libdrm is a standard autotools packages and follows the normal
19
+
configure, build and install steps. The first step is to configure
20
+
the package, which is done by running the configure shell script:
23
21
22
+
./configure
24
23
25
-
To build the device-specific kernel modules from the git tree:
24
+
By default, libdrm will install into the /usr/local/ prefix. If you
25
+
want to install this DRM to replace your system copy, pass
26
+
--prefix=/usr and --exec-prefix=/ to configure. If you are building
27
+
libdrm from a git checkout, you first need to run the autogen.sh
28
+
script. You can pass any options to autogen.sh that you would other
29
+
wise pass to configure, or you can just re-run configure with the
30
+
options you need once autogen.sh finishes.
26
31
27
-
cd linux-core/
28
-
make
29
-
cp *.ko /lib/modules/VERSION/kernel/drivers/char/drm/
30
-
(where VERSION is your kernel version: uname -f)
32
+
Next step is to build libdrm:
31
33
32
-
Or,
33
-
cd bsd-core/
34
34
make
35
-
copy the kernel modules to the appropriate place
36
-
37
-
38
-
39
-
Tips & Trouble-shooting
40
-
-----------------------
41
-
42
-
1. You'll need kernel sources. If using Fedora Core 5, for example, you may
43
-
need to install RPMs such as:
44
35
45
-
kernel-smp-devel-2.6.15-1.2054_FC5.i686.rpm
46
-
kernel-devel-2.6.15-1.2054_FC5.i686.rpm
47
-
etc.
48
-
49
-
50
-
2. You may need to make a symlink from /lib/modules/VERSION/build to your
51
-
kernel sources in /usr/src/kernels/VERSION (where version is `uname -r`):
52
-
53
-
cd /lib/modules/VERSION
54
-
ln -s /usr/src/kernels/VERSION build
55
-
56
-
57
-
3. If you've build the kernel modules but they won't load because of an
58
-
error like this:
59
-
60
-
$ /sbin/modprobe drm
61
-
FATAL: Error inserting drm (/lib/modules/2.6.15-1.2054_FC5smp/kernel/drivers/char/drm/drm.ko): Invalid module format
62
-
63
-
And 'dmesg|tail' says:
64
-
65
-
drm: disagrees about version of symbol struct_module
66
-
67
-
Try recompiling your drm modules without the Module.symvers file.
68
-
That is rm the /usr/src/kernels/2.6.15-1.2054_FC5-smp-i686/Module.symvers
69
-
file (or rename it). Then do a 'make clean' before rebuilding your drm
70
-
modules.
36
+
and once make finishes successfully, install the package using
71
37
38
+
make install
72
39
40
+
If you are install into a system location, you will need to be root to
41
+
perform the install step.