refactor: 📦 kernel_main should be the main entry point

This commit is contained in:
Berkus Decker 2023-07-10 02:13:50 +03:00 committed by Berkus Decker
parent d6887bccee
commit 94d23a6a47
1 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ use {
}, },
}; };
entry!(kmain); entry!(kernel_main);
#[cfg(not(test))] #[cfg(not(test))]
#[panic_handler] #[panic_handler]
@ -119,8 +119,8 @@ fn init_uart_serial() {
/// Kernel entry point. /// Kernel entry point.
/// `arch` crate is responsible for calling it. /// `arch` crate is responsible for calling it.
#[inline] // #[inline]
pub fn kmain() -> ! { pub fn kernel_main() -> ! {
#[cfg(feature = "jtag")] #[cfg(feature = "jtag")]
machine::arch::jtag::wait_debugger(); machine::arch::jtag::wait_debugger();