From 99e5d7e6712d33c0abf9756303082922255beb16 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Fri, 13 Jun 2025 11:37:39 +0200 Subject: [PATCH] Docs(cli/flash): improve disk instructions --- pkgs/clan-cli/clan_cli/flash/flash_cmd.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/flash/flash_cmd.py b/pkgs/clan-cli/clan_cli/flash/flash_cmd.py index 699edfd6b..d6c070520 100644 --- a/pkgs/clan-cli/clan_cli/flash/flash_cmd.py +++ b/pkgs/clan-cli/clan_cli/flash/flash_cmd.py @@ -112,7 +112,11 @@ def register_flash_write_parser(parser: argparse.ArgumentParser) -> None: nargs=2, metavar=("name", "device"), action=AppendDiskAction, - help="device to flash to", + help=""" + The device where flash to. + name: The name of the 'device' in the disk configuration. Example: 'main' <- disko.devices.disk.main. + device: The name of the physical 'device' where the utility will be flashed to. Example: '/dev/sda/' + """, default=[], ) mode_help = textwrap.dedent(