wireguard-linux-compat: add WireGuard kernel module package

This commit is contained in:
chewitt 2019-11-02 13:54:02 +00:00
parent 0a7bb4ffeb
commit 6b8fe40614
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1 @@
wireguard

View File

@ -0,0 +1,27 @@
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="wireguard-linux-compat"
PKG_VERSION="v0.0.20200121"
PKG_SHA256="509a26a28ac1e96cf15d9a457a4143c43d4455eee877fdef20ebf11cbfd012b6"
PKG_LICENSE="GPLv2"
PKG_SITE="https://www.wireguard.com"
PKG_URL="https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-$PKG_VERSION.tar.xz"
PKG_DEPENDS_TARGET="toolchain linux libmnl"
PKG_NEED_UNPACK="$LINUX_DEPENDS"
PKG_LONGDESC="WireGuard VPN kernel module"
PKG_TOOLCHAIN="manual"
PKG_IS_KERNEL_PKG="yes"
pre_make_target() {
unset LDFLAGS
}
make_target() {
kernel_make KERNELDIR=$(kernel_path) -C src/ module
}
makeinstall_target() {
mkdir -p $INSTALL/$(get_full_module_dir)/$PKG_NAME
cp src/*.ko $INSTALL/$(get_full_module_dir)/$PKG_NAME
}