mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Only set secureboot=on for Windows 11 on non-Debian/Ubuntu
This commit is contained in:
parent
5c0a7885c9
commit
a5f27dc68d
1 changed files with 9 additions and 0 deletions
9
quickget
9
quickget
|
@ -526,6 +526,8 @@ function make_vm_config() {
|
|||
local ISO_FILE=""
|
||||
local IMAGE_TYPE=""
|
||||
local GUEST=""
|
||||
local SEC_BOOT=""
|
||||
|
||||
IMAGE_FILE="${1}"
|
||||
ISO_FILE="${2}"
|
||||
if [ "${OS}" == "elementary" ]; then
|
||||
|
@ -588,6 +590,13 @@ EOF
|
|||
# Enable TPM for Windows 11
|
||||
if [ "${OS}" == "windows" ] && [ "${RELEASE}" -ge 11 ]; then
|
||||
echo "tpm=\"on\"" >> "${OS}-${RELEASE}.conf"
|
||||
# Only force SecureBoot on for non-Debian/Ubuntu distros.
|
||||
if [ -e "/usr/share/OVMF/OVMF_CODE_4M.fd" ] && [ -e "/usr/share/OVMF/OVMF_VARS_4M.fd" ]; then
|
||||
SEC_BOOT="off"
|
||||
else
|
||||
SEC_BOOT="on"
|
||||
fi
|
||||
echo "secureboot=\"${SEC_BOOT}\"" >> "${OS}-${RELEASE}.conf"
|
||||
fi
|
||||
fi
|
||||
start_vm_info
|
||||
|
|
Loading…
Reference in a new issue