Compare commits

..

No commits in common. "7c00194e7d2d8abc2abe31be73730e6c7c6fd031" and "f8d9a1184c9d03ea8e13e772e68bee10df822832" have entirely different histories.

21 changed files with 27 additions and 8 deletions

View File

@ -66,6 +66,24 @@ label oldstableGnomeCrypto
label separator
menu label ---
label oldoldstableFirmware
menu label Debian stretch amd64 Firmwares
kernel installer/debian/stretch/amd64/linux
append vga=normal initrd=installer/debian/stretch/amd64/initrd_firm.xz -- quiet
label oldoldstableAuto
menu label Debian stretch amd64 ^PRESEED
kernel installer/debian/stretch/amd64/linux
IPAPPEND 2
append vga=normal initrd=installer/debian/stretch/amd64/initrd_firm.xz auto=true interface=auto netcfg/dhcp_timeout=60 netcfg/choose_interface=auto priority=critical preseed/url=tftp://129.20.203.27/preseed/debian/stretch/preseed.cfg
label oldoldstableComputeNode
menu label Debian stretch amd64 for compute node PRESEED
kernel installer/debian/stretch/amd64/linux
IPAPPEND 2
append vga=normal initrd=installer/debian/stretch/amd64/initrd_firm.xz auto=true interface=auto netcfg/dhcp_timeout=60 netcfg/choose_interface=auto priority=critical preseed/url=tftp://129.20.203.27/preseed/debian/stretch/preseed_computenode.cfg
label separator
menu label ---
label unstableAmd64
menu label Debian ^sid amd64
kernel installer/debian/sid/amd64/linux

View File

@ -4,6 +4,7 @@
# This script will download Debian netboot installer for both AMD64 and i368
# 1. Debian Stable (Bullseye)
# 2. Debian oldStable (Buster)
# 3. Debian oldoldStable (Stretch)
# 4. Debian Unstable (Sid)
# and make a sample menu.cfg config file.
# }}}
@ -129,7 +130,7 @@ Create ${DEBIAN_INSTALLER_DIR} tree."
true > "${DEBIAN_CONFIG_PXE}"
# Parse all Debian's distribution
for DISTRO in bullseye buster sid; do # For "all" Debian's version
for DISTRO in bullseye buster stretch sid; do # For "all" Debian's version
## Then parse architecture
for ARCH in amd64 i386; do # For all classic architecture
debug_message "Main FOR loop \

View File

@ -2,7 +2,7 @@
# Purpose {{{
# This script will build a new initrd with some extra firmwares.
# 1. Download Debian initrd (Bullseye, Buster and Sid)
# 1. Download Debian initrd (Bullseye, Buster, Stretch and Sid)
# 2. Download firmwares
# * bnx2
# * all non-free (for tigon)
@ -26,11 +26,11 @@ else
TFTP_DIRECTORY="/srv/tftp"
fi
FIRM_BNX2_DEB_URL_DEFAULT="http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-bnx2_20210315-3_all.deb"
FIRM_NONFREE_DEB_URL_DEFAULT="http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-linux-nonfree_20210315-3_all.deb"
FIRM_MYRICOM_DEB_URL_DEFAULT="http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-myricom_20210315-3_all.deb"
FIRM_QLOGIC_DEB_URL_DEFAULT="http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-qlogic_20210315-3_all.deb"
FIRM_IWLWIFI_DEB_URL_DEFAULT="http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-iwlwifi_20210315-3_all.deb"
FIRM_BNX2_DEB_URL_DEFAULT="http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-bnx2_0.43_all.deb"
FIRM_NONFREE_DEB_URL_DEFAULT="http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-linux-nonfree_0.43_all.deb"
FIRM_MYRICOM_DEB_URL_DEFAULT="http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-myricom_0.43_all.deb"
FIRM_QLOGIC_DEB_URL_DEFAULT="http://deb.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-qlogic_0.43_all.deb"
FIRM_IWLWIFI_DEB_URL_DEFAULT="http://ftp.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-iwlwifi_20210818-1~bpo11+1_all.deb"
## Colors
readonly PURPLE='\033[1;35m'
@ -174,7 +174,7 @@ main() { # {{{
define_vars
for DISTRO in bullseye buster sid; do # For ALL Debian's version
for DISTRO in bullseye buster stretch sid; do # For ALL Debian's version
debug_message "Main FOR loop \
Manage initrd and firmwares for ${RED}${DISTRO}${COLOR_DEBUG} release."