move that config down lower
This commit is contained in:
parent
6aafe87deb
commit
b7316b5741
|
@ -26,9 +26,6 @@ extern "C" fn handle_sigchld(_sig: i32) {
|
|||
}
|
||||
|
||||
fn init() -> Result<()> {
|
||||
let config = config::get_config()?;
|
||||
dmesg(format!("{config:?}"));
|
||||
|
||||
if let Err(errors) = system::mount_default_targets() {
|
||||
for error in errors {
|
||||
dmesg(format!("Error while mounting: {error}"));
|
||||
|
@ -46,6 +43,9 @@ fn init() -> Result<()> {
|
|||
|
||||
system::dmesg("EnclaveOS Booted");
|
||||
|
||||
let config = config::get_config()?;
|
||||
dmesg(format!("{config:?}"));
|
||||
|
||||
std::thread::sleep(std::time::Duration::from_secs(500));
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue