1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-10-13 22:10:23 +02:00
Files
flashrom/util/flashrom_tester/src/lib.rs
Anastasia Klimchuk 81e5b58a20 util: Use SPDX in headers
Change-Id: I7b4b3da3b47b90c2113bbe614e47892e9cc29417
Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/89418
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Antonio Vázquez Blanco <antoniovazquezblanco@gmail.com>
2025-10-12 05:07:45 +00:00

17 lines
278 B
Rust

//
// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0-only
// SPDX-FileCopyrightText: 2019, Google Inc. All rights reserved.
//
#[macro_use]
extern crate log;
#[macro_use]
pub mod types;
pub mod cros_sysinfo;
pub mod rand_util;
pub mod tester;
pub mod tests;
pub mod utils;