-
Notifications
You must be signed in to change notification settings - Fork 55
/
INSTALL
32 lines (24 loc) · 1.14 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
If you use Red Hat Enterprise Linux (RHEL), this module is packaged and maintained by
elrepo. See http://elrepo.org/ and "yum install kmod-tpe" after you configure
their repository.
To build the module from source, run "make". Output will look like:
$ make
make -C /lib/modules/3.10.0-514.10.2.el7.x86_64/build M=/home/corman/git/tpe-lkm modules
make[1]: Entering directory `/usr/src/kernels/3.10.0-514.10.2.el7.x86_64'
CC [M] /home/corman/git/tpe-lkm/fopskit.o
CC [M] /home/corman/git/tpe-lkm/tpe_core.o
CC [M] /home/corman/git/tpe-lkm/tpe_module.o
CC [M] /home/corman/git/tpe-lkm/tpe_config.o
LD [M] /home/corman/git/tpe-lkm/tpe.o
Building modules, stage 2.
MODPOST 1 modules
CC /home/corman/git/tpe-lkm/tpe.mod.o
LD [M] /home/corman/git/tpe-lkm/tpe.ko
make[1]: Leaving directory `/usr/src/kernels/3.10.0-514.10.2.el7.x86_64'
After build, run "make install":
$ make install
Or simply insert the module:
$ sudo insmod tpe.ko
Note: the "make install" does some modprobe magic to make tpe get inserted at
system boot time. If you just inserted it with "insmod", then you'll have to
re-insert it yourself after a reboot.