diff options
author | Joshua Lock <joshua.lock@collabora.co.uk> | 2015-12-17 12:02:28 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-22 16:08:51 +0000 |
commit | ca69643faa949664e3d5c3c182cbe2ba1dc55026 (patch) | |
tree | 5e70d4e3cfcc50aaa12131f9a44c6dbda4753392 /scripts | |
parent | 5628dde92ea1b0936d0a80c38ee5520823214477 (diff) | |
download | poky-ca69643faa949664e3d5c3c182cbe2ba1dc55026.tar.gz |
wic/help.py: document that mountpoint is optional for part command
If no mountpoint is specified for a partition command the partition
will be created but not mounted — mention this in the kickstart
help text.
[YOCTO #8820]
(From OE-Core rev: d1ff1fef987457eb1a5ffe42dbabc7808fa7d598)
Signed-off-by: Joshua Lock <joshua.lock@collabora.co.uk>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/wic/help.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/lib/wic/help.py b/scripts/lib/wic/help.py index 89fb7be950..be334e7814 100644 --- a/scripts/lib/wic/help.py +++ b/scripts/lib/wic/help.py | |||
@@ -617,7 +617,7 @@ DESCRIPTION | |||
617 | This command creates a partition on the system and uses the | 617 | This command creates a partition on the system and uses the |
618 | following syntax: | 618 | following syntax: |
619 | 619 | ||
620 | part <mountpoint> | 620 | part [<mountpoint>] |
621 | 621 | ||
622 | The <mountpoint> is where the partition will be mounted and | 622 | The <mountpoint> is where the partition will be mounted and |
623 | must take of one of the following forms: | 623 | must take of one of the following forms: |
@@ -626,6 +626,9 @@ DESCRIPTION | |||
626 | 626 | ||
627 | swap: The partition will be used as swap space. | 627 | swap: The partition will be used as swap space. |
628 | 628 | ||
629 | If a <mountpoint> is not specified the partition will be created | ||
630 | but will not be mounted. | ||
631 | |||
629 | The following are supported 'part' options: | 632 | The following are supported 'part' options: |
630 | 633 | ||
631 | --size: The minimum partition size. Specify an integer value | 634 | --size: The minimum partition size. Specify an integer value |