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 ABI compatibility with old unsupported linux kernel on amd64 #1499

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 4 additions & 0 deletions deconz/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 6.1.2

- Fix ABI compatibility with old unsupported linux kernel on amd64

## 6.1.1

- Fix LEDVANCE / OSRAM otau firmware downloader to restart each 65 seconds
Expand Down
14 changes: 13 additions & 1 deletion deconz/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]

# Install deCONZ dependencies
ARG BUILD_ARCH
RUN apt-get update \
RUN set -x \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
curl \
iproute2 \
Expand All @@ -32,6 +33,17 @@ RUN apt-get update \
xfonts-base \
xfonts-scalable \
&& rm -rf /var/lib/apt/lists/* \
&& if [[ "amd64" = "$BUILD_ARCH" ]]; \
then \
apt-get update \
&& apt-get install -y --no-install-recommends \
binutils \
&& strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5* \
&& apt-get purge -y --auto-remove \
binutils \
&& rm -rf \
/var/lib/apt/lists/*; \
fi \
&& if [[ "armhf aarch64" = *"$BUILD_ARCH"* ]]; \
then \
apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion deconz/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "deCONZ",
"version": "6.1.1",
"version": "6.1.2",
"slug": "deconz",
"description": "Control a Zigbee network with ConBee or RaspBee by Dresden Elektronik",
"arch": ["amd64", "armhf", "aarch64"],
Expand Down