From 4e804a1ef96f51f67b4b7d93ed476d728d732666 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 24 Sep 2025 16:42:50 +0200 Subject: [PATCH] feat: Update warning messages (#314) --- src/boot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot.sh b/src/boot.sh index b575c48..74ba94d 100644 --- a/src/boot.sh +++ b/src/boot.sh @@ -173,7 +173,7 @@ else fi if [[ "$CPU_VENDOR" == "AuthenticAMD" && "${CPU_CORES,,}" != "1" && "${FORCE:-}" == [Nn]* && "${KVM:-}" != [Nn]* ]]; then - warn "Restricted processor to a single core (instead of $CPU_CORES cores) because an AMD CPU was detected! (Set FORCE: \"Y\" to disable this measure)" + warn "Restricted processor to a single core (instead of $CPU_CORES cores) because an AMD CPU was detected! (Set \"FORCE=Y\" to disable this measure)" CPU_CORES="1" fi @@ -191,7 +191,7 @@ else "${CLOCKSOURCE,,}" ) ;; "kvm-clock" ) if [[ "$CPU_VENDOR" == "AuthenticAMD" && "${CPU_CORES,,}" != "1" && "${FORCE:-}" == [Nn]* && "${KVM:-}" != [Nn]* ]]; then - warn "Restricted processor to a single core (instead of $CPU_CORES cores) because nested KVM virtualization on an AMD CPU was detected! (Set FORCE: \"Y\" to disable this measure)" + warn "Restricted processor to a single core (instead of $CPU_CORES cores) because nested KVM virtualization on an AMD CPU was detected! (Set \"FORCE=Y\" to disable this measure)" CPU_CORES="1" else warn "Nested KVM virtualization detected, this might cause issues running macOS!"