mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Meta: Disable kvm for aarch64 in run.sh
This commit is contained in:
parent
23bc752c5d
commit
00c5e68b11
Notes:
sideshowbarker
2024-07-18 05:08:18 +09:00
Author: https://github.com/nico Commit: https://github.com/SerenityOS/serenity/commit/00c5e68b11d Pull-request: https://github.com/SerenityOS/serenity/pull/9666
1 changed files with 2 additions and 1 deletions
|
@ -16,8 +16,9 @@ SCRIPT_DIR="$(dirname "${0}")"
|
|||
|
||||
#SERENITY_PACKET_LOGGING_ARG="-object filter-dump,id=hue,netdev=breh,file=e1000.pcap"
|
||||
|
||||
# FIXME: Enable for SERENITY_ARCH=aarch64 if on an aarch64 host?
|
||||
KVM_SUPPORT="0"
|
||||
[ -e /dev/kvm ] && [ -r /dev/kvm ] && [ -w /dev/kvm ] && KVM_SUPPORT="1"
|
||||
[ -e /dev/kvm ] && [ -r /dev/kvm ] && [ -w /dev/kvm ] && [ "$SERENITY_ARCH" != "aarch64" ] && KVM_SUPPORT="1"
|
||||
|
||||
[ -z "$SERENITY_BOCHS_BIN" ] && SERENITY_BOCHS_BIN="bochs"
|
||||
|
||||
|
|
Loading…
Reference in a new issue