aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Murphy <dmurphy@ti.com>2020-04-02 11:14:11 -0500
committerDan Murphy <dmurphy@ti.com>2020-04-02 11:14:11 -0500
commit03899183b03ff370edfe62e74e9c0d3dd6fb8ed4 (patch)
treefb0ddb1d0985d633553d52eb4eeb90205f3851e6
parent6c3e9b52b8af3455c87d6e3d16fef46e2cc5c194 (diff)
downloadlinux-dt-03899183b03ff370edfe62e74e9c0d3dd6fb8ed4.tar.gz
system_test: script: Fix copy of dt overlays
Signed-off-by: Dan Murphy <dmurphy@ti.com>
-rwxr-xr-xsystem_test/build_system_test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/system_test/build_system_test.sh b/system_test/build_system_test.sh
index f719928..76f9401 100755
--- a/system_test/build_system_test.sh
+++ b/system_test/build_system_test.sh
@@ -129,7 +129,7 @@ function copy_needed_files() {
fi
cp -v ${KERNEL_OUT}/${ARM64_DT_PATH}/*.dtb ${BASE_OUTPUT_DIR}"/"${TESTSUITE}"/device_tree/."
- cp -v ${KERNEL_OUT}/${ARM64_DT_PATH}/*.dtbo ${WORKSPACE}/build_output/${TEST_SUITE}"/device_tree/."
+ cp -v ${KERNEL_OUT}/${ARM64_DT_PATH}/*.dtbo ${BASE_OUTPUT_DIR}"/"${TESTSUITE}"/device_tree/."
cp -v $TARBALL ${BASE_OUTPUT_DIR}"/"${TESTSUITE}"/modules/"${TESTSUITE}_64bit_modules.tar
else
if [ -f ${KERNEL_OUT}/arch/arm/boot/zImage ]; then
@@ -151,7 +151,7 @@ function copy_overlay_files() {
# Need to re-copy the base DTB files as they are built now with symbols
if [ ${ARCH} = "arm64" ]; then
cp -v ${KERNEL_OUT}/${ARM64_DT_PATH}/*.dtb ${BASE_OUTPUT_DIR}"/"${TESTSUITE}"/device_tree/."
- cp -v ${KERNEL_OUT}/${ARM64_DT_PATH}/*.dtbo ${WORKSPACE}/build_output/${TEST_SUITE}"/device_tree/."
+ cp -v ${KERNEL_OUT}/${ARM64_DT_PATH}/*.dtbo ${BASE_OUTPUT_DIR}"/"${TESTSUITE}"/device_tree/."
else
cp -v ${KERNEL_OUT}/${ARM_DT_PATH}/*.dtb ${BASE_OUTPUT_DIR}"/"${TESTSUITE}"/device_tree/."
cp -v ${KERNEL_OUT}/${ARM_DT_PATH}/*.dtbo ${BASE_OUTPUT_DIR}"/"${TESTSUITE}"/device_tree/."