Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/cmd-osbuild
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,10 @@ main() {

outdir=$(mktemp -p "${tmp_builddir}" -d)
if has_privileges && [ "${COSA_NO_KVM:-}" == "1" ]; then
cmd="env" # run outside of supermin if we are root already
# Run outside of supermin if we are root already. This is useful
# mostly on riscv where /dev/kvm isn't really supported by any
# hardware right now (2025/08).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The phrase "right now" is a bit redundant given that a specific date is provided in parentheses. For conciseness and clarity, you could remove "right now".

# hardware (2025/08).

cmd="env"
else
cmd="runvm_with_cache"
fi
Expand Down
Loading