diff --git a/scripts/download_debian.sh b/scripts/download_debian.sh index f7f604d..9a00ef5 100755 --- a/scripts/download_debian.sh +++ b/scripts/download_debian.sh @@ -30,10 +30,10 @@ for DISTRO in buster bullseye stretch jessie sid; do # For ALL Debian's version pushd ${DEBIAN_INSTALLER_DIR}/${DISTRO}/${ARCH} > /dev/null # Download files - #wget http://ftp.fr.debian.org/debian/dists/${DISTRO}/main/installer-${ARCH}/current/images/netboot/debian-installer/${ARCH}/linux -O linux - #wget http://ftp.fr.debian.org/debian/dists/${DISTRO}/main/installer-${ARCH}/current/images/netboot/debian-installer/${ARCH}/initrd.gz -O initrd.gz - wget --quiet http://ftp.fr.debian.org/debian/dists/${DISTRO}/main/installer-${ARCH}/current/images/netboot/debian-installer/${ARCH}/linux -O linux - wget --quiet http://ftp.fr.debian.org/debian/dists/${DISTRO}/main/installer-${ARCH}/current/images/netboot/debian-installer/${ARCH}/initrd.gz -O initrd.gz + #wget http://deb.debian.org/debian/dists/${DISTRO}/main/installer-${ARCH}/current/images/netboot/debian-installer/${ARCH}/linux -O linux + #wget http://deb.debian.org/debian/dists/${DISTRO}/main/installer-${ARCH}/current/images/netboot/debian-installer/${ARCH}/initrd.gz -O initrd.gz + wget --quiet http://deb.debian.org/debian/dists/${DISTRO}/main/installer-${ARCH}/current/images/netboot/debian-installer/${ARCH}/linux -O linux + wget --quiet http://deb.debian.org/debian/dists/${DISTRO}/main/installer-${ARCH}/current/images/netboot/debian-installer/${ARCH}/initrd.gz -O initrd.gz popd > /dev/null # Config file diff --git a/scripts/latecommand.tar.gz b/scripts/latecommand.tar.gz index 0019cc3..e2dcabf 100644 Binary files a/scripts/latecommand.tar.gz and b/scripts/latecommand.tar.gz differ diff --git a/scripts/latecommand/bullseye/etc/apt/sources.list b/scripts/latecommand/bullseye/etc/apt/sources.list index 84c479f..49fa253 100644 --- a/scripts/latecommand/bullseye/etc/apt/sources.list +++ b/scripts/latecommand/bullseye/etc/apt/sources.list @@ -1,6 +1,6 @@ # From latecommand - Debian's preseed -deb http://ftp.fr.debian.org/debian/ bullseye main non-free contrib -deb-src http://ftp.fr.debian.org/debian/ bullseye main non-free contrib +deb http://deb.debian.org/debian/ bullseye main non-free contrib +deb-src http://deb.debian.org/debian/ bullseye main non-free contrib deb http://security.debian.org/debian-security bullseye/updates main contrib non-free deb-src http://security.debian.org/debian-security bullseye/updates main contrib non-free diff --git a/scripts/latecommand/buster/etc/apt/sources.list b/scripts/latecommand/buster/etc/apt/sources.list index f1cd451..34f23db 100644 --- a/scripts/latecommand/buster/etc/apt/sources.list +++ b/scripts/latecommand/buster/etc/apt/sources.list @@ -1,6 +1,6 @@ # From latecommand - Debian's preseed -deb http://ftp.fr.debian.org/debian/ buster main non-free contrib -deb-src http://ftp.fr.debian.org/debian/ buster main non-free contrib +deb http://deb.debian.org/debian/ buster main non-free contrib +deb-src http://deb.debian.org/debian/ buster main non-free contrib deb http://security.debian.org/debian-security buster/updates main contrib non-free deb-src http://security.debian.org/debian-security buster/updates main contrib non-free diff --git a/scripts/latecommand/sid/etc/apt/sources.list b/scripts/latecommand/sid/etc/apt/sources.list index 1b98a41..4cfdd22 100644 --- a/scripts/latecommand/sid/etc/apt/sources.list +++ b/scripts/latecommand/sid/etc/apt/sources.list @@ -1,3 +1,3 @@ # From latecommand - Debian's preseed -deb http://ftp.fr.debian.org/debian/ sid main non-free contrib -deb-src http://ftp.fr.debian.org/debian/ sid main non-free contrib +deb http://deb.debian.org/debian/ sid main non-free contrib +deb-src http://deb.debian.org/debian/ sid main non-free contrib diff --git a/scripts/make_debian_initrd_with_firmware.sh b/scripts/make_debian_initrd_with_firmware.sh index 9eda008..283db9c 100755 --- a/scripts/make_debian_initrd_with_firmware.sh +++ b/scripts/make_debian_initrd_with_firmware.sh @@ -23,8 +23,8 @@ for DISTRO in buster bullseye stretch jessie sid; do # For ALL Debian's version pushd "${TEMP_DIR}" > /dev/null # Download and uncompress original initrd - #wget http://ftp.fr.debian.org/debian/dists/${DISTRO}/main/installer-amd64/current/images/netboot/debian-installer/amd64/initrd.gz - wget --quiet http://ftp.fr.debian.org/debian/dists/${DISTRO}/main/installer-amd64/current/images/netboot/debian-installer/amd64/initrd.gz + #wget http://deb.debian.org/debian/dists/${DISTRO}/main/installer-amd64/current/images/netboot/debian-installer/amd64/initrd.gz + wget --quiet http://deb.debian.org/debian/dists/${DISTRO}/main/installer-amd64/current/images/netboot/debian-installer/amd64/initrd.gz mkdir "${TEMP_DIR}"/mkinitrd pushd "${TEMP_DIR}"/mkinitrd/ > /dev/null zcat ../initrd.gz | cpio -iv @@ -32,28 +32,28 @@ for DISTRO in buster bullseye stretch jessie sid; do # For ALL Debian's version popd > /dev/null # Download bnx2's firmware and uncompress it - #wget http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-bnx2_0.43_all.deb - wget --quiet http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-bnx2_0.43_all.deb + #wget http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-bnx2_0.43_all.deb + wget --quiet http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-bnx2_0.43_all.deb dpkg-deb -x firmware-bnx2_0.43_all.deb "${TEMP_DIR}"/mkinitrd # Download tigon(all non-free)'s firmware and uncompress it - #wget http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-linux-nonfree_0.43_all.deb - wget --quiet http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-linux-nonfree_0.43_all.deb + #wget http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-linux-nonfree_0.43_all.deb + wget --quiet http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-linux-nonfree_0.43_all.deb dpkg-deb -x firmware-linux-nonfree_0.43_all.deb "${TEMP_DIR}"/mkinitrd # Download myricom for IBM - #wget http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-myricom_0.43_all.deb - wget --quiet http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-myricom_0.43_all.deb + #wget http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-myricom_0.43_all.deb + wget --quiet http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-myricom_0.43_all.deb dpkg-deb -x firmware-myricom_0.43_all.deb "${TEMP_DIR}"/mkinitrd # Download qlogic - #wget http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-qlogic_0.43_all.deb - wget --quiet http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-qlogic_0.43_all.deb + #wget http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-qlogic_0.43_all.deb + wget --quiet http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-qlogic_0.43_all.deb dpkg-deb -x firmware-qlogic_0.43_all.deb "${TEMP_DIR}"/mkinitrd # Download iwlwifi - #wget --quiet http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-iwlwifi_20190717-2_all.deb -O firmware-iwlwifi_all.deb - wget --quiet http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-iwlwifi_20210315-2_all.deb -O firmware-iwlwifi_all.deb + #wget --quiet http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-iwlwifi_20190717-2_all.deb -O firmware-iwlwifi_all.deb + wget --quiet http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-iwlwifi_20210315-2_all.deb -O firmware-iwlwifi_all.deb dpkg-deb -x firmware-iwlwifi_all.deb "${TEMP_DIR}"/mkinitrd # Make a new initrd