mirror of
https://github.com/waydroid/waydroid.git
synced 2026-05-19 14:16:08 -04:00
87 lines
3.0 KiB
Python
87 lines
3.0 KiB
Python
# Copyright 2021 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
import os
|
|
import pwd
|
|
|
|
#
|
|
# Exported functions
|
|
#
|
|
from tools.config.load import load, load_channels
|
|
from tools.config.save import save
|
|
|
|
#
|
|
# Exported variables (internal configuration)
|
|
#
|
|
version = "1.6.2"
|
|
tools_src = os.path.normpath(os.path.realpath(__file__) + "/../../..")
|
|
|
|
# Keys saved in the config file (mostly what we ask in 'waydroid init')
|
|
config_keys = ["arch",
|
|
"images_path",
|
|
"vendor_type",
|
|
"system_datetime",
|
|
"vendor_datetime",
|
|
"suspend_action",
|
|
"mount_overlays",
|
|
"auto_adb"]
|
|
|
|
# Config file/commandline default values
|
|
# $WORK gets replaced with the actual value for args.work (which may be
|
|
# overridden on the commandline)
|
|
defaults = {
|
|
"arch": "arm64",
|
|
"work": "/var/lib/waydroid",
|
|
"vendor_type": "MAINLINE",
|
|
"system_datetime": "0",
|
|
"vendor_datetime": "0",
|
|
"preinstalled_images_paths": [
|
|
"/etc/waydroid-extra/images",
|
|
"/usr/share/waydroid-extra/images",
|
|
],
|
|
"suspend_action": "freeze",
|
|
"mount_overlays": "True",
|
|
"auto_adb": "False",
|
|
"container_xdg_runtime_dir": "/run/xdg",
|
|
"container_wayland_display": "wayland-0",
|
|
}
|
|
defaults["images_path"] = defaults["work"] + "/images"
|
|
defaults["rootfs"] = defaults["work"] + "/rootfs"
|
|
defaults["overlay"] = defaults["work"] + "/overlay"
|
|
defaults["overlay_rw"] = defaults["work"] + "/overlay_rw"
|
|
defaults["overlay_work"] = defaults["work"] + "/overlay_work"
|
|
defaults["data"] = defaults["work"] + "/data"
|
|
defaults["lxc"] = defaults["work"] + "/lxc"
|
|
defaults["host_perms"] = defaults["work"] + "/host-permissions"
|
|
defaults["container_pulse_runtime_path"] = defaults["container_xdg_runtime_dir"] + "/pulse"
|
|
|
|
session_defaults = {
|
|
"user_name": pwd.getpwuid(os.getuid()).pw_name,
|
|
"user_id": str(os.getuid()),
|
|
"group_id": str(os.getgid()),
|
|
"host_user": os.path.expanduser("~"),
|
|
"pid": str(os.getpid()),
|
|
"xdg_data_home": str(os.environ.get('XDG_DATA_HOME', os.path.expanduser("~") + "/.local/share")),
|
|
"xdg_runtime_dir": str(os.environ.get('XDG_RUNTIME_DIR')),
|
|
"wayland_display": str(os.environ.get('WAYLAND_DISPLAY')),
|
|
"pulse_runtime_path": str(os.environ.get('PULSE_RUNTIME_PATH')),
|
|
"state": "STOPPED",
|
|
"lcd_density": "0",
|
|
"background_start": "true"
|
|
}
|
|
session_defaults["waydroid_user_state"] = session_defaults["xdg_data_home"] + "/waydroid"
|
|
session_defaults["waydroid_data"] = session_defaults["waydroid_user_state"] + "/data"
|
|
if session_defaults["pulse_runtime_path"] == "None":
|
|
session_defaults["pulse_runtime_path"] = session_defaults["xdg_runtime_dir"] + "/pulse"
|
|
|
|
channels_defaults = {
|
|
"config_path": "/usr/share/waydroid-extra/channels.cfg",
|
|
"system_channel": "https://ota.waydro.id/system",
|
|
"vendor_channel": "https://ota.waydro.id/vendor",
|
|
"rom_type": "lineage",
|
|
"system_type": "VANILLA"
|
|
}
|
|
channels_config_keys = ["system_channel",
|
|
"vendor_channel",
|
|
"rom_type",
|
|
"system_type"]
|