summaryrefslogtreecommitdiff
path: root/packages/linux-kernel/README.md
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2024-10-02 08:02:51 +0000
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-10-02 18:46:04 +0000
commiteb70dca3cc4bbc6275a79c664f0a146ba4b59bc9 (patch)
tree0e8f6e11a09eb6267aa68c4708d128d2a15b4a4e /packages/linux-kernel/README.md
parentb672c89acbc593876d47bf5490d9dcf071cb3816 (diff)
downloadvyos-build-mergify/bp/circinus/pr-781.tar.gz
vyos-build-mergify/bp/circinus/pr-781.zip
T6754: Delete Jenkins build packagesmergify/bp/circinus/pr-781
(cherry picked from commit 2fed892f2746561207aa21a2660f4d8f3f79d24e) # Conflicts: # packages/linux-kernel/.gitignore # packages/linux-kernel/Jenkinsfile # packages/linux-kernel/build-accel-ppp.sh # packages/linux-kernel/build-intel-ixgbe.sh # packages/linux-kernel/build-intel-ixgbevf.sh # packages/linux-kernel/build-intel-qat.sh # packages/linux-kernel/build-jool.py # packages/linux-kernel/build-kernel.sh # packages/linux-kernel/build-nat-rtsp.sh # packages/linux-kernel/build-openvpn-dco.sh # packages/net-snmp/Jenkinsfile
Diffstat (limited to 'packages/linux-kernel/README.md')
-rw-r--r--packages/linux-kernel/README.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/packages/linux-kernel/README.md b/packages/linux-kernel/README.md
deleted file mode 100644
index ee9a5175..00000000
--- a/packages/linux-kernel/README.md
+++ /dev/null
@@ -1,36 +0,0 @@
-# About
-
-VyOS runs on a custom Linux Kernel (which is 4.19) at the time of this writing.
-This repository holds a Jenkins Pipeline which is used to build the Custom
-Kernel (x86_64/amd64 at the moment) and all required out-of tree modules.
-
-VyOS does not utilize the build in Intel Kernel drivers for its NICs as those
-Kernels sometimes lack features e.g. configurable receive-side-scaling queues.
-On the other hand we ship additional not mainlined features as WireGuard VPN.
-
-## Kernel
-
-The Kernel is build from the vanilla repositories hosted at https://git.kernel.org.
-VyOS requires two additional patches to work which are stored in the patches/kernel
-folder.
-
-### Config
-
-The Kernel configuration used is [x86_64_vyos_defconfig](x86_64_vyos_defconfig)
-which will be copied on demand during the Pipeline run into the `arch/x86/configs`i
-direcotry of the Kernel source tree.
-
-Other configurations can be added in the future easily.
-
-### Modules
-
-VyOS utilizes several Out-of-Tree modules (e.g. WireGuard, Accel-PPP and Intel
-network interface card drivers). Module source code is retrieved from the
-upstream repository and - when needed - patched so it can be build using this
-pipeline.
-
-In the past VyOS maintainers had a fork of the Linux Kernel, WireGuard and
-Accel-PPP. This is fine but increases maintenance effort. By utilizing vanilla
-repositories upgrading to new versions is very easy - only the branch/commit/tag
-used when cloning the repository via [Jenkinsfile](Jenkinsfile) needs to be
-adjusted.