Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: missing dependencies and misconfig #197

Open
wants to merge 2 commits into
base: next
Choose a base branch
from
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
3 changes: 3 additions & 0 deletions external/config/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ RUN apt-get update \
dwarves \
f2fs-tools \
fakeroot \
fdisk \
flex \
g++-8-arm-linux-gnueabihf \
gawk \
Expand Down Expand Up @@ -118,6 +119,8 @@ RUN locale-gen en_US.UTF-8
RUN sed -i 's/\(^STATDOPTS=\).*/\1"--port 32765 --outgoing-port 32766"/' /etc/default/nfs-common \
&& sed -i 's/\(^RPCMOUNTDOPTS=\).*/\1"--port 32767"/' /etc/default/nfs-kernel-server

RUN echo 'loop max_loop=128' >> /etc/modules

ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' TERM=screen
WORKDIR /root/orangepi
LABEL org.opencontainers.image.source="https://github.com/orangepi-xunlong/orangepi-build/blob/main/external/config/templates/Dockerfile" \
Expand Down
1 change: 1 addition & 0 deletions scripts/distributions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,7 @@ If `KERNELSOURCE` is (still?) unset after this, Armbian-built firmware will not
POST_INSTALL_KERNEL_DEBS

# install board support packages
install_deb_chroot "lsb-release" remote
if [[ "${REPOSITORY_INSTALL}" != *bsp* ]]; then
install_deb_chroot "${DEB_STORAGE}/$RELEASE/${BSP_CLI_PACKAGE_FULLNAME}.deb"
else
Expand Down