Merge remote-tracking branch 'origin/dev'

Release 113
This commit is contained in:
Pascal Vizeli 2018-07-04 00:51:36 +02:00
commit c40a3f18e9
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
from pathlib import Path from pathlib import Path
from ipaddress import ip_network from ipaddress import ip_network
HASSIO_VERSION = '112' HASSIO_VERSION = '113'
URL_HASSIO_ADDONS = "https://github.com/home-assistant/hassio-addons" URL_HASSIO_ADDONS = "https://github.com/home-assistant/hassio-addons"
URL_HASSIO_VERSION = \ URL_HASSIO_VERSION = \

View File

@ -216,8 +216,8 @@ class DockerAddon(DockerInterface):
# DeviceTree support # DeviceTree support
if self.addon.with_devicetree: if self.addon.with_devicetree:
volumes.update({ volumes.update({
"/sys/firmware/devicetree": { "/sys/firmware/devicetree/base": {
'bind': "/sys/firmware/devicetree", 'mode': 'ro' 'bind': "/proc/device-tree", 'mode': 'ro'
}, },
}) })