Skip to content

Commit ec14f8b

Browse files
committed
ci: add buildroot dependencies to install list
Signed-off-by: Ozan Durgut <ozan.durgut@analog.com>
1 parent 7d9eeda commit ec14f8b

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

container/Containerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ COPY install-compilers.sh .
2626
RUN chmod +x install-compilers.sh ; ./install-compilers.sh
2727
COPY install-extra.sh .
2828
RUN chmod +x install-extra.sh ; ./install-extra.sh
29+
COPY install-buildroot.sh .
30+
RUN chmod +x install-buildroot.sh ; ./install-buildroot.sh
2931

3032
RUN mkdir -p /usr/local/bin
3133
WORKDIR /usr/local/bin

container/install-buildroot.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
# for: build-doc-*
3+
4+
set -e
5+
6+
# Install packages required by Buildroot
7+
zypper install -y --no-recommends \
8+
gcc gcc-c++ make wget rsync cpio bc unzip file \
9+
git python3 tar xz gzip patch which

0 commit comments

Comments
 (0)