move that config down lower

This commit is contained in:
Ryan Heywood 2025-07-11 20:05:36 -04:00
parent 6aafe87deb
commit b7316b5741
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
1 changed files with 3 additions and 3 deletions

View File

@ -26,9 +26,6 @@ extern "C" fn handle_sigchld(_sig: i32) {
} }
fn init() -> Result<()> { fn init() -> Result<()> {
let config = config::get_config()?;
dmesg(format!("{config:?}"));
if let Err(errors) = system::mount_default_targets() { if let Err(errors) = system::mount_default_targets() {
for error in errors { for error in errors {
dmesg(format!("Error while mounting: {error}")); dmesg(format!("Error while mounting: {error}"));
@ -46,6 +43,9 @@ fn init() -> Result<()> {
system::dmesg("EnclaveOS Booted"); system::dmesg("EnclaveOS Booted");
let config = config::get_config()?;
dmesg(format!("{config:?}"));
std::thread::sleep(std::time::Duration::from_secs(500)); std::thread::sleep(std::time::Duration::from_secs(500));
/* /*