[Sound-open-firmware] [PATCH] scripts: Modify Docker Ubuntu version
From: Prashant Malani pmalani@google.com
This ensures that the ubuntu version we use has the right versions of Open SSL. Without this, the rimage compilation will fail with the following error:
pkcs1_5.c: In function 'pkcs_sign': pkcs1_5.c:117:20: error: dereferencing pointer to incomplete type 'RSA {aka struct rsa_st}'
Signed-off-by: Prashant Malani pmalani@google.com Acked-by: Dylan Reid dgreid@chromium.org --- scripts/docker_build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/docker_build/Dockerfile b/scripts/docker_build/Dockerfile index 6b587e29..7ee0a451 100644 --- a/scripts/docker_build/Dockerfile +++ b/scripts/docker_build/Dockerfile @@ -14,7 +14,7 @@ # docker run -it -v <insert sof dir here>:/home/sof/work/sof.git -v <soft git dir>:/home/sof/work/soft.git --user `id -u` sof ./incremental.sh #
-FROM ubuntu +FROM ubuntu:16.04 ARG UID=1000
RUN apt-get -y update && \
participants (1)
-
Liam Girdwood