diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 84eb6c9e..1321279d 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -659,7 +659,14 @@ install_user_groups = ["wheel", "video", "audio", "input", "plugdev", "netdev"] # FLASH # -flash_methods = ["fastboot", "heimdall", "0xffff", "uuu", "none"] +flash_methods = [ + "0xffff", + "fastboot", + "heimdall", + "none" + "rkdeveloptool", + "uuu", +] # These folders will be mounted at the same location into the native # chroot, before the flash programs get started. @@ -786,6 +793,15 @@ flashers = { ["uuu", "flash_script.lst"], ], }, + }, + "rkdeveloptool": { + "depends": ["rkdeveloptool"], + "actions": { + "list_devices": [["rkdeveloptool", "ld"]], + "flash_rootfs": [ + ["rkdeveloptool", "wl", "0", "$IMAGE"] + ], + }, } }