Add note why we're not forwarding /dev/alarm

This commit is contained in:
Simon Fels 2016-06-23 12:50:31 +02:00
commit 4e9d39af9e

View file

@ -97,6 +97,11 @@ anbox::cmds::Run::Run()
spec.temporary_dirs.push_back("/cache");
spec.temporary_dirs.push_back("/storage");
spec.temporary_dirs.push_back("/dev/input");
// NOTE: We're not mapping /dev/alarm here as if its not available
// Android will automatically use its timerfd based fallback
// implementation instead.
// We isolate the container from accessing binder nodes of the host
// through the IPC namespace which gets support for binder with extra
// patches we require.