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 b15b145 commit 8dad35aCopy full SHA for 8dad35a
Changelog.md
@@ -1,3 +1,5 @@
1
+- Mention minimal required bootimage version in error message when `KERNEL` environment variable is not set.
2
+
3
# 0.5.2
4
5
- Remove redundant import that caused a warning
build.rs
@@ -15,7 +15,9 @@ fn main() {
15
Ok(kernel) => kernel,
16
Err(_) => {
17
eprintln!(
18
- "The KERNEL environment variable must be set for building the bootloader."
+ "The KERNEL environment variable must be set for building the bootloader.\n\n\
19
+ If you use `bootimage` for building you need at least version 0.7.0. You can \
20
+ update `bootimage` by running `cargo install bootimage --force`."
21
);
22
process::exit(1);
23
}
0 commit comments