diff options
author | Robert Morris <[email protected]> | 2011-08-31 09:48:52 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2011-08-31 09:48:52 -0400 |
commit | 15997d58497f4c716c227787acf9591439e5fe9c (patch) | |
tree | e3a14381f70030ec8034afb8450b7e8aef6c2af7 /kernel.ld | |
parent | 5c292b3d7167022e765c7228b0748cb50ab7d7f1 (diff) | |
download | xv6-labs-15997d58497f4c716c227787acf9591439e5fe9c.tar.gz xv6-labs-15997d58497f4c716c227787acf9591439e5fe9c.tar.bz2 xv6-labs-15997d58497f4c716c227787acf9591439e5fe9c.zip |
move the kernel to 0x80000000
Diffstat (limited to 'kernel.ld')
-rw-r--r-- | kernel.ld | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,7 +8,8 @@ ENTRY(_start) SECTIONS { /* Load the kernel at this address: "." means the current address */ - . = 0xF0100000; + /* Must be equal to KERNLINK */ + . = 0x80100000; .text : AT(0x100000) { *(.text .stub .text.* .gnu.linkonce.t.*) |