kern
diff Makefile @ 1:ebe5e0e44a9d
pretty much finished the code for article 1, might do minor adjustments though
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 02 Dec 2010 08:45:41 +0200 |
parents | 662ff2170531 |
children | 86781ef20689 |
line diff
1.1 --- a/Makefile Wed Dec 01 22:02:42 2010 +0200 1.2 +++ b/Makefile Thu Dec 02 08:45:41 2010 +0200 1.3 @@ -15,10 +15,10 @@ 1.4 bin = kernel.elf 1.5 1.6 # default target: make an ELF binary by linking the object files 1.7 -# we need to specify where to assume the text segment (code) is going 1.8 -# in memory, as well as the kernel entry point (kstart). 1.9 +# we need to specify where to assume the text section (code) is going 1.10 +# in memory, as well as the kernel entry point (kentry). 1.11 $(bin): $(obj) 1.12 - ld -melf_i386 -o $@ -Ttext 0x200000 -e _start $(obj) 1.13 + ld -melf_i386 -o $@ -Ttext 0x200000 -e kentry $(obj) 1.14 1.15 .PHONY: clean 1.16 clean: