Allow privileged capability SYS_RAWIO (#136)

In order to allow writes to /dev/mem, which is needed e.g. to use the
GPIO ports on Raspberry Pi, the SYS_RAWIO capability needs to be
granted.

Fixes #134.
This commit is contained in:
William Johansson 2017-08-07 21:58:57 +02:00 committed by Pascal Vizeli
parent 46f323791d
commit eaa489abec

View File

@ -38,6 +38,7 @@ STARTUP_ALL = [
PRIVILEGED_ALL = [
"NET_ADMIN",
"SYS_ADMIN",
"SYS_RAWIO"
]