Rename jinux to asterinas in documentation and code

This commit is contained in:
Jianfeng Jiang
2023-12-25 07:27:41 +00:00
committed by Tate, Hongliang Tian
parent 2b248dc326
commit 99f6765ced
43 changed files with 143 additions and 143 deletions

View File

@ -1,13 +1,13 @@
#![no_std]
#![no_main]
// The `export_name` attribute for the `jinux_main` entrypoint requires the removal of safety check.
// The `export_name` attribute for the `aster_main` entrypoint requires the removal of safety check.
// Please be aware that the kernel is not allowed to introduce any other unsafe operations.
// #![forbid(unsafe_code)]
extern crate aster_frame;
use aster_frame::early_println;
#[export_name = "jinux_main"]
#[export_name = "aster_main"]
pub fn main() -> ! {
aster_frame::init();
early_println!("[kernel] finish init aster_frame");