Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lowell-cli/src/cli/inspect/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
mod uki;

use anyhow::Result;
Expand Down
1 change: 1 addition & 0 deletions lowell-cli/src/cli/inspect/uki.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
use anyhow::Result;
use clap::{Args, ValueEnum};
use lowell_core::inspect::uki::{self, Report, UkiOptions};
Expand Down
1 change: 1 addition & 0 deletions lowell-cli/src/cli/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
use anyhow::Result;
use clap::{Args, Parser, Subcommand, ValueEnum};

Expand Down
1 change: 1 addition & 0 deletions lowell-cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
use anyhow::Result;

mod cli;
Expand Down
1 change: 1 addition & 0 deletions lowell-cli/src/tracing_init.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
use anyhow::Result;
use tracing_subscriber::{fmt, layer::SubscriberExt, util::SubscriberInitExt, EnvFilter};

Expand Down
1 change: 1 addition & 0 deletions lowell-core/src/formats/initramfs.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
use std::fmt;
#[derive(serde::Serialize, Debug, PartialEq, Eq)]
#[serde(rename_all = "lowercase")]
Expand Down
1 change: 1 addition & 0 deletions lowell-core/src/formats/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
pub mod initramfs;
pub mod osrel;
pub mod pe;
1 change: 1 addition & 0 deletions lowell-core/src/formats/osrel.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
use crate::formats::pe::PeFile;
use anyhow::Result;
use rs_release::parse_os_release_str;
Expand Down
1 change: 1 addition & 0 deletions lowell-core/src/formats/pe.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
//! PE/COFF helpers for Unified Kernel Images (UKI)
//!
//! Read-only introspection of PE/EFI images (UKIs) with small, ergonomic helpers.
Expand Down
1 change: 1 addition & 0 deletions lowell-core/src/inspect/ext.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Extension helpers for working with PE sections in the `uki` layer.
//!
//! Purpose: keep `formats::pe::PeFile` **format-agnostic** and small,
Expand Down
1 change: 1 addition & 0 deletions lowell-core/src/inspect/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
pub mod ext;
pub mod uki;
1 change: 1 addition & 0 deletions lowell-core/src/inspect/uki.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
use crate::formats::initramfs::{detect, Compression};
use crate::formats::osrel::{read_os_release, OsRelease};
use crate::formats::pe::PeFile;
Expand Down
1 change: 1 addition & 0 deletions lowell-core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
// SPDX-License-Identifier: MIT OR Apache-2.0
pub mod formats;
pub mod inspect;