Compiled drivers for Linux Preboot from ITMS 7.6 having kernel version 2.6.32-358.51.1.el6. Linux distro used for this tutorial is “Debian 7.8 32-Bit”.
Note: Before continuing ensure that following tools are installed on build machine:
gcc, make, rpm, tar
Loading Driver in Linux Preboot ( LinPE )
Important: The drivers you just compiled will only work with the kernel version that they were compiled with. If you upgrade the Linux automation kernel, you will have to re-setup your Linux computer and recompile the drivers.
Note:
Fixing Error - implicit declaration of function “rh_key_invalidate”
Open “include/linux/key.h” file and add empty definition for “rh_key_invalidate” for the unset case of CONFIG_KEYS.
Add below line to “key.h” file
#define rh_key_invalidate(k) do { } while(0)