aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/contrib/examples/android/install.sh
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-07-31 03:03:06 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-08-01 23:22:41 +0200
commit4312c703e8a99f79d387fd282a121bd5b7b333e7 (patch)
tree86baf829eba2aab6f10f3cff952c81b607a3167c /contrib/examples/android/install.sh
parentrecieve: pskb_trim already checks length (diff)
downloadwireguard-monolithic-historical-4312c703e8a99f79d387fd282a121bd5b7b333e7.tar.xz
wireguard-monolithic-historical-4312c703e8a99f79d387fd282a121bd5b7b333e7.zip
contrib: move Android tools to wireguard-android repo
https://git.zx2c4.com/wireguard-android/
Diffstat (limited to 'contrib/examples/android/install.sh')
-rwxr-xr-xcontrib/examples/android/install.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/contrib/examples/android/install.sh b/contrib/examples/android/install.sh
deleted file mode 100755
index f619eb6..0000000
--- a/contrib/examples/android/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