1
0
mirror of https://git.zx2c4.com/wireguard-linux-compat synced 2024-11-10 16:59:19 +00:00
wireguard-linux-compat/kernel-tree-scripts/jury-rig.sh
Jason A. Donenfeld 9b76476d36 global: remove remaining tools references
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2019-12-26 17:15:01 +01:00

17 lines
543 B
Bash
Executable File

#!/bin/bash
# SPDX-License-Identifier: GPL-2.0
#
# Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
K="$1"
WG="$(readlink -f "$(dirname "$(readlink -f "$0")")/../src/")"
if [[ ! -e $K/net/Kconfig ]]; then
echo "You must specify the location of kernel sources as the first argument." >&2
exit 1
fi
ln -sfT "$WG" "$K/net/wireguard"
sed -i "/^obj-\\\$(CONFIG_NETFILTER).*+=/a obj-\$(CONFIG_WIREGUARD) += wireguard/" "$K/net/Makefile"
sed -i "/^if INET\$/a source \"net/wireguard/Kconfig\"" "$K/net/Kconfig"