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:43 +0000 |
commit | d1ff1fef987457eb1a5ffe42dbabc7808fa7d598 (patch) | |
tree | 5a06abbe213178548bcc120d89419f0bca55ebc5 | |
parent | ad8337a127a8af321396b78a1cf331b54e4e0515 (diff) | |
download | openembedded-core-d1ff1fef987457eb1a5ffe42dbabc7808fa7d598.tar.gz openembedded-core-d1ff1fef987457eb1a5ffe42dbabc7808fa7d598.tar.bz2 openembedded-core-d1ff1fef987457eb1a5ffe42dbabc7808fa7d598.zip |
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]
Signed-off-by: Joshua Lock <joshua.lock@collabora.co.uk>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-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 This command creates a partition on the system and uses the following syntax: - part <mountpoint> + part [<mountpoint>] The <mountpoint> is where the partition will be mounted and must take of one of the following forms: @@ -626,6 +626,9 @@ DESCRIPTION swap: The partition will be used as swap space. + If a <mountpoint> is not specified the partition will be created + but will not be mounted. + The following are supported 'part' options: --size: The minimum partition size. Specify an integer value |