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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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'
},
})