From 85ddd815cf1385a5958e1a7576ba8f84d57f6249 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Cho=C5=82odecki?= <47953909+DerQut@users.noreply.github.com> Date: Mon, 29 Sep 2025 14:35:44 +0200 Subject: [PATCH 01/11] Changed a dead link to an official GNU mirror --- scripts/001-binutils-PPU.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/001-binutils-PPU.sh b/scripts/001-binutils-PPU.sh index 14e295cff..c15b76890 100755 --- a/scripts/001-binutils-PPU.sh +++ b/scripts/001-binutils-PPU.sh @@ -6,7 +6,7 @@ BINUTILS="binutils-2.22" if [ ! -d ${BINUTILS} ]; then ## Download the source code. - if [ ! -f ${BINUTILS}.tar.bz2 ]; then wget --continue https://ftp.gnu.org/gnu/binutils/${BINUTILS}.tar.bz2; fi + if [ ! -f ${BINUTILS}.tar.bz2 ]; then wget --continue http://ftpmirror.gnu.org/binutils/${BINUTILS}.tar.bz2; fi ## Download an up-to-date config.guess and config.sub if [ ! -f config.guess ]; then wget --continue https://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi From 9ebb1532132fbf78347feaa2b9754da2640fde28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Cho=C5=82odecki?= <47953909+DerQut@users.noreply.github.com> Date: Mon, 29 Sep 2025 14:36:50 +0200 Subject: [PATCH 02/11] Changed a dead link to an official GNU mirror --- scripts/005-binutils-SPU.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/005-binutils-SPU.sh b/scripts/005-binutils-SPU.sh index 0c993d411..983ac6b2d 100755 --- a/scripts/005-binutils-SPU.sh +++ b/scripts/005-binutils-SPU.sh @@ -6,7 +6,7 @@ BINUTILS="binutils-2.22" if [ ! -d ${BINUTILS} ]; then ## Download the source code. - if [ ! -f ${BINUTILS}.tar.bz2 ]; then wget --continue https://ftp.gnu.org/gnu/binutils/${BINUTILS}.tar.bz2; fi + if [ ! -f ${BINUTILS}.tar.bz2 ]; then wget --continue http://ftpmirror.gnu.org/binutils/${BINUTILS}.tar.bz2; fi ## Download an up-to-date config.guess and config.sub if [ ! -f config.guess ]; then wget --continue https://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi From f1c6ae4e7603417a6d22a4447747dcd6df687d31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Cho=C5=82odecki?= <47953909+DerQut@users.noreply.github.com> Date: Mon, 29 Sep 2025 14:39:17 +0200 Subject: [PATCH 03/11] Changed a dead link to an official GNU mirror --- scripts/006-gcc-newlib-SPU.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/006-gcc-newlib-SPU.sh b/scripts/006-gcc-newlib-SPU.sh index c51f73786..1dbaf2727 100755 --- a/scripts/006-gcc-newlib-SPU.sh +++ b/scripts/006-gcc-newlib-SPU.sh @@ -7,7 +7,7 @@ NEWLIB="newlib-1.20.0" if [ ! -d ${GCC} ]; then ## Download the source code. - if [ ! -f ${GCC}.tar.xz ]; then wget --continue https://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.xz; fi + if [ ! -f ${GCC}.tar.xz ]; then wget --continue https://ftpmirror.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.xz; fi if [ ! -f ${NEWLIB}.tar.gz ]; then wget --continue https://sourceware.org/pub/newlib/${NEWLIB}.tar.gz; fi ## Unpack the source code. From f8f949541cf75acde275e9bb7ee8100bede0fbdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Cho=C5=82odecki?= <47953909+DerQut@users.noreply.github.com> Date: Mon, 29 Sep 2025 14:40:34 +0200 Subject: [PATCH 04/11] Changed a dead link to an official GNU mirror --- scripts/007-gdb-SPU.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/007-gdb-SPU.sh b/scripts/007-gdb-SPU.sh index 8e227156f..11cbd8a1f 100755 --- a/scripts/007-gdb-SPU.sh +++ b/scripts/007-gdb-SPU.sh @@ -6,7 +6,7 @@ GDB="gdb-8.3.1" if [ ! -d ${GDB} ]; then ## Download the source code. - if [ ! -f ${GDB}.tar.xz ]; then wget --continue https://ftp.gnu.org/gnu/gdb/${GDB}.tar.xz; fi + if [ ! -f ${GDB}.tar.xz ]; then wget --continue https://ftpmirror.gnu.org/gnu/gdb/${GDB}.tar.xz; fi ## Download an up-to-date config.guess and config.sub if [ ! -f config.guess ]; then wget --continue https://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi From 63ad9f76d85682248dc5a5c720a5d60050a57f8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Cho=C5=82odecki?= <47953909+DerQut@users.noreply.github.com> Date: Mon, 29 Sep 2025 14:42:15 +0200 Subject: [PATCH 05/11] Changed a dead link to an official GNU mirror --- scripts/002-gcc-newlib-PPU.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/002-gcc-newlib-PPU.sh b/scripts/002-gcc-newlib-PPU.sh index b63da30d2..d4b43eb4c 100755 --- a/scripts/002-gcc-newlib-PPU.sh +++ b/scripts/002-gcc-newlib-PPU.sh @@ -7,7 +7,7 @@ NEWLIB="newlib-1.20.0" if [ ! -d ${GCC} ]; then ## Download the source code. - if [ ! -f ${GCC}.tar.xz ]; then wget --continue https://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.xz; fi + if [ ! -f ${GCC}.tar.xz ]; then wget --continue https://ftpmirror.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.xz; fi if [ ! -f ${NEWLIB}.tar.gz ]; then wget --continue https://sourceware.org/pub/newlib/${NEWLIB}.tar.gz; fi ## Unpack the source code. From 9849420aa904256ab17952d8c9c4bef4c91e0f63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Cho=C5=82odecki?= <47953909+DerQut@users.noreply.github.com> Date: Mon, 29 Sep 2025 14:43:26 +0200 Subject: [PATCH 06/11] Changed a dead link to an official GNU mirror --- scripts/003-gdb-PPU.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/003-gdb-PPU.sh b/scripts/003-gdb-PPU.sh index 60e623888..82ef55c54 100755 --- a/scripts/003-gdb-PPU.sh +++ b/scripts/003-gdb-PPU.sh @@ -6,7 +6,7 @@ GDB="gdb-8.3.1" if [ ! -d ${GDB} ]; then ## Download the source code. - if [ ! -f ${GDB}.tar.xz ]; then wget --continue https://ftp.gnu.org/gnu/gdb/${GDB}.tar.xz; fi + if [ ! -f ${GDB}.tar.xz ]; then wget --continue https://ftpmirror.gnu.org/gnu/gdb/${GDB}.tar.xz; fi ## Download an up-to-date config.guess and config.sub if [ ! -f config.guess ]; then wget --continue https://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi From cb5755a72ebcf91da542c54cb46a6fb70e17697b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Cho=C5=82odecki?= <47953909+DerQut@users.noreply.github.com> Date: Mon, 29 Sep 2025 15:18:50 +0200 Subject: [PATCH 07/11] Redirected to my personal fork --- scripts/009-ps3libraries.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/009-ps3libraries.sh b/scripts/009-ps3libraries.sh index 67fd2adc7..7a7909547 100755 --- a/scripts/009-ps3libraries.sh +++ b/scripts/009-ps3libraries.sh @@ -2,7 +2,7 @@ # ps3libraries.sh by Naomi Peori (naomi@peori.ca) ## Download the source code. -wget --no-check-certificate https://github.com/ps3dev/ps3libraries/tarball/master -O ps3libraries.tar.gz +wget --no-check-certificate https://github.com/DerQut/ps3libraries/tarball/master -O ps3libraries.tar.gz ## Unpack the source code. rm -Rf ps3libraries && mkdir ps3libraries && tar --strip-components=1 --directory=ps3libraries -xvzf ps3libraries.tar.gz && cd ps3libraries From 7742fa0afe3582a4141d3185c231084781392de8 Mon Sep 17 00:00:00 2001 From: DerQut Date: Mon, 29 Sep 2025 19:12:08 +0200 Subject: [PATCH 08/11] Revert "Redirected to my personal fork" This reverts commit cb5755a72ebcf91da542c54cb46a6fb70e17697b. --- scripts/009-ps3libraries.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/009-ps3libraries.sh b/scripts/009-ps3libraries.sh index 7a7909547..67fd2adc7 100755 --- a/scripts/009-ps3libraries.sh +++ b/scripts/009-ps3libraries.sh @@ -2,7 +2,7 @@ # ps3libraries.sh by Naomi Peori (naomi@peori.ca) ## Download the source code. -wget --no-check-certificate https://github.com/DerQut/ps3libraries/tarball/master -O ps3libraries.tar.gz +wget --no-check-certificate https://github.com/ps3dev/ps3libraries/tarball/master -O ps3libraries.tar.gz ## Unpack the source code. rm -Rf ps3libraries && mkdir ps3libraries && tar --strip-components=1 --directory=ps3libraries -xvzf ps3libraries.tar.gz && cd ps3libraries From d4434466ef80708926c807189b9f4b1a52f77ab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Cho=C5=82odecki?= <47953909+DerQut@users.noreply.github.com> Date: Mon, 29 Sep 2025 19:15:55 +0200 Subject: [PATCH 09/11] Fixed a typo (http instead of https) --- scripts/001-binutils-PPU.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/001-binutils-PPU.sh b/scripts/001-binutils-PPU.sh index c15b76890..0ff372f22 100755 --- a/scripts/001-binutils-PPU.sh +++ b/scripts/001-binutils-PPU.sh @@ -6,7 +6,7 @@ BINUTILS="binutils-2.22" if [ ! -d ${BINUTILS} ]; then ## Download the source code. - if [ ! -f ${BINUTILS}.tar.bz2 ]; then wget --continue http://ftpmirror.gnu.org/binutils/${BINUTILS}.tar.bz2; fi + if [ ! -f ${BINUTILS}.tar.bz2 ]; then wget --continue https://ftpmirror.gnu.org/binutils/${BINUTILS}.tar.bz2; fi ## Download an up-to-date config.guess and config.sub if [ ! -f config.guess ]; then wget --continue https://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi From ed65a78e673c2699040ac949be0ecfdc488ce2f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Cho=C5=82odecki?= <47953909+DerQut@users.noreply.github.com> Date: Mon, 29 Sep 2025 19:17:14 +0200 Subject: [PATCH 10/11] Fixed a typo (http instead of https) --- scripts/005-binutils-SPU.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/005-binutils-SPU.sh b/scripts/005-binutils-SPU.sh index 983ac6b2d..99da4b91a 100755 --- a/scripts/005-binutils-SPU.sh +++ b/scripts/005-binutils-SPU.sh @@ -6,7 +6,7 @@ BINUTILS="binutils-2.22" if [ ! -d ${BINUTILS} ]; then ## Download the source code. - if [ ! -f ${BINUTILS}.tar.bz2 ]; then wget --continue http://ftpmirror.gnu.org/binutils/${BINUTILS}.tar.bz2; fi + if [ ! -f ${BINUTILS}.tar.bz2 ]; then wget --continue https://ftpmirror.gnu.org/binutils/${BINUTILS}.tar.bz2; fi ## Download an up-to-date config.guess and config.sub if [ ! -f config.guess ]; then wget --continue https://git.savannah.gnu.org/cgit/config.git/plain/config.guess; fi From 55ce621d47fadb112603db0274020a897105c9ac Mon Sep 17 00:00:00 2001 From: DerQut Date: Mon, 29 Sep 2025 21:45:45 +0200 Subject: [PATCH 11/11] Changed ps3libraries repo to my own fork --- scripts/009-ps3libraries.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/009-ps3libraries.sh b/scripts/009-ps3libraries.sh index 67fd2adc7..7a7909547 100755 --- a/scripts/009-ps3libraries.sh +++ b/scripts/009-ps3libraries.sh @@ -2,7 +2,7 @@ # ps3libraries.sh by Naomi Peori (naomi@peori.ca) ## Download the source code. -wget --no-check-certificate https://github.com/ps3dev/ps3libraries/tarball/master -O ps3libraries.tar.gz +wget --no-check-certificate https://github.com/DerQut/ps3libraries/tarball/master -O ps3libraries.tar.gz ## Unpack the source code. rm -Rf ps3libraries && mkdir ps3libraries && tar --strip-components=1 --directory=ps3libraries -xvzf ps3libraries.tar.gz && cd ps3libraries