removed q7s/watchdog and q7s/simple configurations scripts, as there is no special configuration needed any more
This commit is contained in:
parent
00042af77c
commit
e59a98f11c
@ -1,36 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
counter=0
|
|
||||||
cfg_script_name="cmake-build-cfg.py"
|
|
||||||
while [ ${counter} -lt 5 ]
|
|
||||||
do
|
|
||||||
cd ..
|
|
||||||
if [ -f ${cfg_script_name} ];then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
counter=$((counter=counter + 1))
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "${counter}" -ge 5 ];then
|
|
||||||
echo "${cfg_script_name} not found in upper directories!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
os_fsfw="linux"
|
|
||||||
tgt_bsp="arm/q7s"
|
|
||||||
build_dir="build-Simple-Q7S"
|
|
||||||
build_generator=""
|
|
||||||
definitions="BUILD_Q7S_SIMPLE_MODE=On"
|
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
|
||||||
build_generator="MinGW Makefiles"
|
|
||||||
python="py"
|
|
||||||
# Could be other OS but this works for now.
|
|
||||||
else
|
|
||||||
build_generator="Unix Makefiles"
|
|
||||||
python="python3"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Running command (without the leading +):"
|
|
||||||
set -x # Print command
|
|
||||||
${python} ${cfg_script_name} -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
|
||||||
-l "${build_dir}" -d "${definitions}"
|
|
||||||
# set +x
|
|
@ -1,35 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
counter=0
|
|
||||||
cfg_script_name="cmake-build-cfg.py"
|
|
||||||
while [ ${counter} -lt 5 ]
|
|
||||||
do
|
|
||||||
cd ..
|
|
||||||
if [ -f ${cfg_script_name} ];then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
counter=$((counter=counter + 1))
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "${counter}" -ge 5 ];then
|
|
||||||
echo "${cfg_script_name} not found in upper directories!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
os_fsfw="linux"
|
|
||||||
tgt_bsp="arm/q7s"
|
|
||||||
build_dir="build-Simple-Q7S"
|
|
||||||
build_generator="Ninja"
|
|
||||||
definitions="BUILD_Q7S_SIMPLE_MODE=On"
|
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
|
||||||
python="py"
|
|
||||||
# Could be other OS but this works for now.
|
|
||||||
else
|
|
||||||
python="python3"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Running command (without the leading +):"
|
|
||||||
set -x # Print command
|
|
||||||
${python} ${cfg_script_name} -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
|
||||||
-l "${build_dir}" -d "${definitions}"
|
|
||||||
# set +x
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
counter=0
|
|
||||||
cfg_script_name="cmake-build-cfg.py"
|
|
||||||
while [ ${counter} -lt 5 ]
|
|
||||||
do
|
|
||||||
cd ..
|
|
||||||
if [ -f ${cfg_script_name} ];then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
counter=$((counter=counter + 1))
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "${counter}" -ge 5 ];then
|
|
||||||
echo "${cfg_script_name} not found in upper directories!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
os_fsfw="linux"
|
|
||||||
tgt_bsp="arm/q7s"
|
|
||||||
build_dir="build-Debug-Watchdog"
|
|
||||||
build_generator=""
|
|
||||||
definitions="EIVE_BUILD_WATCHDOG=ON"
|
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
|
||||||
build_generator="MinGW Makefiles"
|
|
||||||
python="py"
|
|
||||||
# Could be other OS but this works for now.
|
|
||||||
else
|
|
||||||
build_generator="Unix Makefiles"
|
|
||||||
python="python3"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Running command (without the leading +):"
|
|
||||||
set -x # Print command
|
|
||||||
${python} ${cfg_script_name} -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
|
||||||
-d "${definitions}" -l"${build_dir}"
|
|
||||||
# set +x
|
|
||||||
|
|
@ -1,36 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
counter=0
|
|
||||||
while [ ${counter} -lt 5 ]
|
|
||||||
do
|
|
||||||
cd ..
|
|
||||||
if [ -f "cmake_build_config.py" ];then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
counter=$((counter=counter + 1))
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "${counter}" -ge 5 ];then
|
|
||||||
echo "cmake_build_config.py not found in upper directories!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
os_fsfw="linux"
|
|
||||||
tgt_bsp="arm/q7s"
|
|
||||||
build_dir="build-Release-Watchdog"
|
|
||||||
build_generator=""
|
|
||||||
definitions="EIVE_BUILD_WATCHDOG=ON"
|
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
|
||||||
build_generator="MinGW Makefiles"
|
|
||||||
python="py"
|
|
||||||
# Could be other OS but this works for now.
|
|
||||||
else
|
|
||||||
build_generator="Unix Makefiles"
|
|
||||||
python="python3"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Running command (without the leading +):"
|
|
||||||
set -x # Print command
|
|
||||||
${python} cmake_build_config.py -o "${os_fsfw}" -g "${build_generator}" -b "release" -t "${tgt_bsp}" \
|
|
||||||
-d "${definitions} -l"${build_dir}"
|
|
||||||
# set +x
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
counter=0
|
|
||||||
cfg_script_name="cmake-build-cfg.py"
|
|
||||||
while [ ${counter} -lt 5 ]
|
|
||||||
do
|
|
||||||
cd ..
|
|
||||||
if [ -f ${cfg_script_name} ];then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
counter=$((counter=counter + 1))
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "${counter}" -ge 5 ];then
|
|
||||||
echo "${cfg_script_name} not found in upper directories!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
os_fsfw="linux"
|
|
||||||
tgt_bsp="arm/q7s"
|
|
||||||
build_dir="build-Debug-Watchdog"
|
|
||||||
build_generator="Ninja"
|
|
||||||
definitions="EIVE_BUILD_WATCHDOG=ON"
|
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
|
||||||
python="py"
|
|
||||||
# Could be other OS but this works for now.
|
|
||||||
else
|
|
||||||
python="python3"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Running command (without the leading +):"
|
|
||||||
set -x # Print command
|
|
||||||
${python} ${cfg_script_name} -o "${os_fsfw}" -g "${build_generator}" -b "debug" -t "${tgt_bsp}" \
|
|
||||||
-d "${definitions}" -l "${build_dir}"
|
|
||||||
# set +x
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
counter=0
|
|
||||||
cfg_script_name="cmake-build-cfg.py"
|
|
||||||
while [ ${counter} -lt 5 ]
|
|
||||||
do
|
|
||||||
cd ..
|
|
||||||
if [ -f ${cfg_script_name} ];then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
counter=$((counter=counter + 1))
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "${counter}" -ge 5 ];then
|
|
||||||
echo "${cfg_script_name} not found in upper directories!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
os_fsfw="linux"
|
|
||||||
tgt_bsp="arm/q7s"
|
|
||||||
build_dir="build-Release-Watchdog"
|
|
||||||
build_generator="Ninja"
|
|
||||||
definitions="EIVE_BUILD_WATCHDOG=ON"
|
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
|
||||||
python="py"
|
|
||||||
# Could be other OS but this works for now.
|
|
||||||
else
|
|
||||||
python="python3"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Running command (without the leading +):"
|
|
||||||
set -x # Print command
|
|
||||||
${python} ${cfg_script_name} -o "${os_fsfw}" -g "${build_generator}" -b "release" -t "${tgt_bsp}" \
|
|
||||||
-d "${definitions}" -l"${build_dir}"
|
|
||||||
# set +x
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user