forked from containers/bootc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
install: Update to new bootupd uuid/EFI code
This significantly simplifies this code even more; bootupd takes care of writing the UUID files in both places (like coreos-installer does). It also calls out to `efibootmgr` by default. Signed-off-by: Colin Walters <[email protected]>
- Loading branch information
Showing
2 changed files
with
24 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,31 @@ | ||
use std::os::unix::prelude::PermissionsExt; | ||
|
||
use anyhow::{Context, Result}; | ||
use anyhow::Result; | ||
use camino::Utf8Path; | ||
use cap_std::fs::Dir; | ||
use cap_std::fs::Permissions; | ||
use cap_std_ext::cap_std; | ||
use cap_std_ext::prelude::*; | ||
use fn_error_context::context; | ||
|
||
use crate::task::Task; | ||
|
||
const GRUB_BOOT_UUID_FILE: &str = "bootuuid.cfg"; | ||
/// The name of the mountpoint for efi (as a subdirectory of /boot, or at the toplevel) | ||
pub(crate) const EFI_DIR: &str = "efi"; | ||
|
||
#[context("Installing bootloader")] | ||
pub(crate) fn install_via_bootupd( | ||
device: &Utf8Path, | ||
rootfs: &Utf8Path, | ||
boot_uuid: &str, | ||
is_alongside: bool, | ||
configopts: &crate::install::InstallConfigOpts, | ||
) -> Result<()> { | ||
let verbose = std::env::var_os("BOOTC_BOOTLOADER_DEBUG").map(|_| "-vvvv"); | ||
// If we're doing an alongside install, only match the host boot method because Anaconda defaults | ||
// to only doing that. | ||
let component_args = is_alongside.then_some("--auto"); | ||
let args = ["backend", "install", "--with-static-configs"] | ||
// bootc defaults to only targeting the platform boot method. | ||
let bootupd_opts = (!configopts.generic_image).then_some(["--update-firmware", "--auto"]); | ||
let args = ["backend", "install", "--write-uuid"] | ||
.into_iter() | ||
.chain(verbose) | ||
.chain(component_args) | ||
.chain(bootupd_opts.iter().copied().flatten()) | ||
.chain([ | ||
"--src-root", | ||
"/", | ||
"--device", | ||
device.as_str(), | ||
rootfs.as_str(), | ||
]); | ||
Task::new_and_run("Running bootupctl to install bootloader", "bootupctl", args)?; | ||
|
||
let grub2_uuid_contents = format!("set BOOT_UUID=\"{boot_uuid}\"\n"); | ||
|
||
let bootfs = &rootfs.join("boot"); | ||
let bootfs = | ||
Dir::open_ambient_dir(bootfs, cap_std::ambient_authority()).context("Opening boot")?; | ||
let grub2 = bootfs.open_dir("grub2").context("Opening boot/grub2")?; | ||
|
||
grub2 | ||
.atomic_write_with_perms( | ||
GRUB_BOOT_UUID_FILE, | ||
grub2_uuid_contents, | ||
Permissions::from_mode(0o644), | ||
) | ||
.with_context(|| format!("Writing {GRUB_BOOT_UUID_FILE}"))?; | ||
|
||
Ok(()) | ||
Task::new_and_run("Running bootupctl to install bootloader", "bootupctl", args) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters