zephyr/docker-run.sh: show zephyr-build OS with lsb_release -a

Logging what the container is made of will help diagnose binary
incompatibilities or other problems.

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2022-11-21 20:34:50 +00:00 committed by Liam Girdwood
parent 51310587f0
commit 7d9de28ef1
1 changed files with 5 additions and 0 deletions

View File

@ -47,8 +47,13 @@ main()
cd "$SOF_TOP" cd "$SOF_TOP"
run_command lsb_release -a
set -x set -x
run_command "$@"
}
run_command()
{
docker run -i -v "$(west topdir)":/zep_workspace \ docker run -i -v "$(west topdir)":/zep_workspace \
--workdir /zep_workspace \ --workdir /zep_workspace \
$SOF_DOCKER_RUN \ $SOF_DOCKER_RUN \