()
| 13 | |
| 14 | #[entry] |
| 15 | fn main() -> Status { |
| 16 | uefi::helpers::init().unwrap(); |
| 17 | |
| 18 | let args = commandline::uefi::get_args(); |
| 19 | let args = commandline::parse(&args); |
| 20 | if commandline::run_with_args(&args, false) == 0 { |
| 21 | return Status::SUCCESS; |
| 22 | } |
| 23 | |
| 24 | // Force it go into UEFI shell |
| 25 | Status::LOAD_ERROR |
| 26 | } |
nothing calls this directly
no test coverage detected