Compare commits

..

2 commits

Author SHA1 Message Date
Imbus
8d126a6dfd Add boot message about how to exit qemu 2025-09-02 03:16:38 +02:00
Imbus
e27517f523 Quickstart target 2025-09-02 03:16:29 +02:00
2 changed files with 5 additions and 1 deletions

View file

@ -48,6 +48,9 @@ CFLAGS += -I./kern/libkern
all: kern/kernel.elf
quickstart:
make get_toolchain && bear -- make -j$(nproc) && make qemu
KERNEL_OBJ := \
kern/entry.o \
kern/start.o \
@ -135,4 +138,4 @@ info:
-include *.d
.PHONY: all qemu info
.PHONY: all qemu info quickstart

View file

@ -57,6 +57,7 @@ void start() {
else
PANIC("Some cores seem to have been enumerated incorrectly!\n");
kprintf("To exit qemu, press CTRL+a followed by x\n");
spin_unlock(&sl);
}