Skip to content

Commit

Permalink
Fixed Base CLI Binaries URL path.
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiTronix committed Aug 31, 2024
1 parent 3064c5a commit d6d2708
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion QT_build_instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ Copy URL from one of following Precompiled Compressed Base-Toolchain _(for maxim
| ---------- | :--------: | :------: | :------: |
| Raspberry Pi - *Zero/W/WH & 1 Model A/B/A+/B+* | [6.3.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Stretch/GCC%206.3.0/Raspberry%20Pi%201%2C%20Zero/cross-gcc-6.3.0-pi_0-1.tar.gz) | [8.3.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Buster/GCC%208.3.0/Raspberry%20Pi%201%2C%20Zero/cross-gcc-8.3.0-pi_0-1.tar.gz) | [10.2.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Bullseye/GCC%2010.2.0/Raspberry%20Pi%201%2C%20Zero/cross-gcc-10.2.0-pi_0-1.tar.gz) |
| Raspberry Pi - *2 & 3 Model A/B* | [6.3.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Stretch/GCC%206.3.0/Raspberry%20Pi%202%2C%203/cross-gcc-6.3.0-pi_2-3.tar.gz) | [8.3.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Buster/GCC%208.3.0/Raspberry%20Pi%202%2C%203/cross-gcc-8.3.0-pi_2-3.tar.gz) | [10.2.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Bullseye/GCC%2010.2.0/Raspberry%20Pi%202%2C%203/cross-gcc-10.2.0-pi_2-3.tar.gz) |
| Raspberry Pi - *3 & 4 Model A+/B+ & Compute 3/3-lite/3+* | [6.3.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Stretch/GCC%206.3.0/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204/cross-gcc-6.3.0-pi_3%2B.tar.gz) | [8.3.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Buster/GCC%208.3.0/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204/cross-gcc-8.3.0-pi_3%2B.tar.gz) | [10.2.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Bullseye/GCC%2010.2.0/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204/cross-gcc-10.2.0-pi_3%2B.tar.gz) |
| Raspberry Pi - *3 & 4 Model A+/B+ & Compute 3/3-lite/3+* | [6.3.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Stretch/GCC%206.3.0/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204%2C%205/cross-gcc-6.3.0-pi_3%2B.tar.gz) | [8.3.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Buster/GCC%208.3.0/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204%2C%205/cross-gcc-8.3.0-pi_3%2B.tar.gz) | [10.2.0](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/Bullseye/GCC%2010.2.0/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204%2C%205/cross-gcc-10.2.0-pi_3%2B.tar.gz) |
**Note:** You can also use the [latest cross-compiler binaries](https://sourceforge.net/projects/raspberry-pi-cross-compilers/files/Raspberry%20Pi%20GCC%20Cross-Compiler%20Toolchains/) instead. But they are not tested.
Expand Down
7 changes: 4 additions & 3 deletions build-scripts/CI/CICTB_32b
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ if [ "$RPIOS_TYPE" = "buster" ]; then
elif [ "$RPI_TYPE" = "2-3" ]; then
URL="$URL/Raspberry%20Pi%202%2C%203/"
elif [ "$RPI_TYPE" = "3+" ]; then
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204/"
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204%2C%205/"
else
echo "Missing RPI_TYPE parameter!"
exit 1
Expand All @@ -155,19 +155,20 @@ elif [ "$RPIOS_TYPE" = "bullseye" ]; then
elif [ "$RPI_TYPE" = "2-3" ]; then
URL="$URL/Raspberry%20Pi%202%2C%203/"
elif [ "$RPI_TYPE" = "3+" ]; then
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204/"
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204%2C%205/"
else
echo "Missing RPI_TYPE parameter!"
exit 1
fi

elif [ "$RPIOS_TYPE" = "bookworm" ]; then
URL="$URL/Bookworm/GCC%20$GCCBASE_VERSION"
if [ "$RPI_TYPE" = "0-1" ]; then
URL="$URL/Raspberry%20Pi%201%2C%20Zero/"
elif [ "$RPI_TYPE" = "2-3" ]; then
URL="$URL/Raspberry%20Pi%202%2C%203/"
elif [ "$RPI_TYPE" = "3+" ]; then
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204/"
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204%2C%205/"
else
echo "Missing RPI_TYPE parameter!"
exit 1
Expand Down
6 changes: 3 additions & 3 deletions build-scripts/CI/CINTB_32b
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ if [ "$RPIOS_TYPE" = "buster" ]; then
elif [ "$RPI_TYPE" = "2-3" ]; then
URL="$URL/Raspberry%20Pi%202%2C%203/"
elif [ "$RPI_TYPE" = "3+" ]; then
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204/"
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204%2C%205/"
else
echo "Missing RPI_TYPE parameter!"
exit 1
Expand All @@ -142,7 +142,7 @@ elif [ "$RPIOS_TYPE" = "bullseye" ]; then
elif [ "$RPI_TYPE" = "2-3" ]; then
URL="$URL/Raspberry%20Pi%202%2C%203/"
elif [ "$RPI_TYPE" = "3+" ]; then
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204/"
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204%2C%205/"
else
echo "Missing RPI_TYPE parameter!"
exit 1
Expand All @@ -154,7 +154,7 @@ elif [ "$RPIOS_TYPE" = "bookworm" ]; then
elif [ "$RPI_TYPE" = "2-3" ]; then
URL="$URL/Raspberry%20Pi%202%2C%203/"
elif [ "$RPI_TYPE" = "3+" ]; then
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204/"
URL="$URL/Raspberry%20Pi%203A%2B%2C%203B%2B%2C%204%2C%205/"
else
echo "Missing RPI_TYPE parameter!"
exit 1
Expand Down

0 comments on commit d6d2708

Please sign in to comment.