From ad5688f344aa794f62d7e93f9209a49157f080a6 Mon Sep 17 00:00:00 2001 From: able Date: Tue, 14 Nov 2023 15:02:50 -0600 Subject: [PATCH] add in liberapay --- README.md | 1 + kernel/src/kmain.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 7a61641..29a8671 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ An UNIX-unlike micro-kernel written in rust with an embedded bytecode virtual ma # Community [Discord](https://discord.gg/JrKVukDtgs) + # Compiling AbleOS should be able to be built on any platform which is supported by diff --git a/kernel/src/kmain.rs b/kernel/src/kmain.rs index 4c9648c..b90fc5c 100644 --- a/kernel/src/kmain.rs +++ b/kernel/src/kmain.rs @@ -86,6 +86,7 @@ pub fn kmain(cmdline: &str, boot_modules: BootModules) -> ! { if cmd_len > 0 { thr.set_arguments(cmd.as_bytes().as_ptr() as u64, cmd_len); } + if let Err(e) = thr.await { log::error!("{e:?}"); }