pmb.commands package

Submodules

pmb.commands.aportgen module

pmb.commands.aportgen.aportgen(package_list: list[str], fork_alpine: bool, fork_alpine_retain_branch: bool) None

pmb.commands.build module

pmb.commands.build.build(packages: list[str], arch: Arch | None, code_src: str, use_envkernel: bool, use_strict: bool) None

pmb.commands.checksum module

pmb.commands.checksum.checksum(packages: Collection[str], do_changed: bool, do_verify: bool) None

pmb.commands.export module

pmb.commands.export.export(target: Path, autoinstall: bool, odin_flashable_tar: bool) None
pmb.commands.export.odin(device: str, folder: Path) None

Create Odin flashable tar file with kernel and initramfs for devices configured with the flasher method ‘heimdall-isorec’ and with boot.img for devices with ‘heimdall-bootimg’

Create convenience symlinks to the rootfs and boot files.

pmb.commands.flasher module

pmb.commands.flasher.flasher(action: str, autoinstall: bool, cmdline: str | None, flash_method: str, no_reboot: bool | None, partition: str | None, resume: bool | None) None

pmb.commands.index module

pmb.commands.index.index() None

pmb.commands.kconfig module

class pmb.commands.kconfig.KConfigCheck(details: bool, file: str | None, pkgname: str | list[str], keep_going: bool, categories: list[str])

Bases: object

run() None
class pmb.commands.kconfig.KConfigEdit(pkgname: str, arch: Arch | None, use_xconfig: bool, use_nconfig: bool, fragment: str | None = None)

Bases: object

run() None
class pmb.commands.kconfig.KConfigGenerate(pkgname: str | list[str], arch: Arch | None)

Bases: object

run() None
class pmb.commands.kconfig.KConfigMigrate(pkgname: str | list[str], arch: Arch | None)

Bases: object

run() None

pmb.commands.log module

pmb.commands.log.log(clear_log: bool, lines: int) None

pmb.commands.netboot module

pmb.commands.netboot.netboot(action_netboot: str, do_replace: bool) None
pmb.commands.netboot.start_nbd_server(device: str, replace: bool, ip: str = '172.16.42.2', port: int = 9999) None

Start nbd server in chroot_native with pmOS rootfs.

Parameters:
  • ip – IP address to serve nbd server for

  • port – port of nbd server

pmb.commands.pkgrel_bump module

pmb.commands.pkgrel_bump.pkgrel_bump(packages: list[str], dry_run: bool, auto: bool) None

pmb.commands.pkgver_bump module

pmb.commands.pkgver_bump.pkgver_bump(packages: list[str]) None

pmb.commands.pull module

pmb.commands.pull.pull() None

pmb.commands.shutdown module

pmb.commands.shutdown.shutdown() None

pmb.commands.sideload module

pmb.commands.sideload.scp_abuild_key(user: str, host: str, port: str) None

Copy the building key of the local installation to the target device, so it trusts the apks that were signed here.

Parameters:
  • user – target device ssh username

  • host – target device ssh hostname

  • port – target device ssh port

pmb.commands.sideload.sideload(user: str, host: str, port: str, arch: Arch | None, copy_key: bool, pkgnames: list[str]) None

Build packages if necessary and install them via SSH.

Parameters:
  • user – target device ssh username

  • host – target device ssh hostname

  • port – target device ssh port

  • arch – target device architecture

  • copy_key – copy the abuild key too

  • pkgnames – list of pkgnames to be built

pmb.commands.sideload.ssh_find_arch(user: str, host: str, port: str) Arch

Connect to a device via ssh and query the architecture.

pmb.commands.sideload.ssh_install_apks(user: str, host: str, port: str, paths: list[Path], install_offline: bool) None

Copy binary packages via SCP and install them via SSH.

Parameters:
  • user – target device ssh username

  • host – target device ssh hostname

  • port – target device ssh port

  • paths – list of absolute paths to locally stored apks

pmb.commands.test module

pmb.commands.test.apkindex_parse_all() None
pmb.commands.test.test(action: str) None

pmb.commands.zap module

pmb.commands.zap.zap(dry: bool, http: bool, distfiles: bool, pkgs_local: bool, pkgs_local_mismatch: bool, pkgs_online_mismatch: bool, rust: bool, netboot: bool) None

Module contents

pmb.commands.run_command(args: PmbArgs) None