Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions container/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ COPY install-compilers.sh .
RUN chmod +x install-compilers.sh ; ./install-compilers.sh
COPY install-extra.sh .
RUN chmod +x install-extra.sh ; ./install-extra.sh
COPY install-buildroot.sh .
RUN chmod +x install-buildroot.sh ; ./install-buildroot.sh

RUN mkdir -p /usr/local/bin
WORKDIR /usr/local/bin
Expand Down
13 changes: 13 additions & 0 deletions container/install-buildroot.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
# for: build-doc-*

set -e

# Install packages required by Buildroot:
# https://buildroot.org/downloads/manual/manual.html#requirement-mandatory
zypper install -y --no-recommends \
gcc gcc-c++ make \
glibc-devel libstdc++-devel binutils ccache \
git wget rsync bc unzip cpio file \
which sed diffutils bash patch gzip bzip2 perl tar \
findutils gawk \