diff options
author | Joel Stanley <joel@jms.id.au> | 2018-12-12 15:32:56 +1030 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2018-12-13 10:23:17 +1100 |
commit | 1a07f8b147b7e3bff392441651fded5e93055a00 (patch) | |
tree | 9be5b8988ce4aeb17f4d3ca8af4dfb7d1c93f906 | |
parent | a8e1c697ae159fc31b7788edb5b0ca7e75af19e0 (diff) | |
download | talos-skiboot-1a07f8b147b7e3bff392441651fded5e93055a00.tar.gz talos-skiboot-1a07f8b147b7e3bff392441651fded5e93055a00.zip |
ci: Add opal-utils to Debian unstable
This puts a 'pflash' in the users PATH, allowing more test coverage of
ffspart.
Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r-- | opal-ci/Dockerfile-debian-unstable | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/opal-ci/Dockerfile-debian-unstable b/opal-ci/Dockerfile-debian-unstable index 20426f97..04ff179b 100644 --- a/opal-ci/Dockerfile-debian-unstable +++ b/opal-ci/Dockerfile-debian-unstable @@ -2,7 +2,10 @@ FROM debian:unstable ENV DEBIAN_FRONTEND noninteractive RUN if [ `arch` != "ppc64le" ]; then apt-get update -qq && apt-get install -y gcc-powerpc64le-linux-gnu; fi RUN apt-get update -qq && apt-get install -y gcc-arm-linux-gnueabi || true -RUN apt-get update -qq && apt-get install -y gcc ccache expect libssl-dev wget curl xterm device-tree-compiler build-essential gcc python g++ pkg-config libz-dev libglib2.0-dev libpixman-1-dev libfdt-dev git libstdc++6 valgrind libtcl8.6 clang qemu-system-ppc +RUN apt-get update -qq && apt-get install -y gcc ccache expect libssl-dev wget \ + curl xterm device-tree-compiler build-essential gcc python g++ pkg-config \ + libz-dev libglib2.0-dev libpixman-1-dev libfdt-dev git libstdc++6 valgrind \ + libtcl8.6 clang qemu-system-ppc opal-utils RUN if [ `arch` = "x86_64" ]; then curl -O http://public.dhe.ibm.com/software/server/powerfuncsim/p9/packages/v1.1-0/systemsim-p9-1.1-0-trusty_amd64.deb; dpkg -i systemsim-p9-1.1-0-trusty_amd64.deb; fi COPY . /build/ WORKDIR /build |