contrib: move patchers to contrib/kernel-tree

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld
2016-07-28 15:42:03 +02:00
parent 427773bb17
commit 13e89d4860
2 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/sh
WG="$(readlink -f "$(dirname "$(readlink -f "$0")")/../../src/")"
for i in "$WG"/*.c "$WG"/*.h "$WG"/crypto/*.c "$WG"/crypto/*.h "$WG"/crypto/*.S "$WG"/Kbuild "$WG"/Kconfig; do
diff -u /dev/null "$i" | sed "s:${WG}:b/net/wireguard:;s:Kbuild:Makefile:"
done
cat <<_EOF
--- a/net/Kconfig
+++ b/net/Kconfig
@@ -85,1 +85,2 @@ config INET
if INET
+source "net/wireguard/Kconfig"
--- a/net/Makefile
+++ b/net/Makefile
@@ -8,1 +8,2 @@
obj-\$(CONFIG_NET) := socket.o core/
+obj-\$(CONFIG_WIREGUARD) += wireguard/
_EOF

View File

@@ -1,7 +1,7 @@
#!/bin/sh
K="$1"
WG="$(readlink -f "$(dirname "$(readlink -f "$0")")/../src/")"
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