This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch inserted_src in repository toolchain/semiautobench.
commit 4c00f03f8fd4224949c2672e202c4ab8890f54ed Author: Bernard Ogden bernie.ogden@linaro.org Date: Fri Jul 24 15:48:18 2015 +0200
Change variable name from target_base to target_type
Better maps to the LAVA concept
Change-Id: I220635d04a92ac6126c5ac7cc0a73e93952a8527 --- invoke_session_debian | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/invoke_session_debian b/invoke_session_debian index b76ddc8..6809d37 100755 --- a/invoke_session_debian +++ b/invoke_session_debian @@ -109,12 +109,12 @@ for lava_name in `lava-group | grep -v '[[:blank:]]*host$' | [...] fi
#Generate configuration files for target - target_base="$(echo ${lava_name} | sed 's/[[:digit:]]*$//')" #TODO: HACK + target_type="$(echo ${lava_name} | sed 's/[[:digit:]]*$//')" #TODO: HACK if test $? -ne 0; then echo "Failed to find target type from ${lava_name}"; exit 1; fi - sed "s/^ip=.*/ip=${target_ip}/" "${ABE_DIR}/config/boards/bench/${target_base}.c [...] + sed "s/^ip=.*/ip=${target_ip}/" "${ABE_DIR}/config/boards/bench/${target_type}.c [...] if test $? -ne 0; then echo "Failed to generate config file for target ${lava_na [...]
- cp "${ABE_DIR}/config/boards/bench/${target_base}.services" "${ABE_DIR}/config/b [...] + cp "${ABE_DIR}/config/boards/bench/${target_type}.services" "${ABE_DIR}/config/b [...] if test $? -ne 0; then echo "Failed to generate services file for target ${lava_ [...]
#Add target to list for Benchmark.job