From fa5c2bf5d1cf363efa309829c14b3d2f25af8ed3 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 8 Oct 2025 12:41:36 +0200 Subject: [PATCH] Fix installation from source again Fix https://github.com/EFForg/rayhunter/issues/630 A better fix would be to automatically infer the right path based on what's available. Maybe based on cfg!(debug_assertions)? idk too fancy. --- doc/installing-from-source.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/installing-from-source.md b/doc/installing-from-source.md index bcf8206..9c1a64f 100644 --- a/doc/installing-from-source.md +++ b/doc/installing-from-source.md @@ -51,7 +51,8 @@ cargo build -p rootshell --bin rootshell --target armv7-unknown-linux-musleabihf # Replace 'orbic' with your device type if different. # A list of possible values can be found with 'cargo run --bin installer help'. -cargo run -p installer --bin installer orbic +# Use FILE_RAYHUNTER_DAEMON to specify the daemon binary path when using development builds: +FILE_RAYHUNTER_DAEMON=$PWD/target/armv7-unknown-linux-musleabihf/firmware-devel/rayhunter-daemon cargo run -p installer --bin installer orbic ``` ### If you're on Windows or can't run the install scripts