Fix deCONZ armhf issues & wiringpi on aarch64

This commit is contained in:
Pascal Vizeli
2020-07-20 15:50:21 +02:00
committed by GitHub
parent 5b40cf506c
commit 9e67f09875
4 changed files with 8 additions and 3 deletions

View File

@@ -1,5 +1,10 @@
# Changelog
## 6.1.0
- Fix issue with armhf / move back to raspbian
- Add wiringPi to aarch64
## 6.0.1
- Fix wiringPi and built it from source

View File

@@ -32,7 +32,7 @@ RUN apt-get update \
xfonts-base \
xfonts-scalable \
&& rm -rf /var/lib/apt/lists/* \
&& if [ "${BUILD_ARCH}" = "armhf" ]; \
&& if [[ "armhf aarch64" = *"$BUILD_ARCH"* ]]; \
then \
apt-get update \
&& apt-get install -y --no-install-recommends \

View File

@@ -2,7 +2,7 @@
"build_from": {
"aarch64": "homeassistant/aarch64-base-debian:buster",
"amd64": "homeassistant/amd64-base-debian:buster",
"armhf": "homeassistant/armhf-base-debian:buster"
"armhf": "homeassistant/armhf-base-raspbian:buster"
},
"args": {
"DECONZ_VERSION": "2.05.79"

View File

@@ -1,6 +1,6 @@
{
"name": "deCONZ",
"version": "6.0.1",
"version": "6.1.0",
"slug": "deconz",
"description": "Control a Zigbee network with ConBee or RaspBee by Dresden Elektronik",
"arch": ["amd64", "armhf", "aarch64"],