pmb/config: add rkdeveloptool support (MR 2103)

Needed for flashing some rockchip platforms
This commit is contained in:
Martijn Braam 2021-08-31 21:58:05 +02:00 committed by Oliver Smith
parent 8bc5366e60
commit ea70d3205e
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 17 additions and 1 deletions

View File

@ -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"]
],
},
}
}