Disable sparc32 for Lenny images as it is no longer supported

This commit is contained in:
Frans Pop 2007-07-18 07:39:59 +00:00
parent 87b46721b8
commit ff146a5d79
3 changed files with 20 additions and 19 deletions

View File

@ -28,24 +28,24 @@ image[sun4u]=/boot/sparc64
append="auto=true priority=critical"
### sparc32 boot images
image[sun4c,sun4d,sun4m]=/boot/sparc32
label=install
initrd=/boot/initrd.gz
#image[sun4c,sun4d,sun4m]=/boot/sparc32
# label=install
# initrd=/boot/initrd.gz
# sparc32 expert boots
image[sun4c,sun4d,sun4m]=/boot/sparc32
label=expert
initrd=/boot/initrd.gz
append="debconf/priority=low"
#image[sun4c,sun4d,sun4m]=/boot/sparc32
# label=expert
# initrd=/boot/initrd.gz
# append="debconf/priority=low"
# sparc32 rescue boots
image[sun4c,sun4d,sun4m]=/boot/sparc32
label=rescue
initrd=/boot/initrd.gz
append="rescue/enable=true"
#image[sun4c,sun4d,sun4m]=/boot/sparc32
# label=rescue
# initrd=/boot/initrd.gz
# append="rescue/enable=true"
# sparc32 auto-install boots
image[sun4c,sun4d,sun4m]=/boot/sparc32
label=auto
initrd=/boot/initrd.gz
append="auto=true priority=critical"
#image[sun4c,sun4d,sun4m]=/boot/sparc32
# label=auto
# initrd=/boot/initrd.gz
# append="auto=true priority=critical"

3
debian/changelog vendored
View File

@ -44,8 +44,9 @@ debian-cd (3.0.3) UNRELEASED; urgency=low
Xfce CD images; now they only help to confuse.
* Exclude live-installer, simple-cdd, pwgen and nbd udebs as they are
currently not used in Debian Installer.
* Disable sparc32 for Lenny images as it is no longer supported.
-- Frans Pop <fjp@debian.org> Fri, 13 Jul 2007 02:06:31 +0200
-- Frans Pop <fjp@debian.org> Wed, 18 Jul 2007 01:05:42 +0200
debian-cd (3.0.2) unstable; urgency=high

View File

@ -64,13 +64,13 @@ else
mkdir ./2.6
DI_WWW_HOME=$DI_WWW_HOME/2.6
wget "$DI_WWW_HOME" -O ./2.6/di.dir
sparc32=$(sed -n 's/.*a href="\(vmlinuz-.*-sparc32\)".*/\1/p' ./2.6/di.dir)
#sparc32=$(sed -n 's/.*a href="\(vmlinuz-.*-sparc32\)".*/\1/p' ./2.6/di.dir)
sparc64=$(sed -n 's/.*a href="\(vmlinuz-.*-sparc64\)".*/\1/p' ./2.6/di.dir)
wget "$DI_WWW_HOME/$sparc32" -O ./2.6/vmlinuz-x-sparc32
#wget "$DI_WWW_HOME/$sparc32" -O ./2.6/vmlinuz-x-sparc32
wget "$DI_WWW_HOME/$sparc64" -O ./2.6/vmlinuz-x-sparc64
wget "$DI_WWW_HOME/initrd.gz" -O ./2.6/initrd.gz
fi
cp "$DI_DIR"/2.6/initrd.gz "$inst/boot/initrd.gz"
cp "$DI_DIR"/2.6/vmlinuz-*-sparc32 "$inst/boot/sparc32"
#cp "$DI_DIR"/2.6/vmlinuz-*-sparc32 "$inst/boot/sparc32"
zcat "$DI_DIR"/2.6/vmlinuz-*-sparc64 > "$inst/boot/sparc64"