BuildSystem: Only use kvm if user has rw access
This commit is contained in:
parent
cc2cc2849e
commit
7db7cfe20f
|
@ -61,7 +61,11 @@ run_bochs () {
|
||||||
}
|
}
|
||||||
|
|
||||||
if [[ -c /dev/kvm ]]; then
|
if [[ -c /dev/kvm ]]; then
|
||||||
|
if [[ -r /dev/kvm ]] && [[ -w /dev/kvm ]]; then
|
||||||
QEMU_ACCEL="-accel kvm"
|
QEMU_ACCEL="-accel kvm"
|
||||||
|
else
|
||||||
|
echo "You don't have read/write permissions for /dev/kvm" >&2
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $# -eq 0 ]]; then
|
if [[ $# -eq 0 ]]; then
|
||||||
|
|
Loading…
Reference in New Issue