From b59720f6e112f5c1079ba649d50cdcf61139ef66 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 26 Apr 2019 11:27:36 +0200 Subject: [PATCH] Update Readme for new runner --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c264b11..66739f4b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,13 @@ cargo install cargo-xbuild bootimage Then you can build the project by running: ``` -bootimage build +cargo xbuild +``` + +To create a bootable disk image, run: + +``` +cargo bootimage ``` This creates a bootable disk image in the `target/x86_64-blog_os/debug` directory. @@ -33,7 +39,7 @@ You can run the disk image in [QEMU] through: [QEMU]: https://www.qemu.org/ ``` -bootimage run +cargo xrun ``` Of course [QEMU] needs to be installed for this.