Fix EM build: Use BPX Batt dummy

This commit is contained in:
2025-02-06 13:07:36 +01:00
parent ea6dbb6454
commit a9204fb042
25 changed files with 172 additions and 50 deletions

View File

@ -29,7 +29,7 @@ else
echo "No ${cmake_fmt} tool found, not formatting CMake files"
fi
cpp_format="clang-format"
cpp_format="clang-format-19"
file_selectors="( -iname *.h -o -iname *.cpp -o -iname *.c -o -iname *.tpp )"
file_excludes="( -not -iname translateObjects.cpp -not -iname translateEvents.cpp )"
if command -v ${cpp_format} &> /dev/null; then

View File

@ -84,6 +84,8 @@ def build_cmd(args):
cmd = "scp "
if args.recursive:
cmd += "-r "
# Necessary to avoid some errors related to SFTP server of OBSW.
cmd += "-O "
address = ""
port_args = ""
target = args.target
@ -99,7 +101,7 @@ def build_cmd(args):
target = args.target
else:
if target == "":
target = f"/tmp"
target = "/tmp"
else:
target = args.target
# accepted_key_rsa_args = "-o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedKeyTypes=+ssh-rsa"