1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 12:29:08 +00:00

Fix wrong mount options for devicetree (#548)

This commit is contained in:
Pascal Vizeli
2018-07-03 18:44:45 +02:00
committed by GitHub
parent 806161e3ac
commit 5820d16419

View File

@@ -217,7 +217,7 @@ class DockerAddon(DockerInterface):
if self.addon.with_devicetree:
volumes.update({
"/sys/firmware/devicetree": {
'bind': "/sys/firmware/devicetree", 'mode': 'r'
'bind': "/sys/firmware/devicetree", 'mode': 'ro'
},
})