image/cli: cmd_flash: improve log messages and order of partitions in CLI help

This commit is contained in:
InsanePrawn 2023-06-12 00:59:28 +02:00
parent 379e951526
commit 407d8893a3
2 changed files with 14 additions and 4 deletions

View file

@ -18,7 +18,7 @@ from .image import get_device_name, losetup_rootfs_image, get_image_path, dump_a
LK2ND = FLASH_PARTS['LK2ND']
ABOOT = FLASH_PARTS['ABOOT']
BOOT_TYPES = [LK2ND, JUMPDRIVE, ABOOT]
BOOT_TYPES = [ABOOT, LK2ND, JUMPDRIVE]
@click.command(name='boot')