Install more stuff we need
I've been manually `apt install`ing these packages for a while for every build of the kernel. Today I finally fixed that. This makes the build time lower for every kernel build, and prevents it from needing to reach out to ubuntu's servers every time.
This commit is contained in:
parent
86f6097e7a
commit
7c6363debe
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,8 @@ FROM ubuntu:${VARIANT}
|
|||
|
||||
RUN DEBIAN_FRONTEND="noninteractive" apt-get update && \
|
||||
DEBIAN_FRONTEND="noninteractive" apt-get -y install \
|
||||
patch ninja-build make bc ccache gcc libncurses-dev
|
||||
patch ninja-build make bc ccache gcc libncurses-dev \
|
||||
kmod bison flex libssl-dev openssl
|
||||
|
||||
COPY --from=build /root/x-tools/powerpc-unknown-linux-gnu/ /usr/local/crosstool
|
||||
COPY --from=build /build/hbc/channel/wiiload/wiiload /usr/local/crosstool/bin/wiiload
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue