diff options
author | Chee Yang Lee <chee.yang.lee@intel.com> | 2019-10-22 13:27:05 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-23 16:30:36 +0100 |
commit | 8ec9acb55dadb14cf82ad98f1526e99daf535625 (patch) | |
tree | 7e83a6d4330182e0a5e8780dc21160fff40e766a /scripts/lib | |
parent | 34d14c25ee896852fc31dcd860392f695b25aed4 (diff) | |
download | poky-8ec9acb55dadb14cf82ad98f1526e99daf535625.tar.gz |
wic/help: change 'wic write' help description
update the help desciption for 'wic write' command to
match behaviour.
see commit:
https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/scripts/wic?id=74b44e59be89c738f702948f9e16e367c0ba43ba
(From OE-Core rev: 521942bde1d49d987c85bf071275e8e7150d012a)
Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/wic/help.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/wic/help.py b/scripts/lib/wic/help.py index 3a40fc0ea2..af7d0576e2 100644 --- a/scripts/lib/wic/help.py +++ b/scripts/lib/wic/help.py | |||
@@ -478,7 +478,7 @@ NAME | |||
478 | SYNOPSIS | 478 | SYNOPSIS |
479 | wic write <image> <target> | 479 | wic write <image> <target> |
480 | wic write <image> <target> --expand auto | 480 | wic write <image> <target> --expand auto |
481 | wic write <image> <target> --expand 1:100M-2:300M | 481 | wic write <image> <target> --expand 1:100M,2:300M |
482 | wic write <image> <target> --native-sysroot <path> | 482 | wic write <image> <target> --native-sysroot <path> |
483 | 483 | ||
484 | DESCRIPTION | 484 | DESCRIPTION |
@@ -489,7 +489,7 @@ DESCRIPTION | |||
489 | The --expand option is used to resize image partitions. | 489 | The --expand option is used to resize image partitions. |
490 | --expand auto expands partitions to occupy all free space available on the target device. | 490 | --expand auto expands partitions to occupy all free space available on the target device. |
491 | It's also possible to specify expansion rules in a format | 491 | It's also possible to specify expansion rules in a format |
492 | <partition>:<size>[-<partition>:<size>...] for one or more partitions. | 492 | <partition>:<size>[,<partition>:<size>...] for one or more partitions. |
493 | Specifying size 0 will keep partition unmodified. | 493 | Specifying size 0 will keep partition unmodified. |
494 | Note: Resizing boot partition can result in non-bootable image for non-EFI images. It is | 494 | Note: Resizing boot partition can result in non-bootable image for non-EFI images. It is |
495 | recommended to use size 0 for boot partition to keep image bootable. | 495 | recommended to use size 0 for boot partition to keep image bootable. |