We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d91c00a commit 641094fCopy full SHA for 641094f
lib/src/install/baseline.rs
@@ -254,8 +254,6 @@ pub(crate) fn install_create_rootfs(
254
"BIOS-BOOT",
255
Some("21686148-6449-6E6F-744E-656564454649"),
256
);
257
- } else if cfg!(target_arch = "aarch64") {
258
- // Only UEFI here for now
259
} else if cfg!(target_arch = "powerpc64") {
260
// PowerPC-PReP-boot
261
partno += 1;
@@ -266,6 +264,8 @@ pub(crate) fn install_create_rootfs(
266
264
crate::bootloader::PREPBOOT_LABEL,
267
265
Some(crate::bootloader::PREPBOOT_GUID),
268
+ } else if cfg!(any(target_arch = "aarch64", target_arch = "s390x")) {
+ // No bootloader partition is necessary
269
} else {
270
anyhow::bail!("Unsupported architecture: {}", std::env::consts::ARCH);
271
}
0 commit comments