aboutsummaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
Diffstat (limited to 'boot')
-rw-r--r--boot/load.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/boot/load.c b/boot/load.c
index 2a77a0d..2bd6028 100644
--- a/boot/load.c
+++ b/boot/load.c
@@ -142,11 +142,12 @@ int main(void *data)
if (entry) {
serial_print("Loaded kernel!\n");
entry(data);
- return 0;
} else {
serial_print("Couldn't find kernel!\n");
- return 1;
}
+ while (1) {
+ };
+ return 0;
}
u8 inb(u16 port)