aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/kernel-tree-scripts/create-patch.sh
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-11-08 17:08:22 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2018-11-14 23:59:05 -0800
commitcc36bde00d67f15d8657c2fa6f450dccf4fb76b7 (patch)
treefeca77f876b7552bb4a83883c4e193e7f35020cc /kernel-tree-scripts/create-patch.sh
parentglobal: various formatting tweeks (diff)
downloadwireguard-linux-compat-cc36bde00d67f15d8657c2fa6f450dccf4fb76b7.tar.xz
wireguard-linux-compat-cc36bde00d67f15d8657c2fa6f450dccf4fb76b7.zip
chacha20,poly1305: switch to perlasm originals on mips and arm
We also separate out Eric Biggers' Cortex A7 implementation into its own file. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'kernel-tree-scripts/create-patch.sh')
-rwxr-xr-xkernel-tree-scripts/create-patch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel-tree-scripts/create-patch.sh b/kernel-tree-scripts/create-patch.sh
index bb3fa2b..3679a64 100755
--- a/kernel-tree-scripts/create-patch.sh
+++ b/kernel-tree-scripts/create-patch.sh
@@ -7,7 +7,7 @@ shopt -s globstar
WG="$(readlink -f "$(dirname "$(readlink -f "$0")")/../../src/")"
-for i in "$WG"/**/{*.c,*.h,*.S,*.include} "$WG/Kbuild" "$WG/Kconfig"; do
+for i in "$WG"/**/{*.c,*.h,*.S,*.S_shipped,*.include} "$WG/Kbuild" "$WG/Kconfig"; do
[[ $i == "$WG/tools/"* || $i == "$WG/tests/"* ]] && continue
diff -u /dev/null "$i" | sed "s:${WG}:b/net/wireguard:;s:Kbuild:Makefile:"
done