diff options
author | Robert Morris <[email protected]> | 2019-06-11 09:57:14 -0400 |
---|---|---|
committer | Robert Morris <[email protected]> | 2019-06-11 09:57:14 -0400 |
commit | 5753553213df8f9de851adb68377db43faecb91f (patch) | |
tree | 3b629ff54897fca414146677532cb459a2ed11ba /kernel.ld | |
parent | 91ba81110acd3163f7de3580b677eece0c57f5e7 (diff) | |
download | xv6-labs-5753553213df8f9de851adb68377db43faecb91f.tar.gz xv6-labs-5753553213df8f9de851adb68377db43faecb91f.tar.bz2 xv6-labs-5753553213df8f9de851adb68377db43faecb91f.zip |
separate source into kernel/ user/ mkfs/
Diffstat (limited to 'kernel.ld')
-rw-r--r-- | kernel.ld | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/kernel.ld b/kernel.ld deleted file mode 100644 index 53c9b90..0000000 --- a/kernel.ld +++ /dev/null @@ -1,31 +0,0 @@ -OUTPUT_ARCH( "riscv" ) -ENTRY( _entry ) - -SECTIONS -{ - /* - * ensure that entry.S / _entry is at 0x80000000, - * where qemu's -kernel jumps. - */ - . = 0x80000000; - .text : - { - *(.text) - . = ALIGN(0x1000); - *(trampoline) - } - - . = ALIGN(0x1000); - PROVIDE(etext = .); - - /* - * make sure end is after data and bss. - */ - .data : { - *(.data) - } - bss : { - *(.bss) - PROVIDE(end = .); - } -} |