From 1c3e40ea2b6edd7c8deabc8fa70074b5059b3fde Mon Sep 17 00:00:00 2001 From: Sylvain Prat Date: Thu, 9 Dec 2021 09:21:39 +0100 Subject: [PATCH] Fixes #3738: add missing devices to acpid According to busybox' acpid code, acpid should be allowed to access /dev/input/event*, so we all all "input" devices (whose major number is 13) Signed-off-by: Sylvain Prat --- pkg/acpid/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkg/acpid/build.yml b/pkg/acpid/build.yml index 41bb44319..30caff530 100644 --- a/pkg/acpid/build.yml +++ b/pkg/acpid/build.yml @@ -1,5 +1,9 @@ image: acpid config: binds: - - /dev:/dev + - /dev:/dev + devices: + - path: all + type: c + major: 13 pid: host