diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-11-25 02:11:55 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-11-25 02:11:55 +0100 |
commit | 8a7c0df7866155dba971ec3a9f65f6276413c482 (patch) | |
tree | fb384e75df2bbc5ce1400ef94835dd1ac739bc6b /cli/install.sh | |
parent | d9961cdae245b11843849ba5d528d625ca045dd3 (diff) |
cli: move to android_kernel_wireguard
These tools are now part of the ROM builder's toolkit at:
https://git.zx2c4.com/android_kernel_wireguard/about/
Diffstat (limited to 'cli/install.sh')
-rwxr-xr-x | cli/install.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cli/install.sh b/cli/install.sh deleted file mode 100755 index f619eb6c..00000000 --- a/cli/install.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -mount -o rw,remount /system - -cp -v ./addonsd.sh /system/addon.d/40-wireguard.sh -if [ -f ./wg ]; then - cp -v ./wg /system/xbin/wg -else - echo "Warning: this directory does not contain wg. You may have forgotten to compile it yourself?" >&2 -fi -cp -v ./wg-quick.bash /system/xbin/wg-quick -chmod 755 /system/xbin/wg /system/xbin/wg-quick /system/addon.d/40-wireguard.sh -mkdir -pvm 700 /data/misc/wireguard - -mount -o ro,remount /system |