diff --git a/doc/installing-from-source.md b/doc/installing-from-source.md index 339fe4c..ca17371 100644 --- a/doc/installing-from-source.md +++ b/doc/installing-from-source.md @@ -36,11 +36,14 @@ rustup target add x86_64-pc-windows-gnu Now you can root your device and install Rayhunter by running: ```sh -cargo build --bin rayhunter-daemon --target armv7-unknown-linux-musleabihf --profile firmware-devel +# Profile can be changed to 'firmware-devel' when building for development. +# Build time will decrease at the expense of binary size. +cargo build --bin rayhunter-daemon --target armv7-unknown-linux-musleabihf --profile firmware -cargo build --bin rootshell --target armv7-unknown-linux-musleabihf --profile firmware-devel +cargo build --bin rootshell --target armv7-unknown-linux-musleabihf --profile firmware -# Replace 'orbic' with your device type if different (i.e. tmobile, uz801, pinephone, tplink, wingtech) +# Replace 'orbic' with your device type if different. +# A list possible values can be found with 'cargo run --bin installer help'. cargo run --bin installer orbic ```