diff --git a/kernel/Makefile b/kernel/Makefile index 2bfc021..260cd38 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -28,7 +28,7 @@ $(KERNEL).gz: $(KERNEL) $(KERNEL): $(KERNEL).o $(LD) $(LDFLAGS) -o $@ $< $(OBJDUMP) --disassemble --source $@ > $@.dump - strip $@ +# strip $@ $(KERNEL).o: $(SUBDIRS) $(LD) -r -o $@ $(foreach subdir,$(SUBDIRS),$(subdir)/$(subdir)_all.o) $(LDLIBS) diff --git a/kernel/boot/boot.asm b/kernel/boot/boot.asm index a59c30f..4affbed 100644 --- a/kernel/boot/boot.asm +++ b/kernel/boot/boot.asm @@ -9,7 +9,7 @@ extern k_bootstrap, bootstrap_stack ;************************************************************************** -;* This is the first symbol in the .text section * +;* This is the entry point for the kernel. * ;************************************************************************** [global start] start: