You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The command will invoke [`cargo xbuild`](https://github.com/rust-osdev/cargo-xbuild), forwarding all passed options. Then it will build the specified bootloader together with the kernel to create a bootable disk image.
34
+
The command will invoke `cargo build`, forwarding all passed options. Then it will build the specified bootloader together with the kernel to create a bootable disk image.
35
35
36
36
### Running
37
37
@@ -60,6 +60,10 @@ Configuration is done through a through a `[package.metadata.bootimage]` table i
60
60
61
61
```toml
62
62
[package.metadata.bootimage]
63
+
# The cargo subcommand that will be used for building the kernel.
64
+
#
65
+
# For building using the `cargo-xbuild` crate, set this to `xbuild`.
66
+
build-command = ["build"]
63
67
# The command invoked with the created bootimage (the "{}" will be replaced
64
68
# with the path to the bootable disk image)
65
69
# Applies to `bootimage run` and `bootimage runner`
0 commit comments