Skip to content

Commit 564de0b

Browse files
bootc-bot[bot]ckyrouac
authored andcommitted
Release 1.13.0
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: ckyrouac <ckyrouac@redhat.com>
1 parent 0fc3c1a commit 564de0b

7 files changed

Lines changed: 49 additions & 30 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ platforms = ["*-unknown-linux-gnu"]
1515

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

2121
# Workspace dependencies

crates/lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name = "bootc-lib"
66
repository = "https://github.com/bootc-dev/bootc"
77
# The intention is we'll follow semver here, even though this
88
# project isn't actually published as a crate.
9-
version = "1.12.1"
9+
version = "1.13.0"
1010
# In general we try to keep this pinned to what's in the latest RHEL9.
1111
rust-version = "1.85.0"
1212

docs/src/host-v1.schema.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,17 @@
206206
{
207207
"description": "Use Grub as the bootloader",
208208
"type": "string",
209-
"const": "Grub"
209+
"const": "grub"
210210
},
211211
{
212212
"description": "Use SystemdBoot as the bootloader",
213213
"type": "string",
214-
"const": "Systemd"
214+
"const": "systemd"
215+
},
216+
{
217+
"description": "Don't use a bootloader managed by bootc",
218+
"type": "string",
219+
"const": "none"
215220
}
216221
]
217222
},

docs/src/man/bootc-install-to-disk.8.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,19 @@ its DPS type GUID, without requiring an explicit `root=` kernel argument.
142142

143143
The stateroot name to use. Defaults to `default`
144144

145+
**--bootupd-skip-boot-uuid**
146+
147+
Don't pass --write-uuid to bootupd during bootloader installation
148+
149+
**--bootloader**=*BOOTLOADER*
150+
151+
The bootloader to use
152+
153+
Possible values:
154+
- grub
155+
- systemd
156+
- none
157+
145158
**--via-loopback**
146159

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

159172
Default: false
160173

161-
**--bootloader**=*BOOTLOADER*
162-
163-
The bootloader to use
164-
165-
Possible values:
166-
- grub
167-
- systemd
168-
169174
**--uki-addon**=*UKI_ADDON*
170175

171176
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

docs/src/man/bootc-install-to-existing-root.8.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,19 @@ of migrating the fstab entries. See the "Injecting kernel arguments" section abo
198198

199199
The stateroot name to use. Defaults to `default`
200200

201+
**--bootupd-skip-boot-uuid**
202+
203+
Don't pass --write-uuid to bootupd during bootloader installation
204+
205+
**--bootloader**=*BOOTLOADER*
206+
207+
The bootloader to use
208+
209+
Possible values:
210+
- grub
211+
- systemd
212+
- none
213+
201214
**--acknowledge-destructive**
202215

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

219232
Default: false
220233

221-
**--bootloader**=*BOOTLOADER*
222-
223-
The bootloader to use
224-
225-
Possible values:
226-
- grub
227-
- systemd
228-
229234
**--uki-addon**=*UKI_ADDON*
230235

231236
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

docs/src/man/bootc-install-to-filesystem.8.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,19 @@ is currently expected to be empty by default.
106106

107107
The stateroot name to use. Defaults to `default`
108108

109+
**--bootupd-skip-boot-uuid**
110+
111+
Don't pass --write-uuid to bootupd during bootloader installation
112+
113+
**--bootloader**=*BOOTLOADER*
114+
115+
The bootloader to use
116+
117+
Possible values:
118+
- grub
119+
- systemd
120+
- none
121+
109122
**--composefs-backend**
110123

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

119132
Default: false
120133

121-
**--bootloader**=*BOOTLOADER*
122-
123-
The bootloader to use
124-
125-
Possible values:
126-
- grub
127-
- systemd
128-
- none
129-
130134
**--uki-addon**=*UKI_ADDON*
131135

132136
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

0 commit comments

Comments
 (0)