| ... | ... | @@ -139,13 +139,15 @@ Note: Please do not run OAI eNB and OAI EPC on same machine due to different ker |
|
|
|
|
|
|
|
## Notes for installing 4.7.x kernel with GTP module
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo apt-get install xz-utils build-essential wget
|
|
|
|
sudo apt-get build-dep linux-image-$(uname -r)
|
|
|
|
sudo apt-get build-dep linux-image-$(uname -r) ncurses-bin libncurses-dev
|
|
|
|
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
|
|
|
|
# See Documentation/Changes for list of required minimum software to compile the kernel
|
|
|
|
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`
|
| ... | ... | |