diff options
author | Ricardo Salveti <ricardo@foundries.io> | 2020-10-30 21:07:10 -0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-11-02 09:00:52 -0800 |
commit | 446857e016cfb21953507dd0bed683419b4073f9 (patch) | |
tree | e6fb496733b07889481955816fa5ad022512250b /meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200908.bb | |
parent | bc83d3f088ec25f6e176231581ce385b2cb717ee (diff) | |
download | meta-openembedded-446857e016cfb21953507dd0bed683419b4073f9.tar.gz meta-openembedded-446857e016cfb21953507dd0bed683419b4073f9.tar.bz2 meta-openembedded-446857e016cfb21953507dd0bed683419b4073f9.zip |
wireguard-module: upgrade 1.0.20200712 -> 1.0.20200908
Changelog:
- d97b575 version: bump
- 482d020 peerlookup: take lock before checking hash in replace operation
- dace9d0 compat: backport NLA policy macros
- a28032f netlink: consistently use NLA_POLICY_MIN_LEN()
- 515d544 netlink: consistently use NLA_POLICY_EXACT_LEN()
- 1a41e32 compat: backport kfree_sensitive and switch to it
- 90a9e82 compat: drop support for SUSE 15.1
- a567b4c version: bump
- 4213ef0 compat: add missing headers for ip_tunnel_parse_protocol
- 5a45add compat: ipv6_dst_lookup_flow was ported to rhel 7.9 beta
- 372427a compat: allow override of depmod basedir
- f04dae1 compat: rhel 8.3 beta removed nf_nat_core.h
Signed-off-by: Ricardo Salveti <ricardo@foundries.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200908.bb')
-rw-r--r-- | meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200908.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200908.bb b/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200908.bb new file mode 100644 index 000000000..4e3f3deca --- /dev/null +++ b/meta-networking/recipes-kernel/wireguard/wireguard-module_1.0.20200908.bb @@ -0,0 +1,40 @@ +require wireguard.inc + +SRCREV = "d97b575a47fb26f27965bdc9e537c85f86165e42" + +SRC_URI = "git://git.zx2c4.com/wireguard-linux-compat" + +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" + +RRECOMMENDS_${PN} = "kernel-module-xt-hashlimit" +MODULE_NAME = "wireguard" + +# Kernel module packages MUST begin with 'kernel-module-', otherwise +# multilib image generation can fail. +# +# The following line is only necessary if the recipe name does not begin +# with kernel-module-. +PKG_${PN} = "kernel-module-${MODULE_NAME}" + +module_do_install() { + install -d ${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/kernel/${MODULE_NAME} + install -m 0644 ${MODULE_NAME}.ko \ + ${D}${nonarch_base_libdir}/modules/${KERNEL_VERSION}/kernel/${MODULE_NAME}/${MODULE_NAME}.ko +} + +# WireGuard has been merged into Linux kernel >= 5.6 and therefore this compatibility module is no longer required. +# OE-core post dunfell has moved to use kernel 5.8 which now means we cant build this module in world builds +# for reference machines e.g. qemu +EXCLUDE_FROM_WORLD = "1" |