mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
update T documentation
@@ -144,5 +144,21 @@ UBUNTU generic 3.19 kernel (more recent kernels above 3.19 may be tested
|
||||
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**
|
||||
then you need to run a low-latency 3.19 kernel on the eNB.
|
||||
**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
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user