Skip to content
Snippets Groups Projects
Commit 149dbdf0 authored by Eemeli Lehtonen's avatar Eemeli Lehtonen
Browse files

RNG

parent 2fe77331
No related branches found
No related tags found
No related merge requests found
......@@ -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;
//
......
......@@ -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();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment