From 0d9f53f602219055d2eadd76c9408bcaf9272585 Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Tue, 25 Mar 2025 16:32:07 -0700 Subject: [PATCH] Update make.sh reboot the orbic instead of starting up the process again, since rootshell seems to have insufficient privileges to start rayhunter --- make.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 31400f3..a63f1a6 100755 --- a/make.sh +++ b/make.sh @@ -2,4 +2,5 @@ cargo build --release --target="armv7-unknown-linux-gnueabihf" #--features debug adb shell '/bin/rootshell -c "/etc/init.d/rayhunter_daemon stop"' adb push target/armv7-unknown-linux-gnueabihf/release/rayhunter-daemon /data/rayhunter/rayhunter-daemon -adb shell '/bin/rootshell -c "/etc/init.d/rayhunter_daemon start"' +echo "rebooting the device..." +adb shell '/bin/rootshell -c "reboot"'