Skip to content

Commit

Permalink
chore: bump to 14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pfeerick committed Dec 31, 2024
1 parent e1a3cd3 commit 36690db
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions tools/setup_buildenv_msys2_stage2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ if [[ $PAUSEAFTEREACHLINE == "true" ]]; then
fi

echo "=== Step $((STEP++)): Downloading ARM gcc toolchain ==="
wget https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-mingw-w64-i686-arm-none-eabi.zip
wget https://developer.arm.com/-/media/Files/downloads/gnu/14.2.rel1/binrel/arm-gnu-toolchain-14.2.rel1-mingw-w64-i686-arm-none-eabi.zip
if [[ $PAUSEAFTEREACHLINE == "true" ]]; then
echo "Step finished. Please check the output above and press Enter to continue or Ctrl+C to stop."
read
fi

echo "=== Step $((STEP++)): Installing ARM gcc toolchain ==="
unzip arm-gnu-toolchain-13.2.rel1-mingw-w64-i686-arm-none-eabi.zip
rm arm-gnu-toolchain-13.2.rel1-mingw-w64-i686-arm-none-eabi.zip
mv arm-gnu-toolchain-13.2.Rel1-mingw-w64-i686-arm-none-eabi /opt/gcc-arm-none-eabi
unzip arm-gnu-toolchain-14.2.rel1-mingw-w64-i686-arm-none-eabi.zip
rm arm-gnu-toolchain-14.2.rel1-mingw-w64-i686-arm-none-eabi.zip
mv arm-gnu-toolchain-14.2.rel1-mingw-w64-i686-arm-none-eabi /opt/gcc-arm-none-eabi
if [[ $PAUSEAFTEREACHLINE == "true" ]]; then
echo "Step finished. Please check the output above and press Enter to continue or Ctrl+C to stop."
read
Expand Down
6 changes: 3 additions & 3 deletions tools/setup_buildenv_ubuntu20.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ if [[ $PAUSEAFTEREACHLINE == "true" ]]; then
fi

echo "=== Step $((STEP++)): Fetching GNU Arm Embedded Toolchains ==="
# EdgeTX uses GNU Arm Embedded Toolchain in version 13.2.rel1
wget -q --show-progress --progress=bar:force:noscroll https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz
# EdgeTX uses GNU Arm Embedded Toolchain in version 14.2.rel1
wget -q --show-progress --progress=bar:force:noscroll https://developer.arm.com/-/media/Files/downloads/gnu/14.2.rel1/binrel/arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi.tar.xz
if [[ $PAUSEAFTEREACHLINE == "true" ]]; then
echo "Step finished. Please press Enter to continue or Ctrl+C to stop."
read
fi

echo "=== Step $((STEP++)): Unpacking GNU Arm Embedded Toolchains ==="
pv arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz | tar xJf -
pv arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi.tar.xz | tar xJf -
if [[ $PAUSEAFTEREACHLINE == "true" ]]; then
echo "Step finished. Please press Enter to continue or Ctrl+C to stop."
read
Expand Down
6 changes: 3 additions & 3 deletions tools/setup_buildenv_ubuntu22.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ if [[ $PAUSEAFTEREACHLINE == "true" ]]; then
fi

echo "=== Step $((STEP++)): Fetching GNU Arm Embedded Toolchains ==="
# EdgeTX uses GNU Arm Embedded Toolchain in version 13.2.rel1
wget -q --show-progress --progress=bar:force:noscroll https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz
# EdgeTX uses GNU Arm Embedded Toolchain in version 14.2.rel1
wget -q --show-progress --progress=bar:force:noscroll https://developer.arm.com/-/media/Files/downloads/gnu/14.2.rel1/binrel/arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi.tar.xz
if [[ $PAUSEAFTEREACHLINE == "true" ]]; then
echo "Step finished. Please press Enter to continue or Ctrl+C to stop."
read
fi

echo "=== Step $((STEP++)): Unpacking GNU Arm Embedded Toolchains ==="
pv arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz | tar xJf -
pv arm-gnu-toolchain-14.2.rel1-x86_64-arm-none-eabi.tar.xz | tar xJf -
if [[ $PAUSEAFTEREACHLINE == "true" ]]; then
echo "Step finished. Please press Enter to continue or Ctrl+C to stop."
read
Expand Down

0 comments on commit 36690db

Please sign in to comment.