Message ID | 20220205205647.7677-1-marius@FreeBSD.org |
---|---|
State | New |
Headers | show |
Series | [1/3] mmc-utils: manpage: Document -c option for partitioning commands | expand |
On Sat, 5 Feb 2022 at 21:57, Marius Strobl <marius@freebsd.org> wrote: > > The 'continue' option was added in commit 752072dafe9c ("Add -c option > for partitioning commands). > > Signed-off-by: Marius Strobl <marius@FreeBSD.org> The three patches applied to git.kernel.org/pub/scm//utils/mmc/mmc-utils.git master, thanks! Kind regards Uffe > --- > man/mmc.1 | 15 +++++++++------ > 1 file changed, 9 insertions(+), 6 deletions(-) > > diff --git a/man/mmc.1 b/man/mmc.1 > index bdb6f09..bccabf3 100644 > --- a/man/mmc.1 > +++ b/man/mmc.1 > @@ -30,21 +30,24 @@ This sets the eMMC to be write-protected until next boot. > Set the eMMC data sector size to 4KB by disabling emulation on > <device>. > .TP > -.BR "gp create <-y|-n> <length KiB> <partition> <enh_attr> <ext_attr> <device>" > +.BR "gp create <-y|-n|-c> <length KiB> <partition> <enh_attr> <ext_attr> <device>" > create general purpose partition for the <device>. > -Dry-run only unless -y is passed. > +Dry-run only unless -y or -c is passed. > +Use -c if more partitioning settings are still to come. > To set enhanced attribute to general partition being created set <enh_attr> to 1 else set it to 0. > To set extended attribute to general partition set <ext_attr> to 1,2 else set it to 0. > NOTE! This is a one-time programmable (unreversible) change. > .TP > -.BR "enh_area set <-y|-n> <start KiB> <length KiB> <device>" > +.BR "enh_area set <-y|-n|-c> <start KiB> <length KiB> <device>" > Enable the enhanced user area for the <device>. > -Dry-run only unless -y is passed. > +Dry-run only unless -y or -c is passed. > +Use -c if more partitioning settings are still to come. > NOTE! This is a one-time programmable (unreversible) change. > .TP > -.BR "write_reliability set <-y|-n> <partition> <device>" > +.BR "write_reliability set <-y|-n|-c> <partition> <device>" > Enable write reliability per partition for the <device>. > -Dry-run only unless -y is passed. > +Dry-run only unless -y or -c is passed. > +Use -c if more partitioning settings are still to come. > NOTE! This is a one-time programmable (unreversible) change. > .TP > .BR "status get <device>" > -- > 2.31.1 >
diff --git a/man/mmc.1 b/man/mmc.1 index bdb6f09..bccabf3 100644 --- a/man/mmc.1 +++ b/man/mmc.1 @@ -30,21 +30,24 @@ This sets the eMMC to be write-protected until next boot. Set the eMMC data sector size to 4KB by disabling emulation on <device>. .TP -.BR "gp create <-y|-n> <length KiB> <partition> <enh_attr> <ext_attr> <device>" +.BR "gp create <-y|-n|-c> <length KiB> <partition> <enh_attr> <ext_attr> <device>" create general purpose partition for the <device>. -Dry-run only unless -y is passed. +Dry-run only unless -y or -c is passed. +Use -c if more partitioning settings are still to come. To set enhanced attribute to general partition being created set <enh_attr> to 1 else set it to 0. To set extended attribute to general partition set <ext_attr> to 1,2 else set it to 0. NOTE! This is a one-time programmable (unreversible) change. .TP -.BR "enh_area set <-y|-n> <start KiB> <length KiB> <device>" +.BR "enh_area set <-y|-n|-c> <start KiB> <length KiB> <device>" Enable the enhanced user area for the <device>. -Dry-run only unless -y is passed. +Dry-run only unless -y or -c is passed. +Use -c if more partitioning settings are still to come. NOTE! This is a one-time programmable (unreversible) change. .TP -.BR "write_reliability set <-y|-n> <partition> <device>" +.BR "write_reliability set <-y|-n|-c> <partition> <device>" Enable write reliability per partition for the <device>. -Dry-run only unless -y is passed. +Dry-run only unless -y or -c is passed. +Use -c if more partitioning settings are still to come. NOTE! This is a one-time programmable (unreversible) change. .TP .BR "status get <device>"
The 'continue' option was added in commit 752072dafe9c ("Add -c option for partitioning commands). Signed-off-by: Marius Strobl <marius@FreeBSD.org> --- man/mmc.1 | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-)