forked from Mirror/pmbootstrap
Move pmb/parse/arch.py over to core and refactor it as an Arch type, similar to how Chroot was done. Fix all the uses (that I can find) of arch in the codebase that need adjusting. The new Arch type is an Enum, making it clear what architectures can be represented and making it much easier to reason about. Since we support ~5 (kinda) different representations of an Architecture (Alpine, Kernel, target triple, platform, and QEMU), we now formalise that the Alpine format is what we represent internally, with methods to convert to any of the others as-needed. Signed-off-by: Caleb Connolly <caleb@postmarketos.org>
156 lines
3.4 KiB
Python
156 lines
3.4 KiB
Python
# Copyright 2024 Caleb Connolly
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from argparse import Namespace
|
|
from pathlib import Path
|
|
from typing import Dict, List, Optional, Tuple, TypedDict, Union
|
|
|
|
from pmb.core.arch import Arch
|
|
|
|
PathString = Union[Path, str]
|
|
Env = Dict[str, PathString]
|
|
|
|
# These types are not definitive / API, they exist to describe the current
|
|
# state of things so that we can improve our type hinting coverage and make
|
|
# future refactoring efforts easier.
|
|
|
|
class PartitionLayout(TypedDict):
|
|
kernel: Optional[int]
|
|
boot: int
|
|
reserve: Optional[int]
|
|
root: int
|
|
|
|
class AportGenEntry(TypedDict):
|
|
prefixes: List[str]
|
|
confirm_overwrite: bool
|
|
|
|
# Property list generated with:
|
|
# $ rg --vimgrep "((^|\s)args\.\w+)" --only-matching | cut -d"." -f3 | sort | uniq
|
|
class PmbArgs(Namespace):
|
|
devicesdhbfvhubsud: str
|
|
action_flasher: str
|
|
action_initfs: str
|
|
action_kconfig: str
|
|
action_netboot: str
|
|
add: str
|
|
all: bool
|
|
all_git: str
|
|
all_stable: str
|
|
android_recovery_zip: str
|
|
aports: Optional[Path]
|
|
_aports_real: str
|
|
arch: Arch
|
|
as_root: str
|
|
assume_yes: str
|
|
auto: str
|
|
autoinstall: str
|
|
boot_size: str
|
|
build_default_device_arch: str
|
|
buildroot: str
|
|
built: str
|
|
ccache_size: str
|
|
cipher: str
|
|
clear_log: bool
|
|
cmdline: str
|
|
command: str
|
|
config: Path
|
|
cross: bool
|
|
details: bool
|
|
details_to_stdout: bool
|
|
deviceinfo_parse_kernel: str
|
|
devices: str
|
|
disk: Path
|
|
dry: str
|
|
efi: str
|
|
envkernel: str
|
|
export_folder: Path
|
|
extra_space: str
|
|
fast: str
|
|
file: str
|
|
filesystem: str
|
|
flash_method: str
|
|
folder: str
|
|
force: bool
|
|
fork_alpine: str
|
|
# This is a filthy lie
|
|
from_argparse: "PmbArgs"
|
|
full_disk_encryption: str
|
|
hook: str
|
|
host: str
|
|
host_qemu: str
|
|
image_size: str
|
|
install_base: str
|
|
install_blockdev: str
|
|
install_cgpt: str
|
|
install_key: bool
|
|
install_local_pkgs: str
|
|
install_recommends: str
|
|
is_default_channel: str
|
|
iter_time: str
|
|
jobs: str
|
|
kconfig_check_details: str
|
|
kernel: str
|
|
keymap: str
|
|
lines: str
|
|
log: Path
|
|
mirror_alpine: str
|
|
mirrors_postmarketos: List[str]
|
|
name: str
|
|
no_depends: str
|
|
no_fde: str
|
|
no_firewall: bool
|
|
no_image: str
|
|
non_existing: str
|
|
no_reboot: str
|
|
no_sshd: str
|
|
odin_flashable_tar: str
|
|
offline: bool
|
|
ondev_cp: List[Tuple[str, str]]
|
|
on_device_installer: str
|
|
ondev_no_rootfs: str
|
|
overview: str
|
|
# FIXME (#2324): figure out the args.package vs args.packages situation
|
|
package: str | List[str]
|
|
packages: List[str]
|
|
partition: str
|
|
password: str
|
|
path: Path
|
|
pkgname: str
|
|
pkgname_pkgver_srcurl: str
|
|
port: str
|
|
qemu_audio: str
|
|
qemu_cpu: str
|
|
qemu_display: str
|
|
qemu_gl: str
|
|
qemu_kvm: str
|
|
qemu_redir_stdio: str
|
|
qemu_tablet: str
|
|
qemu_video: str
|
|
recovery_flash_kernel: str
|
|
recovery_install_partition: str
|
|
ref: str
|
|
replace: bool
|
|
repository: str
|
|
reset: str
|
|
resume: str
|
|
rootfs: str
|
|
rsync: str
|
|
scripts: str
|
|
second_storage: str
|
|
selected_providers: Dict[str, str]
|
|
sparse: str
|
|
split: bool
|
|
src: str
|
|
ssh_keys: str
|
|
strict: str
|
|
sudo_timer: bool
|
|
suffix: str
|
|
systemd: str
|
|
timeout: float
|
|
value: str
|
|
verbose: str
|
|
verify: str
|
|
work: Path
|
|
xauth: str
|
|
zap: str
|
|
|