Skip to content

Commit

Permalink
feat: Enable secure boot on multi-socket systems (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored May 23, 2024
1 parent b32e66b commit 0971fb7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ finishInstall() {
echo "$BOOT_MODE" > "$STORAGE/windows.mode"
fi
fi
# Enable secure boot on multi-socket systems to workaround freeze
if [ -n "$SOCKETS" ] && [[ "$SOCKETS" != "1" ]]; then
BOOT_MODE="windows_secure"
echo "$BOOT_MODE" > "$STORAGE/windows.mode"
fi
fi
fi

Expand Down

0 comments on commit 0971fb7

Please sign in to comment.