agesafetch 1.2.1

A tool for obtaining your firmware's embedded AGESA version on Linux.
Documentation
1
2
3
4
5
6
7
8
9
10
// SPDX-FileCopyrightText: Benedikt Vollmerhaus <benedikt@vollmerhaus.org>
// SPDX-License-Identifier: MIT
use agesafetch::run_cli;
use std::env;
use std::process::ExitCode;

fn main() -> ExitCode {
    let exit_code = run_cli(env::args_os().collect());
    ExitCode::from(exit_code as u8)
}