mirror of
https://github.com/dockur/windows.git
synced 2024-11-19 10:31:48 +00:00
fix: Convert line endings (#171)
This commit is contained in:
parent
132157edf6
commit
7e970a8e18
1 changed files with 3 additions and 2 deletions
|
@ -797,7 +797,8 @@ prepareXP() {
|
||||||
[[ "${arch,,}" == "amd64" ]] && key="B66VY-4D94T-TPPD4-43F72-8X4FY"
|
[[ "${arch,,}" == "amd64" ]] && key="B66VY-4D94T-TPPD4-43F72-8X4FY"
|
||||||
|
|
||||||
local sif="$target/WINNT.SIF"
|
local sif="$target/WINNT.SIF"
|
||||||
{ echo "[Data]"
|
|
||||||
|
{ echo "[Data]"
|
||||||
echo "AutoPartition=1"
|
echo "AutoPartition=1"
|
||||||
echo "MsDosInitiated=\"0\""
|
echo "MsDosInitiated=\"0\""
|
||||||
echo "UnattendedInstall=\"Yes\""
|
echo "UnattendedInstall=\"Yes\""
|
||||||
|
@ -850,7 +851,7 @@ prepareXP() {
|
||||||
echo ""
|
echo ""
|
||||||
echo "[TerminalServices]"
|
echo "[TerminalServices]"
|
||||||
echo "AllowConnections=1"
|
echo "AllowConnections=1"
|
||||||
} > "$sif"
|
} | unix2dos > "$sif"
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue