1
0
다음의 미러 https://github.com/dockur/windows.git 동기화됨 2026-06-12 13:19:34 +08:00

feat: Add flag to disable secure boot (#263)

이 커밋은 다음에 포함됨:
Kroese
2024-03-13 10:20:18 +01:00
커밋한 사람 GitHub
부모 59b98fe211
커밋 6aee02b4e1
3개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
+1 -1
파일 보기
@@ -1,5 +1,5 @@
FROM scratch FROM scratch
COPY --from=qemux/qemu-docker:4.17 / / COPY --from=qemux/qemu-docker:4.18 / /
ARG DEBCONF_NOWARNINGS "yes" ARG DEBCONF_NOWARNINGS "yes"
ARG DEBIAN_FRONTEND "noninteractive" ARG DEBIAN_FRONTEND "noninteractive"
+2 -1
파일 보기
@@ -1,8 +1,9 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -Eeuo pipefail set -Eeuo pipefail
: "${BOOT_MODE:="windows"}"
APP="Windows" APP="Windows"
BOOT_MODE="windows"
SUPPORT="https://github.com/dockur/windows" SUPPORT="https://github.com/dockur/windows"
cd /run cd /run
+1 -1
파일 보기
@@ -854,7 +854,7 @@ prepareImage() {
local iso="$1" local iso="$1"
local dir="$2" local dir="$2"
if [[ "${BOOT_MODE,,}" == "windows" ]]; then if [[ "${BOOT_MODE,,}" != "windows_legacy" ]]; then
if [[ "${DETECTED,,}" != "winxp"* ]] && [[ "${DETECTED,,}" != "win2008"* ]]; then if [[ "${DETECTED,,}" != "winxp"* ]] && [[ "${DETECTED,,}" != "win2008"* ]]; then
if [[ "${DETECTED,,}" != "winvista"* ]] && [[ "${DETECTED,,}" != "win7"* ]]; then if [[ "${DETECTED,,}" != "winvista"* ]] && [[ "${DETECTED,,}" != "win7"* ]]; then