Skip to content

Commit

Permalink
Default VM kernel to 6.12 (#24)
Browse files Browse the repository at this point in the history
6.12 is latest release and most probably next LTS version so it's good
to pin into that one. Using `latest` as default is risky as end users
might run into unexpected issues and it's difficult to debug when the
used version is "unknown".

Co-authored-by: Tino Rusch <[email protected]>
  • Loading branch information
tuommaki and trusch authored Nov 25, 2024
1 parent a25a542 commit 13ba9b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub fn get_command() -> clap::Command {
.help("Linux kernel version to use (e.g., v6.10). Use 'latest' for the most recent version. \
This kernel will be compiled from source.")
.required(false)
.default_value("latest"),
.default_value("6.12"),
)
.arg(
Arg::new("kernel_url")
Expand Down

0 comments on commit 13ba9b6

Please sign in to comment.