From 50d449e0e3791fdbb2c178ffe3b8d4ced861ce58 Mon Sep 17 00:00:00 2001 From: b1ackmai1er Date: Mon, 4 Jan 2021 21:14:21 +0800 Subject: [PATCH] Update Build.ps1 Remove compressed update image option. Project for another time maybe. --- Source/HBIOS/Build.ps1 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/HBIOS/Build.ps1 b/Source/HBIOS/Build.ps1 index 764efbe1..2610b25e 100644 --- a/Source/HBIOS/Build.ps1 +++ b/Source/HBIOS/Build.ps1 @@ -92,11 +92,10 @@ $ErrorAction = 'Stop' # Directories of required build tools (TASM & cpmtools) $TasmPath = '..\..\tools\tasm32' $CpmToolsPath = '..\..\tools\cpmtools' -$LzaToolsPath = '..\..\tools\lzsa' # Add tool directories to PATH and setup TASM's TABS directory path $env:TASMTABS = $TasmPath -$env:PATH = $TasmPath + ';' + $CpmToolsPath + ';' + $LzaToolsPath + ';' + $env:PATH +$env:PATH = $TasmPath + ';' + $CpmToolsPath + ';' + $env:PATH # Initialize working variables $OutDir = "../../Binary" # Output directory for final image file @@ -254,7 +253,6 @@ else foreach ($InputFile in $SystemFileList) { Copy-Item $InputFile $RomDiskFile -# lzsa -f2 -r $InputFile $RomDiskFile Add-Content $UpdFile -Value ([System.IO.File]::ReadAllBytes($RomDiskFile)) -Encoding byte Remove-Item $RomDiskFile }