mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 07:37:14 +00:00
7203130ed8
Quoting Jason A. Donenfeld on IRC: <zx2c4> Colin_Finck: you should never, ever use old versions <zx2c4> Notice that neither the major nor minor version numbers change <zx2c4> Use the latest versions on your LTS With that definite answer, I'd like to fix the problem described in https://lore.kernel.org/yocto/CswA.1659543156268567471.pbrp@lists.yoctoproject.org/ by importing the latest versions instead of maintaining our own fork of wireguard 1.0.20200401. Signed-off-by: Armin Kuster <akuster808@gmail.com>
24 lines
636 B
BlitzBasic
24 lines
636 B
BlitzBasic
require wireguard.inc
|
|
|
|
SRCREV = "18fbcd68a35a892527345dc5679d0b2d860ee004"
|
|
|
|
SRC_URI = "git://git.zx2c4.com/wireguard-linux-compat;protocol=https;branch=master"
|
|
|
|
inherit module kernel-module-split
|
|
|
|
DEPENDS = "virtual/kernel libmnl"
|
|
|
|
# This module requires Linux 3.10 higher and several networking related
|
|
# configuration options. For exact kernel requirements visit:
|
|
# https://www.wireguard.io/install/#kernel-requirements
|
|
|
|
EXTRA_OEMAKE_append = " \
|
|
KERNELDIR=${STAGING_KERNEL_DIR} \
|
|
"
|
|
|
|
MAKE_TARGETS = "module"
|
|
MODULES_INSTALL_TARGET = "module-install"
|
|
|
|
RRECOMMENDS_${PN} = "kernel-module-xt-hashlimit"
|
|
MODULE_NAME = "wireguard"
|