Make xtrct_small_copy_dir optional parameter
The job that builds SDK’s requires this option.
build-setup.sh defaults to copying the normal
obmc-phosphor-image bitbake artifacts out of
the build directory. The SDK artifacts are
stored in a different directory so the jobs
which build SDK's needs a way to tell
build-setup.sh where to copy these artifacts
from.
Change-Id: Ifb7c7e037e8ff3fe911b88d119a2b0b450567379
Signed-off-by: Michael Shepos <shepos@us.ibm.com>
diff --git a/build-setup.sh b/build-setup.sh
index 8eff5f5..b08e619 100755
--- a/build-setup.sh
+++ b/build-setup.sh
@@ -41,6 +41,20 @@
# obmc_dir Path of the OpenBMC repo directory used as a reference
# for the build inside the container.
# Default: "${WORKSPACE}/openbmc"
+# xtrct_small_copy_dir
+# Directory within build_dir that should be copied to
+# xtrct_path. The directory and all parents up to, but not
+# including, build_dir will be copied. For example, if
+# build_dir is set to "/tmp/openbmc" and this is set to
+# "build/tmp", the directory at xtrct_path will have the
+# following directory structure:
+# xtrct_path
+# | - build
+# | - tmp
+# ...
+# Can also be set to the empty string to copy the entire
+# contents of build_dir to xtrct_path.
+# Default: "deploy/images".
#
###############################################################################
# Trace bash processing. Set -e so when a step fails, we fail the build
@@ -61,7 +75,7 @@
# Deployment variables
obmc_dir=${obmc_dir:-${WORKSPACE}/openbmc}
ssc_dir=${HOME}
-xtrct_small_copy_dir="deploy/images"
+xtrct_small_copy_dir=${xtrct_small_copy_dir:-deploy/images}
xtrct_path="${obmc_dir}/build/tmp"
xtrct_copy_timeout="300"