We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b14b4e3 commit 54adb4cCopy full SHA for 54adb4c
bios/boot_sector/16-bit-linker.ld renamed to bios/boot_sector/boot-sector-link.ld
@@ -51,4 +51,6 @@ SECTIONS {
51
{
52
SHORT(0xaa55) /* magic number for bootable disk */
53
}
54
+
55
+ _second_stage_start = .;
56
bios/boot_sector/build.rs
@@ -4,6 +4,6 @@ fn main() {
4
let local_path = Path::new(env!("CARGO_MANIFEST_DIR"));
5
println!(
6
"cargo:rustc-link-arg-bins=--script={}",
7
- local_path.join("16-bit-linker.ld").display()
+ local_path.join("boot-sector-link.ld").display()
8
)
9
0 commit comments