Compare commits

..

No commits in common. "8d126a6dfdc8b769409bd4cc33f395f462162679" and "9fd79ba46ecbbde8e3629e5468f5cbd39126e193" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View file

@ -48,9 +48,6 @@ 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 \
@ -138,4 +135,4 @@ info:
-include *.d
.PHONY: all qemu info quickstart
.PHONY: all qemu info

View file

@ -57,7 +57,6 @@ 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);
}