mirror of https://github.com/thesofproject/sof.git
13 lines
360 B
Bash
Executable File
13 lines
360 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# 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 -v `pwd`:/home/sof/work/sof.git \
|
|
--user `id -u` sof $@
|