From c0cec06df85a17dcbadcadda83c2866865167c79 Mon Sep 17 00:00:00 2001 From: Jami Kettunen Date: Wed, 15 Jun 2022 18:35:37 +0300 Subject: [PATCH] pmb/config: vndbinder ANDROID_BINDER_DEVICE is required for Waydroid (MR 2190) Fixes 'ERROR: Binder node "vndbinder" for waydroid not found' during 'waydroid init'. --- pmb/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 12f27425..6ee07bde 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -339,7 +339,7 @@ necessary_kconfig_options_anbox = { "TMPFS_XATTR": True, "ANDROID_BINDER_IPC": True, "ANDROID_BINDERFS": False, - "ANDROID_BINDER_DEVICES": ["binder", "hwbinder"], + "ANDROID_BINDER_DEVICES": ["binder", "hwbinder", "vndbinder"], "NETFILTER_XTABLES": True, "NETFILTER_XT_MATCH_COMMENT": True, "IP_NF_MANGLE": True,