diff --git a/bluetooth_bcm43xx/Dockerfile b/bluetooth_bcm43xx/Dockerfile index 756dbaa..14b11b0 100644 --- a/bluetooth_bcm43xx/Dockerfile +++ b/bluetooth_bcm43xx/Dockerfile @@ -4,7 +4,13 @@ FROM %%BASE_IMAGE%% ENV LANG C.UTF-8 # Setup base -RUN apk add --no-cache tzdata jq bluez +RUN apk add --no-cache tzdata jq bluez git + +# Install firmware +RUN git clone --depth 1 https://github.com/RPi-Distro/firmware-nonfree /tmp/firmware \ + && mkdir -p /lib/firmware/brcm \ + && cp -f /tmp/firmware/brcm80211/brcm/* /lib/firmware/brcm/ \ + && rm -rf /tmp/firmware # Copy data COPY run.sh / diff --git a/bluetooth_bcm43xx/config.json b/bluetooth_bcm43xx/config.json index df96a72..98f73fb 100644 --- a/bluetooth_bcm43xx/config.json +++ b/bluetooth_bcm43xx/config.json @@ -1,6 +1,6 @@ { "name": "Bluetooth BCM43xx", - "version": "0.1", + "version": "0.2", "slug": "Bluetooth_bcm43xx", "description": "Activate bluetooth for bcm43xx", "url": "https://home-assistant.io/addons/Bluetooth_bcm43xx/",