From 4246aef14c31d0c4db1b46c632c4acfc297a3ee0 Mon Sep 17 00:00:00 2001 From: kevin-f-ortega Date: Wed, 16 Oct 2024 13:59:30 -0700 Subject: [PATCH] Remove sudo from cross-compilation tutorial (#2957) --- docs/Tutorials/CrossCompilationSetup/ArmLinuxTutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Tutorials/CrossCompilationSetup/ArmLinuxTutorial.md b/docs/Tutorials/CrossCompilationSetup/ArmLinuxTutorial.md index ac4eddad2a..ee7f263e5f 100644 --- a/docs/Tutorials/CrossCompilationSetup/ArmLinuxTutorial.md +++ b/docs/Tutorials/CrossCompilationSetup/ArmLinuxTutorial.md @@ -32,7 +32,7 @@ fprime-gds -n --dictionary build-artifacts/aarch64-linux//di In another terminal SSH into the device and run the uploaded software: ```sh ssh @ -sudo deployment/bin/ -a 0.0.0.0 -p 50000 +deployment/bin/ -a 0.0.0.0 -p 50000 ``` > User should fill in the username and device address above and ensure the correct executable is supplied.