Skip to content

Commit 3a202e8

Browse files
committed
Fix: Align target name in README to filename change. Sync with travis.yml
1 parent 2a36320 commit 3a202e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The idea is to build the kernel as a `no_std` longmode executable and then build
99
You need a nightly [Rust](https://www.rust-lang.org) compiler, [xargo](https://github.com/japaric/xargo), [objcopy](https://sourceware.org/binutils/docs/binutils/objcopy.html) (or a similar tool), and [QEMU](https://www.qemu.org/) (for running it).
1010

1111
```
12-
> RUST_TARGET_PATH=(pwd) xargo build --target test
13-
> objcopy -O binary -S target/test/debug/elf_loader test-bin
14-
> qemu-system-x86_64 -hda test-bin -d int -s
12+
> RUST_TARGET_PATH=$(pwd) xargo build --target x86_64-bootloader --release
13+
> objcopy -O binary -S target/x86_64-bootloader/release/bootloader bootimage.bin
14+
> qemu-system-x86_64 -hda bootimage.bin -d int -s
1515
```

0 commit comments

Comments
 (0)