Custom Linux kernels for the UniFi Dream Machine (Pro) based on the UbiOS stock kernel.
See udm-kernel-tools for instructions on how to run these kernels on your device.
This repository offers several kernel flavours for the UniFi Dream Machine (Pro):
The sources for the stock kernel running on the UDM/P is located at the flavour/stock branch.
We do not offer any pre-built kernels for stock kernels. However, the stock kernel provides the base upon which the other kernel flavours build.
The edge flavour is located at the master branch and extends the stock kernel with more functionality. In particular, we extend the stock flavour kernel the following features:
- Multicast routing
- Multipath routing
- In-kernel WireGuard VPN support
- IP-VLAN, VXLAN and MAC-VLAN tap driver support
- CAKE QoS support
The edge flavour targets the most common use-cases for running a custom kernel, but should not behave differently from the stock kernel in default configuration.
Pre-built kernels are available on the Releases page
(suffixed with -edge
).
SSH into your UniFi Dream Machine and enter the UniFi OS shell as follows:
unifi-os shell
Select from the Releases page the kernel version you want to install and download the appropriate Debian package. Then, you can install the package as follows:
apt install ./udm-kernel-VERSION-RELEASE_arm64.deb
Important
To actually use these kernels, please visit udm-kernel-tools
for instructions.
Feel free to open a issue or pull request to this repository if you have a question, suggestion or want to add new functionality to the custom kernels.
If you are adding new functionality to the kernel, please motivate your use-case and think about how it might be useful for other users as well.
Make sure you have the following packages installed:
apt install build-dep libncurses-dev gawk flex bison openssl libssl-dev gcc-aarch64-linux-gnu
It might be that case that more recent versions of GCC have difficulty compiling the kernel without warnings or issues. The pre-built kernels in this repository are built on Ubuntu 18.04 using GCC 7.5.0.
Obtain the kernel sources from Github as follows:
git clone https://github.com/fabianishere/udm-kernel
cd udm-kernel
First, prepare the configuration for the kernel. Beforehand, you may add the desired
kernel configuration options to .github/config/config.local.udm
.
.github/prepare.sh
If you wish to graphically configure the kernel options, pass the -m
flag:
.github/prepare.sh -m
Make sure CONFIG_MODULE_FORCE_LOAD
is always enabled, in order for the kernel
to boot properly.
Once the kernel is configured, build the kernel as follows:
.github/build.sh
Afterwards, you will find the generated Debian packages in the directory above the repository.