From 23d9c78a5c1f26c60ebd19736f096a6bdfff9299 Mon Sep 17 00:00:00 2001 From: Curtis Malainey Date: Thu, 29 Aug 2019 15:56:05 -0700 Subject: [PATCH] scripts: allocate tty on docker Bash and menuconfig cannot run without this flag. Docker-run just hangs without it Signed-off-by: Curtis Malainey --- scripts/docker-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docker-run.sh b/scripts/docker-run.sh index 91a7f26a7..ce0f3d618 100755 --- a/scripts/docker-run.sh +++ b/scripts/docker-run.sh @@ -10,5 +10,5 @@ # To build topology: # ./scripts/docker-run.sh ./scripts/build-tools.sh -docker run -i -v `pwd`:/home/sof/work/sof.git \ +docker run -i -t -v `pwd`:/home/sof/work/sof.git \ --user `id -u` sof $@