mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
Fix and update Windows build script.
This commit is contained in:
parent
494cb75484
commit
c2dab06c7d
1 changed files with 5 additions and 27 deletions
|
@ -49,44 +49,22 @@ function Unmount-TempDisk
|
||||||
|
|
||||||
Write-Output "Making temp vdisk, running auto-install..."
|
Write-Output "Making temp vdisk, running auto-install..."
|
||||||
|
|
||||||
qemu-img create -f vhdx $TMPDISK 512M
|
qemu-img create -f vhdx $TMPDISK 1024M
|
||||||
fsutil sparse setflag $TMPDISK 0
|
fsutil sparse setflag $TMPDISK 0
|
||||||
fsutil sparse queryflag $TMPDISK
|
fsutil sparse queryflag $TMPDISK
|
||||||
qemu-system-x86_64 -machine q35,accel=whpx,kernel-irqchip=off -drive format=vhdx,file=$TMPDISK -m 2G -rtc base=localtime -cdrom AUTO.ISO -device isa-debug-exit
|
qemu-system-x86_64 -machine q35,accel=whpx,kernel-irqchip=off -drive format=vhdx,file=$TMPDISK -m 2G -rtc base=localtime -cdrom AUTO.ISO -device isa-debug-exit
|
||||||
|
|
||||||
Write-Output "Copying src/Kernel/KStart16.ZC and src/Kernel/KernelA.HH into vdisk ..."
|
Write-Output "Copying all src/ code into vdisk Tmp/OSBuild/ ..."
|
||||||
|
|
||||||
Remove-Item "..\src\Home\Registry.ZC" -errorAction SilentlyContinue
|
|
||||||
Remove-Item "..\src\Home\MakeHome.ZC" -errorAction SilentlyContinue
|
|
||||||
Mount-TempDisk
|
|
||||||
Copy-Item -Path "..\src\Kernel\KStart16.ZC" -Destination "${QEMULETTER}:\Kernel\" -Recurse -Force
|
|
||||||
Copy-Item -Path "..\src\Kernel\KernelA.HH" -Destination "${QEMULETTER}:\Kernel\" -Recurse -Force
|
|
||||||
Unmount-TempDisk
|
|
||||||
|
|
||||||
Write-Output "Rebuilding kernel headers ..."
|
|
||||||
qemu-system-x86_64 -machine q35,accel=whpx,kernel-irqchip=off -drive format=vhdx,file=$TMPDISK -m 2G -rtc base=localtime -device isa-debug-exit
|
|
||||||
|
|
||||||
Write-Output "Copying all kernel code into vdisk ..."
|
|
||||||
|
|
||||||
Remove-Item "..\src\Home\Registry.ZC" -errorAction SilentlyContinue
|
|
||||||
Remove-Item "..\src\Home\MakeHome.ZC" -errorAction SilentlyContinue
|
|
||||||
Mount-TempDisk
|
|
||||||
Copy-Item -Path "..\src\Kernel\*" -Destination "${QEMULETTER}:\Kernel\" -Recurse -Force
|
|
||||||
Unmount-TempDisk
|
|
||||||
|
|
||||||
Write-Output "Rebuilding kernel..."
|
|
||||||
qemu-system-x86_64 -machine q35,accel=whpx,kernel-irqchip=off -drive format=vhdx,file=$TMPDISK -m 2G -rtc base=localtime -device isa-debug-exit
|
|
||||||
|
|
||||||
Write-Output "Copying all src/ code into vdisk ..."
|
|
||||||
|
|
||||||
Remove-Item "..\src\Home\Registry.ZC" -errorAction SilentlyContinue
|
Remove-Item "..\src\Home\Registry.ZC" -errorAction SilentlyContinue
|
||||||
Remove-Item "..\src\Home\MakeHome.ZC" -errorAction SilentlyContinue
|
Remove-Item "..\src\Home\MakeHome.ZC" -errorAction SilentlyContinue
|
||||||
Remove-Item "..\src\Boot\Kernel.ZXE" -errorAction SilentlyContinue
|
Remove-Item "..\src\Boot\Kernel.ZXE" -errorAction SilentlyContinue
|
||||||
Mount-TempDisk
|
Mount-TempDisk
|
||||||
Copy-Item -Path "..\src\*" -Destination "${QEMULETTER}:\" -Recurse -Force
|
New-Item -Path "${QEMULETTER}:\Tmp\" -Name "OSBuild" -ItemType "directory"
|
||||||
|
Copy-Item -Path "..\src\*" -Destination "${QEMULETTER}:\Tmp\OSBuild\" -Recurse -Force
|
||||||
Unmount-TempDisk
|
Unmount-TempDisk
|
||||||
|
|
||||||
Write-Output "Building Distro ISO ..."
|
Write-Output "Rebuilding kernel headers, kernel, OS, and building Distro ISO ..."
|
||||||
|
|
||||||
qemu-system-x86_64 -machine q35,accel=whpx,kernel-irqchip=off -drive format=vhdx,file=$TMPDISK -m 2G -rtc base=localtime -device isa-debug-exit
|
qemu-system-x86_64 -machine q35,accel=whpx,kernel-irqchip=off -drive format=vhdx,file=$TMPDISK -m 2G -rtc base=localtime -device isa-debug-exit
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue