From 2f182a5e2185e2f564b1a03f42a6ecdbd4f1c0e1 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 6 May 2022 15:41:29 +0200 Subject: [PATCH] docs --- scripts/install-obsw-yocto.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/install-obsw-yocto.sh b/scripts/install-obsw-yocto.sh index d7354f27..1e112a3d 100755 --- a/scripts/install-obsw-yocto.sh +++ b/scripts/install-obsw-yocto.sh @@ -1,4 +1,6 @@ #!/bin/bash +# This is a helper script to install the compiles EIVE OBSW files +# into the yocto repository to re-generate the mission root filesystem init_dir=$(pwd) build_dir=cmake-build-release-q7s @@ -58,7 +60,7 @@ fi if [ ! -f ${build_dir}/${watchdog_bin_name} ]; then echo "No EIVE Watchdog found to intall to yocto" else - cp_cmd="cp $(pwd)/${build_dir}/${watchdog_bin_name} ${yocto_root}/${yocto_obsw_path}/${watchdog_target_name}" + cp_cmd="cp $(pwd)/${build_dir}/${watchdog_bin_name} ${yocto_root}/${yocto_watchdog_path}/${watchdog_target_name}" echo "Executing: ${cp_cmd}" eval ${cp_cmd} echo "Installed EIVE watchdog into yocto repository successfully"