diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-12-06 17:58:34 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-12-13 15:16:28 +0100 |
commit | d806bba30f03b8d412f159160f06c364f898d653 (patch) | |
tree | ea56698afcc7e89494b33f11713ac13e6e4c16e0 | |
parent | f6d4906ec7fa0b12ddaf14fa506eac1bf2154205 (diff) | |
download | vendor_replicant-scripts-d806bba30f03b8d412f159160f06c364f898d653.tar.gz vendor_replicant-scripts-d806bba30f03b8d412f159160f06c364f898d653.tar.bz2 vendor_replicant-scripts-d806bba30f03b8d412f159160f06c364f898d653.zip |
network: modem: fix bash path
On all supported devices, on Replicant 6.0, bash is installed to
/system/xbin/bash
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rwxr-xr-x | networking/modem/device-files/disable_modem.sh | 2 | ||||
-rwxr-xr-x | networking/modem/device-files/enable_modem.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/networking/modem/device-files/disable_modem.sh b/networking/modem/device-files/disable_modem.sh index eed2664..28e8e38 100755 --- a/networking/modem/device-files/disable_modem.sh +++ b/networking/modem/device-files/disable_modem.sh @@ -1,4 +1,4 @@ -#!/system/bin/bash +#!/system/xbin/bash # # Copyright (C) 2017 Jeremy Rand <jeremy@veclabs.net> # Partially based on code by Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> and Filippo Fil Bergamo diff --git a/networking/modem/device-files/enable_modem.sh b/networking/modem/device-files/enable_modem.sh index f4876f8..1f2d723 100755 --- a/networking/modem/device-files/enable_modem.sh +++ b/networking/modem/device-files/enable_modem.sh @@ -1,4 +1,4 @@ -#!/system/bin/bash +#!/system/xbin/bash # # Copyright (C) 2017 Jeremy Rand <jeremy@veclabs.net> # Partially based on code by Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> and Filippo Fil Bergamo |