Skip to content

Commit

Permalink
refactor: move crate::os::uefi::fdt to crate::fdt
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed Nov 16, 2024
1 parent 37661bf commit 703d10e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
File renamed without changes.
2 changes: 2 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ mod macros;

mod arch;
mod bump_allocator;
#[cfg(target_os = "uefi")]
mod fdt;
mod log;
mod os;

Expand Down
3 changes: 1 addition & 2 deletions src/os/uefi/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
mod allocator;
mod console;
mod fdt;

use alloc::vec::Vec;
use core::ffi::c_void;
Expand All @@ -20,7 +19,7 @@ use uefi::prelude::*;
use uefi::table::cfg;

pub use self::console::CONSOLE;
use self::fdt::Fdt;
use crate::fdt::Fdt;
use crate::{arch, BootInfoExt};

// Entry Point of the Uefi Loader
Expand Down

0 comments on commit 703d10e

Please sign in to comment.