Move MSR warning to an appropriate section of the status messages
This commit is contained in:
parent
3f05e41e13
commit
13abd0c5a7
10
quickemu
10
quickemu
@ -336,6 +336,11 @@ function vm_boot() {
|
||||
boot=${boot,,}
|
||||
guest_os=${guest_os,,}
|
||||
|
||||
if [ "${guest_os}" == "macos" ] || [ "${guest_os}" == "windows" ]; then
|
||||
# Display MSRs alert if the guest is macOS or windows
|
||||
ignore_msrs_alert
|
||||
fi
|
||||
|
||||
# Always Boot macOS using EFI
|
||||
if [ "${guest_os}" == "macos" ]; then
|
||||
boot="efi"
|
||||
@ -636,11 +641,6 @@ function vm_boot() {
|
||||
img=""
|
||||
fi
|
||||
|
||||
if [ "${guest_os}" == "macos" ] || [ "${guest_os}" == "windows" ]; then
|
||||
# Display MSRs alert if the guest is macOS or windows
|
||||
ignore_msrs_alert
|
||||
fi
|
||||
|
||||
# Has the status quo been requested?
|
||||
if [ "${STATUS_QUO}" == "-snapshot" ]; then
|
||||
if [ -z "${img}" ] && [ -z "${iso}" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user