| ... | ... | @@ -145,4 +145,20 @@ too). Low latency kernels may be tested also. |
|
|
|
|
|
|
|
If your intent is to run the OAI core network software on the OAI eNB,
|
|
|
|
then you need to run a low-latency 3.19 kernel on the eNB.
|
|
|
|
**Example kernel tested on our side for openair-cn installation is linux-image-3.19.0-59-generic** |
|
|
|
**Example kernel for openair-cn for latest develop branch is 4.7.x. You will need GTP kernel module from Osmocom which is loaded as module inside kernel**
|
|
|
|
**Example kernel tested on our side for openair-cn installation is linux-image-3.19.0-59-generic for older versions of openair-cn**
|
|
|
|
|
|
|
|
## Notes for installing 4.7.x kernel with GTP module
|
|
|
|
|
|
|
|
```
|
|
|
|
wget https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-4.7.1.tar.xz
|
|
|
|
unxz linux-4.7.1.tar.xz
|
|
|
|
tar -xovf linux-4.7.1.tar
|
|
|
|
cd linux-4.7.1
|
|
|
|
make menuconfig #search for GTP option and enable it as a kernel module and save the kernel config file
|
|
|
|
# look for CONFIG_GTP in .config and make sure it is enabled as a kernel module CONFIG_GTP=m
|
|
|
|
make -j`nproc`
|
|
|
|
sudo make modules_install
|
|
|
|
sudo make install
|
|
|
|
|
|
|
|
``` |
|
|
\ No newline at end of file |