Remove/rename everything related to Stretch
As Debian Stretch installer is no longer available for download, the script and tftpd fail with Stretch.
This commit is contained in:
parent
ee90f59d6c
commit
7c00194e7d
|
@ -66,24 +66,6 @@ label oldstableGnomeCrypto
|
||||||
label separator
|
label separator
|
||||||
menu label ---
|
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
|
label unstableAmd64
|
||||||
menu label Debian ^sid amd64
|
menu label Debian ^sid amd64
|
||||||
kernel installer/debian/sid/amd64/linux
|
kernel installer/debian/sid/amd64/linux
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
# This script will download Debian netboot installer for both AMD64 and i368
|
# This script will download Debian netboot installer for both AMD64 and i368
|
||||||
# 1. Debian Stable (Bullseye)
|
# 1. Debian Stable (Bullseye)
|
||||||
# 2. Debian oldStable (Buster)
|
# 2. Debian oldStable (Buster)
|
||||||
# 3. Debian oldoldStable (Stretch)
|
|
||||||
# 4. Debian Unstable (Sid)
|
# 4. Debian Unstable (Sid)
|
||||||
# and make a sample menu.cfg config file.
|
# and make a sample menu.cfg config file.
|
||||||
# }}}
|
# }}}
|
||||||
|
@ -130,7 +129,7 @@ Create ${DEBIAN_INSTALLER_DIR} tree."
|
||||||
true > "${DEBIAN_CONFIG_PXE}"
|
true > "${DEBIAN_CONFIG_PXE}"
|
||||||
|
|
||||||
# Parse all Debian's distribution
|
# Parse all Debian's distribution
|
||||||
for DISTRO in bullseye buster stretch sid; do # For "all" Debian's version
|
for DISTRO in bullseye buster sid; do # For "all" Debian's version
|
||||||
## Then parse architecture
|
## Then parse architecture
|
||||||
for ARCH in amd64 i386; do # For all classic architecture
|
for ARCH in amd64 i386; do # For all classic architecture
|
||||||
debug_message "Main FOR loop − \
|
debug_message "Main FOR loop − \
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Purpose {{{
|
# Purpose {{{
|
||||||
# This script will build a new initrd with some extra firmwares.
|
# This script will build a new initrd with some extra firmwares.
|
||||||
# 1. Download Debian initrd (Bullseye, Buster, Stretch and Sid)
|
# 1. Download Debian initrd (Bullseye, Buster and Sid)
|
||||||
# 2. Download firmwares
|
# 2. Download firmwares
|
||||||
# * bnx2
|
# * bnx2
|
||||||
# * all non-free (for tigon)
|
# * all non-free (for tigon)
|
||||||
|
@ -174,7 +174,7 @@ main() { # {{{
|
||||||
|
|
||||||
define_vars
|
define_vars
|
||||||
|
|
||||||
for DISTRO in bullseye buster stretch sid; do # For ALL Debian's version
|
for DISTRO in bullseye buster sid; do # For ALL Debian's version
|
||||||
|
|
||||||
debug_message "Main FOR loop − \
|
debug_message "Main FOR loop − \
|
||||||
Manage initrd and firmwares for ${RED}${DISTRO}${COLOR_DEBUG} release."
|
Manage initrd and firmwares for ${RED}${DISTRO}${COLOR_DEBUG} release."
|
||||||
|
|
Loading…
Reference in New Issue