Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ platforms = ["*-unknown-linux-gnu"]

[dependencies]
# Internal crates
bootc-lib = { version = "1.12", path = "../lib" }
bootc-lib = { version = "1.13", path = "../lib" }
bootc-utils = { package = "bootc-internal-utils", path = "../utils", version = "0.1.0" }

# Workspace dependencies
Expand Down
2 changes: 1 addition & 1 deletion crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "bootc-lib"
repository = "https://github.com/bootc-dev/bootc"
# The intention is we'll follow semver here, even though this
# project isn't actually published as a crate.
version = "1.12.1"
version = "1.13.0"
# In general we try to keep this pinned to what's in the latest RHEL9.
rust-version = "1.85.0"

Expand Down
9 changes: 7 additions & 2 deletions docs/src/host-v1.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -206,12 +206,17 @@
{
"description": "Use Grub as the bootloader",
"type": "string",
"const": "Grub"
"const": "grub"
},
{
"description": "Use SystemdBoot as the bootloader",
"type": "string",
"const": "Systemd"
"const": "systemd"
},
{
"description": "Don't use a bootloader managed by bootc",
"type": "string",
"const": "none"
}
]
},
Expand Down
21 changes: 13 additions & 8 deletions docs/src/man/bootc-install-to-disk.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,19 @@ its DPS type GUID, without requiring an explicit `root=` kernel argument.

The stateroot name to use. Defaults to `default`

**--bootupd-skip-boot-uuid**

Don't pass --write-uuid to bootupd during bootloader installation

**--bootloader**=*BOOTLOADER*

The bootloader to use

Possible values:
- grub
- systemd
- none

**--via-loopback**

Instead of targeting a block device, write to a file via loopback
Expand All @@ -158,14 +171,6 @@ its DPS type GUID, without requiring an explicit `root=` kernel argument.

Default: false

**--bootloader**=*BOOTLOADER*

The bootloader to use

Possible values:
- grub
- systemd

**--uki-addon**=*UKI_ADDON*

Name of the UKI addons to install without the ".efi.addon" suffix. This option can be provided multiple times if multiple addons are to be installed
Expand Down
21 changes: 13 additions & 8 deletions docs/src/man/bootc-install-to-existing-root.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,19 @@ of migrating the fstab entries. See the "Injecting kernel arguments" section abo

The stateroot name to use. Defaults to `default`

**--bootupd-skip-boot-uuid**

Don't pass --write-uuid to bootupd during bootloader installation

**--bootloader**=*BOOTLOADER*

The bootloader to use

Possible values:
- grub
- systemd
- none

**--acknowledge-destructive**

Accept that this is a destructive action and skip a warning timer
Expand All @@ -218,14 +231,6 @@ of migrating the fstab entries. See the "Injecting kernel arguments" section abo

Default: false

**--bootloader**=*BOOTLOADER*

The bootloader to use

Possible values:
- grub
- systemd

**--uki-addon**=*UKI_ADDON*

Name of the UKI addons to install without the ".efi.addon" suffix. This option can be provided multiple times if multiple addons are to be installed
Expand Down
22 changes: 13 additions & 9 deletions docs/src/man/bootc-install-to-filesystem.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,19 @@ is currently expected to be empty by default.

The stateroot name to use. Defaults to `default`

**--bootupd-skip-boot-uuid**

Don't pass --write-uuid to bootupd during bootloader installation

**--bootloader**=*BOOTLOADER*

The bootloader to use

Possible values:
- grub
- systemd
- none

**--composefs-backend**

If true, composefs backend is used, else ostree backend is used
Expand All @@ -118,15 +131,6 @@ is currently expected to be empty by default.

Default: false

**--bootloader**=*BOOTLOADER*

The bootloader to use

Possible values:
- grub
- systemd
- none

**--uki-addon**=*UKI_ADDON*

Name of the UKI addons to install without the ".efi.addon" suffix. This option can be provided multiple times if multiple addons are to be installed
Expand Down
Loading