Skip to content

Commit cd98c46

Browse files
committed
manpages-md: Resynchronize
This is a manual invocation of `cargo xtask man2markdown`. Signed-off-by: Colin Walters <[email protected]>
1 parent e536c9f commit cd98c46

File tree

4 files changed

+75
-10
lines changed

4 files changed

+75
-10
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# NAME
2+
3+
bootc-install-print-configuration - Output JSON to stdout that contains
4+
the merged installation configuration as it may be relevant to calling
5+
processes using \`install to-filesystem\` that want to honor e.g.
6+
\`root-fs-type\`
7+
8+
# SYNOPSIS
9+
10+
**bootc-install-print-configuration** \[**-h**\|**\--help**\]
11+
\[**-V**\|**\--version**\]
12+
13+
# DESCRIPTION
14+
15+
Output JSON to stdout that contains the merged installation
16+
configuration as it may be relevant to calling processes using \`install
17+
to-filesystem\` that want to honor e.g. \`root-fs-type\`.
18+
19+
At the current time, the only output key is \`root-fs-type\` which is a
20+
string-valued filesystem name suitable for passing to \`mkfs.\$type\`.
21+
22+
# OPTIONS
23+
24+
**-h**, **\--help**
25+
26+
: Print help (see a summary with -h)
27+
28+
**-V**, **\--version**
29+
30+
: Print version
31+
32+
# VERSION
33+
34+
v0.1.0

manpages-md/bootc-install-to-disk.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ bootc-install-to-disk - Install to the target block device
55
# SYNOPSIS
66

77
**bootc-install-to-disk** \[**\--wipe**\] \[**\--block-setup**\]
8-
\[**\--filesystem**\] \[**\--root-size**\] \[**\--target-transport**\]
9-
\[**\--target-imgref**\] \[**\--enforce-container-sigpolicy**\]
10-
\[**\--target-ostree-remote**\] \[**\--skip-fetch-check**\]
11-
\[**\--disable-selinux**\] \[**\--karg**\] \[**\--generic-image**\]
12-
\[**-h**\|**\--help**\] \[**-V**\|**\--version**\] \<*DEVICE*\>
8+
\[**\--filesystem**\] \[**\--root-size**\] \[**\--source-imgref**\]
9+
\[**\--target-transport**\] \[**\--target-imgref**\]
10+
\[**\--enforce-container-sigpolicy**\] \[**\--target-ostree-remote**\]
11+
\[**\--skip-fetch-check**\] \[**\--disable-selinux**\] \[**\--karg**\]
12+
\[**\--generic-image**\] \[**\--via-loopback**\] \[**-h**\|**\--help**\]
13+
\[**-V**\|**\--version**\] \<*DEVICE*\>
1314

1415
# DESCRIPTION
1516

@@ -45,6 +46,16 @@ unlock of filesystem to presence of the default tpm2 device.\
4546

4647
By default, all remaining space on the disk will be used.
4748

49+
**\--source-imgref**=*SOURCE_IMGREF*
50+
51+
: Install the system from an explicitly given source.
52+
53+
By default, bootc install and install-to-filesystem assumes that it runs
54+
in a podman container, and it takes the container image to install from
55+
the podmans container registry. If \--source-imgref is given, bootc uses
56+
it as the installation source, instead of the behaviour explained in the
57+
previous paragraph. See skopeo(1) for accepted formats.
58+
4859
**\--target-transport**=*TARGET_TRANSPORT* \[default: registry\]
4960

5061
: The transport; e.g. oci, oci-archive. Defaults to \`registry\`
@@ -94,6 +105,10 @@ disabled but where the target does have SELinux enabled.
94105
\- All bootloader types will be installed - Changes to the system
95106
firmware will be skipped
96107

108+
**\--via-loopback**
109+
110+
: Instead of targeting a block device, write to a file via loopback
111+
97112
**-h**, **\--help**
98113

99114
: Print help (see a summary with -h)

manpages-md/bootc-install-to-filesystem.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ bootc-install-to-filesystem - Install to the target filesystem
66

77
**bootc-install-to-filesystem** \[**\--root-mount-spec**\]
88
\[**\--root-options**\] \[**\--boot-mount-spec**\] \[**\--replace**\]
9-
\[**\--target-transport**\] \[**\--target-imgref**\]
10-
\[**\--enforce-container-sigpolicy**\] \[**\--target-ostree-remote**\]
11-
\[**\--skip-fetch-check**\] \[**\--disable-selinux**\] \[**\--karg**\]
12-
\[**\--generic-image**\] \[**-h**\|**\--help**\]
13-
\[**-V**\|**\--version**\] \<*ROOT_PATH*\>
9+
\[**\--source-imgref**\] \[**\--target-transport**\]
10+
\[**\--target-imgref**\] \[**\--enforce-container-sigpolicy**\]
11+
\[**\--target-ostree-remote**\] \[**\--skip-fetch-check**\]
12+
\[**\--disable-selinux**\] \[**\--karg**\] \[**\--generic-image**\]
13+
\[**-h**\|**\--help**\] \[**-V**\|**\--version**\] \<*ROOT_PATH*\>
1414

1515
# DESCRIPTION
1616

@@ -54,6 +54,16 @@ be used.
5454
> However, the running system (and all files) will remain in place
5555
> until reboot
5656
57+
**\--source-imgref**=*SOURCE_IMGREF*
58+
59+
: Install the system from an explicitly given source.
60+
61+
By default, bootc install and install-to-filesystem assumes that it runs
62+
in a podman container, and it takes the container image to install from
63+
the podmans container registry. If \--source-imgref is given, bootc uses
64+
it as the installation source, instead of the behaviour explained in the
65+
previous paragraph. See skopeo(1) for accepted formats.
66+
5767
**\--target-transport**=*TARGET_TRANSPORT* \[default: registry\]
5868

5969
: The transport; e.g. oci, oci-archive. Defaults to \`registry\`

manpages-md/bootc-install.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ bootc-install-to-filesystem(8)
3535

3636
: Install to the target filesystem
3737

38+
bootc-install-print-configuration(8)
39+
40+
: Output JSON to stdout that contains the merged installation
41+
configuration as it may be relevant to calling processes using
42+
\`install to-filesystem\` that want to honor e.g. \`root-fs-type\`
43+
3844
bootc-install-help(8)
3945

4046
: Print this message or the help of the given subcommand(s)

0 commit comments

Comments
 (0)