sof/scripts/docker-run.sh

16 lines
497 B
Bash
Raw Normal View History

#!/bin/sh
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation. All rights reserved.
# Runs a given script in the docker container you can generate from the
# docker_build directory.
# Example:
# To build sof for baytrail:
# ./scripts/docker-run.sh ./scripts/xtensa-build-all.sh byt
# To build topology:
# ./scripts/docker-run.sh ./scripts/build-tools.sh
docker run -i -t -v "$(pwd)":/home/sof/work/sof.git \
--env CMAKE_BUILD_TYPE \
--user "$(id -u)" sof "$@"