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 ipaddress import ip_network
HASSIO_VERSION = '112'
HASSIO_VERSION = '113'
URL_HASSIO_ADDONS = "https://github.com/home-assistant/hassio-addons"
URL_HASSIO_VERSION = \

View File

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