diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1997-05-22 09:35:03 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1997-05-22 09:35:03 +0000 |
commit | ed78c54a305b8dcde4c7d32edb6912f5ce1203d7 (patch) | |
tree | 76cc3a738701d9ad60f0eee55b3b620e480b62e0 | |
parent | e8bded086c7f1aa1ab7b4354776483a05c7e493d (diff) |
Move kernel start back to 0x80100000
-rw-r--r-- | sys/arch/arc/conf/ld.script | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/arc/conf/ld.script b/sys/arch/arc/conf/ld.script index 46622030589..3c59f13f80b 100644 --- a/sys/arch/arc/conf/ld.script +++ b/sys/arch/arc/conf/ld.script @@ -5,7 +5,7 @@ ENTRY(_start) SECTIONS { /* Read-only sections, merged into text segment: */ - . = 0x80800000 + SIZEOF_HEADERS; + . = 0x80100000 + SIZEOF_HEADERS; .text : { _ftext = . ; |