mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 17:23:25 +00:00
30 lines
No EOL
1.3 KiB
PowerShell
30 lines
No EOL
1.3 KiB
PowerShell
Set-StrictMode -Version 2.0
|
|
$ErrorActionPreference = "Stop"
|
|
[Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls"
|
|
$repo_root = (Get-Item "$PSScriptRoot\..\..").FullName
|
|
$toolchain_url = "https://update.flipperzero.one/builds/toolchain/gcc-arm-none-eabi-10.3-2022.06-i686-windows-flipper.zip"
|
|
$toolchain_zip = "gcc-arm-none-eabi-10.3-2022.06-i686-windows-flipper.zip"
|
|
|
|
if (Test-Path -LiteralPath "$repo_root\toolchain\i686-windows") {
|
|
Write-Host -NoNewline "Removing old Windows toolchain.."
|
|
Remove-Item -LiteralPath "$repo_root\toolchain\i686-windows" -Force -Recurse
|
|
Write-Host "done!"
|
|
}
|
|
if (!(Test-Path -Path "$repo_root\$toolchain_zip" -PathType Leaf)) {
|
|
Write-Host -NoNewline "Downloading Windows toolchain.."
|
|
Invoke-WebRequest -Uri "$toolchain_url" -OutFile "$repo_root\$toolchain_zip"
|
|
Write-Host "done!"
|
|
}
|
|
|
|
if (!(Test-Path -LiteralPath "$repo_root\toolchain")) {
|
|
New-Item "$repo_root\toolchain" -ItemType Directory
|
|
}
|
|
|
|
Write-Host -NoNewline "Unziping Windows toolchain.."
|
|
Expand-Archive -LiteralPath "$toolchain_zip" -DestinationPath "$repo_root\" -Force
|
|
Move-Item -Path "$repo_root\gcc-arm-none-eabi-10.3-2022.06" -Destination "$repo_root\toolchain\i686-windows"
|
|
Write-Host "done!"
|
|
|
|
Write-Host -NoNewline "Clearing temporary files.."
|
|
Remove-Item -LiteralPath "$repo_root\$toolchain_zip" -Force
|
|
Write-Host "done!" |