diff --git a/QT_build_instructions.md b/QT_build_instructions.md index 83c995e..6e8d5e6 100644 --- a/QT_build_instructions.md +++ b/QT_build_instructions.md @@ -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. diff --git a/build-scripts/CI/CICTB_32b b/build-scripts/CI/CICTB_32b index 2ade58a..31c5f7b 100644 --- a/build-scripts/CI/CICTB_32b +++ b/build-scripts/CI/CICTB_32b @@ -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 @@ -155,11 +155,12 @@ 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 @@ -167,7 +168,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 diff --git a/build-scripts/CI/CINTB_32b b/build-scripts/CI/CINTB_32b index cdf4e0c..02b9444 100644 --- a/build-scripts/CI/CINTB_32b +++ b/build-scripts/CI/CINTB_32b @@ -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 @@ -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 @@ -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