update shell script helper to support EM installation
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2022-05-19 14:48:16 +02:00
parent 8eaae461b4
commit 847aadc7bf
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

@ -1,9 +1,16 @@
#!/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
build_dir=cmake-build-release-q7s
if [ !-z ${1} ]; then
if [ ${1} == "em" ]; then
echo "-I- Installing EM binaries"
build_dir=cmake-build-release-q7s-em
fi
fi
init_dir=$(pwd)
build_dir=cmake-build-release-q7s
obsw_root=""
q7s_yocto_dir="q7s-yocto"
q7s_package_path="q7s-package/${q7s_yocto_dir}"