efivarcli 2.0.0

EFI boot manager variable editor written in Rust
1
2
3
4
5
6
7
8
9
10
use efivar::boot::EFIHardDrive;
use std::path::PathBuf;

pub fn retrieve_efi_partition_data(_name: &str) -> EFIHardDrive {
    todo!();
}

pub fn get_mount_point(_name: &str) -> Option<PathBuf> {
    todo!();
}