mirror of
https://github.com/dockur/windows.git
synced 2025-10-27 19:35:49 +00:00
feat: Support more image layouts
This commit is contained in:
parent
27c31c0091
commit
efa556cb84
1 changed files with 52 additions and 15 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -Eeuo pipefail
|
set -Eeuo pipefail
|
||||||
|
|
||||||
: "${MANUAL:="N"}"
|
: "${MANUAL:=""}"
|
||||||
: "${EXTERNAL:="N"}"
|
: "${EXTERNAL:="N"}"
|
||||||
: "${VERSION:="win11x64"}"
|
: "${VERSION:="win11x64"}"
|
||||||
|
|
||||||
|
|
@ -72,7 +72,8 @@ fi
|
||||||
[ -f "$STORAGE/$BASE" ] && return 0
|
[ -f "$STORAGE/$BASE" ] && return 0
|
||||||
|
|
||||||
TMP="$STORAGE/tmp"
|
TMP="$STORAGE/tmp"
|
||||||
rm -rf "$TMP" && mkdir -p "$TMP"
|
rm -rf "$TMP"
|
||||||
|
mkdir -p "$TMP"
|
||||||
|
|
||||||
ISO="$TMP/$BASE"
|
ISO="$TMP/$BASE"
|
||||||
rm -f "$ISO"
|
rm -f "$ISO"
|
||||||
|
|
@ -114,17 +115,28 @@ if ((SIZE<10000000)); then
|
||||||
echo && error "Invalid ISO file: Size is smaller than 10 MB" && exit 62
|
echo && error "Invalid ISO file: Size is smaller than 10 MB" && exit 62
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo && info "Preparing ISO image for installation..."
|
echo && info "Extracting downloaded ISO image..."
|
||||||
|
|
||||||
DIR="$TMP/unpack"
|
DIR="$TMP/unpack"
|
||||||
rm -rf "$DIR"
|
rm -rf "$DIR"
|
||||||
|
|
||||||
7z x "$ISO" -o"$DIR"
|
7z x "$ISO" -o"$DIR" > /dev/null
|
||||||
echo
|
echo
|
||||||
|
|
||||||
XML=""
|
XML=""
|
||||||
FB="falling back to manual installation!"
|
FB="falling back to manual installation!"
|
||||||
|
|
||||||
|
if [ -z "$MANUAL" ]; then
|
||||||
|
|
||||||
|
MANUAL="N"
|
||||||
|
|
||||||
|
if [[ "$EXTERNAL" == [Yy1]* ]]; then
|
||||||
|
|
||||||
|
[[ "${BASE,,}" == "tiny10"* ]] && MANUAL="Y"
|
||||||
|
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ "$MANUAL" != [Yy1]* ]]; then
|
if [[ "$MANUAL" != [Yy1]* ]]; then
|
||||||
if [[ "$EXTERNAL" != [Yy1]* ]]; then
|
if [[ "$EXTERNAL" != [Yy1]* ]]; then
|
||||||
|
|
||||||
|
|
@ -144,12 +156,17 @@ if [[ "$MANUAL" != [Yy1]* ]]; then
|
||||||
RESULT=$(wimlib-imagex info -xml "$LOC" | tr -d '\000')
|
RESULT=$(wimlib-imagex info -xml "$LOC" | tr -d '\000')
|
||||||
NAME=$(sed -n "/$TAG/{s/.*<$TAG>\(.*\)<\/$TAG>.*/\1/;p}" <<< "$RESULT")
|
NAME=$(sed -n "/$TAG/{s/.*<$TAG>\(.*\)<\/$TAG>.*/\1/;p}" <<< "$RESULT")
|
||||||
|
|
||||||
[[ "$NAME" == "Windows 11"* ]] && DETECTED="win11x64"
|
if [ -z "$NAME" ]; then
|
||||||
[[ "$NAME" == "Windows 10"* ]] && DETECTED="win10x64"
|
TAG="PRODUCTNAME"
|
||||||
[[ "$NAME" == "Windows 8"* ]] && DETECTED="win81x64"
|
NAME=$(sed -n "/$TAG/{s/.*<$TAG>\(.*\)<\/$TAG>.*/\1/;p}" <<< "$RESULT")
|
||||||
[[ "$NAME" == "Windows Server 2022"* ]] && DETECTED="win2022-eval"
|
fi
|
||||||
[[ "$NAME" == "Windows Server 2019"* ]] && DETECTED="win2019-eval"
|
|
||||||
[[ "$NAME" == "Windows Server 2016"* ]] && DETECTED="win2016-eval"
|
[[ "${NAME,,}" == "windows 11"* ]] && DETECTED="win11x64"
|
||||||
|
[[ "${NAME,,}" == "windows 10"* ]] && DETECTED="win10x64"
|
||||||
|
[[ "${NAME,,}" == "windows 8"* ]] && DETECTED="win81x64"
|
||||||
|
[[ "${NAME,,}" == *"server 2022"* ]] && DETECTED="win2022-eval"
|
||||||
|
[[ "${NAME,,}" == *"server 2019"* ]] && DETECTED="win2019-eval"
|
||||||
|
[[ "${NAME,,}" == *"server 2016"* ]] && DETECTED="win2016-eval"
|
||||||
|
|
||||||
if [ -n "$DETECTED" ]; then
|
if [ -n "$DETECTED" ]; then
|
||||||
|
|
||||||
|
|
@ -157,7 +174,15 @@ if [[ "$MANUAL" != [Yy1]* ]]; then
|
||||||
echo "Detected image of type '$DETECTED', will apply autounattend.xml file."
|
echo "Detected image of type '$DETECTED', will apply autounattend.xml file."
|
||||||
|
|
||||||
else
|
else
|
||||||
error "Warning: failed to detect Windows version from '$NAME', $FB"
|
if [ -z "$NAME" ]; then
|
||||||
|
error "Warning: failed to detect Windows version from image, $FB"
|
||||||
|
else
|
||||||
|
if [[ "${NAME,,}" == "windows 7" ]]; then
|
||||||
|
error "Warning: detected Windows 7 image, $FB"
|
||||||
|
else
|
||||||
|
error "Warning: failed to detect Windows version from string '$NAME', $FB"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
error "Warning: failed to locate 'install.wim' or 'install.esd' in ISO image, $FB"
|
error "Warning: failed to locate 'install.wim' or 'install.esd' in ISO image, $FB"
|
||||||
|
|
@ -175,7 +200,17 @@ if [ -f "$ASSET" ]; then
|
||||||
|
|
||||||
if [ -f "$LOC" ]; then
|
if [ -f "$LOC" ]; then
|
||||||
|
|
||||||
wimlib-imagex update "$LOC" 2 --command "add $ASSET /autounattend.xml"
|
info "Adding XML file for automatic installation..."
|
||||||
|
|
||||||
|
RESULT=$(wimlib-imagex info -xml "$LOC" | tr -d '\000')
|
||||||
|
|
||||||
|
if [[ "${RESULT^^}" == *"<IMAGE INDEX=\"2\">"* ]]; then
|
||||||
|
INDEX="2"
|
||||||
|
else
|
||||||
|
INDEX="1"
|
||||||
|
fi
|
||||||
|
|
||||||
|
wimlib-imagex update "$LOC" "$INDEX" --command "add $ASSET /autounattend.xml" > /dev/null
|
||||||
|
|
||||||
else
|
else
|
||||||
error "Warning: failed to locate 'boot.wim' or 'boot.esd' in ISO image, $FB"
|
error "Warning: failed to locate 'boot.wim' or 'boot.esd' in ISO image, $FB"
|
||||||
|
|
@ -204,6 +239,8 @@ else
|
||||||
[ -n "$XML" ] && error "Warning: XML file '$XML' does not exist, $FB" && echo
|
[ -n "$XML" ] && error "Warning: XML file '$XML' does not exist, $FB" && echo
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
info "Generating new ISO image for installation..."
|
||||||
|
|
||||||
ETFS="boot/etfsboot.com"
|
ETFS="boot/etfsboot.com"
|
||||||
EFISYS="efi/microsoft/boot/efisys_noprompt.bin"
|
EFISYS="efi/microsoft/boot/efisys_noprompt.bin"
|
||||||
|
|
||||||
|
|
@ -216,8 +253,8 @@ if [ -f "$DIR/$ETFS" ]; then
|
||||||
ISO="$TMP/$LABEL.tmp"
|
ISO="$TMP/$LABEL.tmp"
|
||||||
rm -f "$ISO"
|
rm -f "$ISO"
|
||||||
|
|
||||||
genisoimage -b "$ETFS" -no-emul-boot -c "$CAT" -iso-level 4 -J -l -D -N -joliet-long -relaxed-filenames -v -V "$LABEL" -udf \
|
genisoimage -b "$ETFS" -no-emul-boot -c "$CAT" -iso-level 4 -J -l -D -N -joliet-long -relaxed-filenames -quiet -V "$LABEL" -udf \
|
||||||
-boot-info-table -eltorito-alt-boot -eltorito-boot "$EFISYS" -no-emul-boot -o "$ISO" -allow-limited-size "$DIR"
|
-boot-info-table -eltorito-alt-boot -eltorito-boot "$EFISYS" -no-emul-boot -o "$ISO" -allow-limited-size "$DIR"
|
||||||
|
|
||||||
else
|
else
|
||||||
error "Failed to locate file '"$(basename "$EFISYS")"' in ISO image, $FB"
|
error "Failed to locate file '"$(basename "$EFISYS")"' in ISO image, $FB"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue