From 149dbdf0216bad33e38ad7c148a40d9a7996f730 Mon Sep 17 00:00:00 2001
From: Eemeli Lehtonen <eemeli.o.lehtonen@utu.fi>
Date: Mon, 23 Jan 2023 16:18:25 +0200
Subject: [PATCH] RNG

---
 src/boot/mod.rs | 4 ++++
 src/main.rs     | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/boot/mod.rs b/src/boot/mod.rs
index fb80769..4e7b712 100644
--- a/src/boot/mod.rs
+++ b/src/boot/mod.rs
@@ -4,15 +4,19 @@ use spin::Once;
 
 #[cfg(feature = "multiboot1")]
 #[path = "multiboot1/mod.rs"]
+#[allow(clippy::module_inception)]
 mod boot;
 #[cfg(feature = "multiboot2")]
 #[path = "multiboot2/mod.rs"]
+#[allow(clippy::module_inception)]
 mod boot;
 #[cfg(feature = "bootboot")]
 #[path = "bootboot/mod.rs"]
+#[allow(clippy::module_inception)]
 mod boot;
 #[cfg(feature = "limine")]
 #[path = "limine/mod.rs"]
+#[allow(clippy::module_inception)]
 mod boot;
 
 //
diff --git a/src/main.rs b/src/main.rs
index 7dbe95c..e684ec0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -44,6 +44,7 @@ pub static KERNEL_VERS: &str = env!("CARGO_PKG_VERSION");
 
 //
 
+// the actual entry exists in [´crate::boot::boot´]
 fn kernel_main() -> ! {
     debug!("Entering kernel_main");
     debug!("Cmdline: {:?}", env::Arguments::get());
@@ -60,7 +61,7 @@ fn kernel_main() -> ! {
     #[cfg(test)]
     test_main();
 
-    debug!("{}", arch::rng_seed());
+    debug!("RNG Seed {}", arch::rng_seed());
 
     smp::init();
 }
-- 
GitLab