X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/blobdiff_plain/3f5b3ce6eff6f8cfdb64c3be19fa3aeb6351926e..3e6872c0fd97dd5463d07315548187ad16a1eda1:/tools/config/__init__.py?ds=sidebyside diff --git a/tools/config/__init__.py b/tools/config/__init__.py index 2f726d6..002562e 100644 --- a/tools/config/__init__.py +++ b/tools/config/__init__.py @@ -12,7 +12,7 @@ from tools.config.save import save # # Exported variables (internal configuration) # -version = "1.4.1" +version = "1.4.2" tools_src = os.path.normpath(os.path.realpath(__file__) + "/../../..") # Keys saved in the config file (mostly what we ask in 'waydroid init') @@ -22,7 +22,8 @@ config_keys = ["arch", "system_datetime", "vendor_datetime", "suspend_action", - "mount_overlays"] + "mount_overlays", + "auto_adb"] # Config file/commandline default values # $WORK gets replaced with the actual value for args.work (which may be @@ -39,6 +40,7 @@ defaults = { ], "suspend_action": "freeze", "mount_overlays": "True", + "auto_adb": "True", } defaults["images_path"] = defaults["work"] + "/images" defaults["rootfs"] = defaults["work"] + "/rootfs"