1 unstable release
0.1.0 | Jun 30, 2020 |
---|
#681 in Unix APIs
210 stars & 21 watchers
2KB
distinst-bootloader
Detect whether a Linux system is in EFI or BIOS mode.
extern crate distinst_bootloader;
use distinst_bootloader::Bootloader;
match Bootloader::detect() {
Bootloader::Efi => println!("System is in EFI mode"),
Bootloader::Bios => println!("System is in BIOS mode")
}
lib.rs
:
Detect whether a Linux system is in EFI or BIOS mode.
use distinst_bootloader::Bootloader;
match Bootloader::detect() {
Bootloader::Efi => println!("System is in EFI mode"),
Bootloader::Bios => println!("System is in BIOS mode")
}