diff options
Diffstat (limited to 'boot')
-rw-r--r-- | boot/boot.ld | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/boot/boot.ld b/boot/boot.ld new file mode 100644 index 0000000..e6fc072 --- /dev/null +++ b/boot/boot.ld @@ -0,0 +1,9 @@ +OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") +OUTPUT_ARCH(i386) +ENTRY(bootentry) + +SECTIONS +{ + . = 0x0; + .text : { *(.text .stub .text.*) } +} |