diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-16 15:58:53 +0200 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2022-09-16 15:58:53 +0200 |
commit | a86519bd437e840d05748c903bb1b274b8468f41 (patch) | |
tree | 10025d4e474cff281f24b256ea54d409d3c3243a | |
parent | f556a0940df3de8f7720a0a1e478ac25e0b47d92 (diff) |
Fix stage 2 linkage
Yay! We can finally write stage 2 now!
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -8,9 +8,7 @@ magic.bin: echo -en "\x55\xAA" > magic.bin stage2/target/x86-loadnothing/release/stage2: stage2/src/main.rs - cd stage2 && cargo rustc --release -- --emit=obj - ld -T linker.ld -m elf_i386 -o stage2/target/x86-loadnothing/release/stage2.bin --oformat binary stage2/target/x86-loadnothing/release/stage2 -Ttext=0x7e00 - mv stage2/target/x86-loadnothing/release/stage2.bin stage2/target/x86-loadnothing/release/stage2 + cd stage2 && cargo rustc --release -- --emit=obj -C link-arg=-Ttext=0x7e00 -C link-arg=-Tdata=0x7e00 -C link-arg=--oformat=binary nothing.img: magic.bin stage2/target/x86-loadnothing/release/stage2 stage1/boot.bin dd if=/dev/zero of=nothing.img bs=32M count=1 |