WIP
Page fault loop Fixed up the virtual memory mapping Removed un-used parameters in arch.init Some doc comments Name changes
This commit is contained in:
parent
fde6894bf2
commit
1030633d1d
12 changed files with 348 additions and 263 deletions
|
@ -120,6 +120,8 @@ pub const RuntimeStep = struct {
|
|||
std.debug.warn("{}\n", .{msg});
|
||||
if (std.mem.indexOf(u8, msg, "FAILURE")) |_| {
|
||||
return false;
|
||||
} else if (std.mem.indexOf(u8, msg, "Kernel panic")) |_| {
|
||||
return false;
|
||||
} else if (std.mem.eql(u8, msg, "[info] (kmain): SUCCESS")) {
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue