
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.
