pmbootstrap flasher: add flash_dtbo (MR 2099)

This commit is contained in:
afeuerstein 2021-08-27 18:35:46 +02:00 committed by Oliver Smith
parent 468d313790
commit 2d3cfbcbb4
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
7 changed files with 43 additions and 1 deletions

View file

@ -79,6 +79,11 @@ def flash_vbmeta(args):
pmb.flasher.run(args, "flash_vbmeta")
def flash_dtbo(args):
logging.info("(native) flash dtbo image")
pmb.flasher.run(args, "flash_dtbo")
def list_devices(args):
pmb.flasher.run(args, "list_devices")
@ -126,6 +131,8 @@ def frontend(args):
rootfs(args)
if action == "flash_vbmeta":
flash_vbmeta(args)
if action == "flash_dtbo":
flash_dtbo(args)
if action == "list_flavors":
list_flavors(args)
if action == "list_devices":