1#!/bin/sh 2# SPDX-License-Identifier: BSD-3-Clause 3# Copyright(c) 2018 Intel Corporation. All rights reserved. 4 5# Runs a given script in the docker container you can generate from the 6# docker_build directory. 7# Example: 8# ./scripts/docker-qemu.sh ../sof.git/scripts/qemu-check.sh 9 10 11docker run -i --shm-size=512m --privileged -v `pwd`:/home/sof/sof.git \ 12 --user `id -u` sofqemu $@ 13