Bubble android client. Fork of https://git.zx2c4.com/wireguard-android/
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

15 righe
440 B

  1. #!/bin/sh
  2. mount -o rw,remount /system
  3. cp -v ./addonsd.sh /system/addon.d/40-wireguard.sh
  4. if [ -f ./wg ]; then
  5. cp -v ./wg /system/xbin/wg
  6. else
  7. echo "Warning: this directory does not contain wg. You may have forgotten to compile it yourself?" >&2
  8. fi
  9. cp -v ./wg-quick.bash /system/xbin/wg-quick
  10. chmod 755 /system/xbin/wg /system/xbin/wg-quick /system/addon.d/40-wireguard.sh
  11. mkdir -pvm 700 /data/misc/wireguard
  12. mount -o ro,remount /system