Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions crates/lib/src/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,9 @@ pub(crate) struct InstallTargetFilesystemOpts {
/// To override this, use `--root-mount-spec`.
pub(crate) root_path: Utf8PathBuf,

/// Source device specification for the root filesystem. For example, UUID=2e9f4241-229b-4202-8429-62d2302382e1
///
/// If not provided, the UUID of the target filesystem will be used.
/// Source device specification for the root filesystem. For example, `UUID=2e9f4241-229b-4202-8429-62d2302382e1`.
/// If not provided, the UUID of the target filesystem will be used. This option is provided
/// as some use cases might prefer to mount by a label instead via e.g. `LABEL=rootfs`.
#[clap(long)]
pub(crate) root_mount_spec: Option<String>,

Expand Down
2 changes: 1 addition & 1 deletion docs/src/man/bootc-install-to-filesystem.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ is currently expected to be empty by default.

**--root-mount-spec**=*ROOT_MOUNT_SPEC*

Source device specification for the root filesystem. For example, UUID=2e9f4241-229b-4202-8429-62d2302382e1
Source device specification for the root filesystem. For example, `UUID=2e9f4241-229b-4202-8429-62d2302382e1`. If not provided, the UUID of the target filesystem will be used. This option is provided as some use cases might prefer to mount by a label instead via e.g. `LABEL=rootfs`

**--boot-mount-spec**=*BOOT_MOUNT_SPEC*

Expand Down