From 63c61c1cb96ae12e89ed7875cde5466d752575f5 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 12 Mar 2023 16:13:23 +0100 Subject: [PATCH] kconfig_options_waydroid: order alphabetically Reviewed-by: Clayton Craft Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20230312151325.1968-17-ollieparanoid@postmarketos.org%3E --- pmb/config/__init__.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 0d460a4c..b2656094 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -357,23 +357,23 @@ kconfig_options = { kconfig_options_waydroid = { ">=0.0.0": { # all versions "all": { # all arches - "SQUASHFS": True, - "SQUASHFS_XZ": True, - "SQUASHFS_XATTR": True, - "TMPFS_XATTR": True, - "ANDROID_BINDER_IPC": True, "ANDROID_BINDERFS": False, "ANDROID_BINDER_DEVICES": ["binder", "hwbinder", "vndbinder"], + "ANDROID_BINDER_IPC": True, + "BLK_DEV_LOOP": True, + "BRIDGE": True, + "BRIDGE_VLAN_FILTERING": True, + "FUSE_FS": True, + "IP_NF_MANGLE": True, "NETFILTER_XTABLES": True, "NETFILTER_XT_MATCH_COMMENT": True, - "IP_NF_MANGLE": True, - "FUSE_FS": True, - "BLK_DEV_LOOP": True, + "SQUASHFS": True, + "SQUASHFS_XATTR": True, + "SQUASHFS_XZ": True, + "TMPFS_XATTR": True, "TUN": True, "VETH": True, "VLAN_8021Q": True, # prerequisite for bridge - "BRIDGE": True, - "BRIDGE_VLAN_FILTERING": True, } }, ">=3.5": {