* Mips has dropped r5k-ip22 kernels and gained r5k-ip32. And r5k-ip32

doesn't have CD boot support yet, so don't attempt to use the cdrom
    boot image.
This commit is contained in:
Steve McIntyre 2006-07-28 22:35:14 +00:00
parent c181877ebb
commit ed1abc0ee4
2 changed files with 10 additions and 5 deletions

6
debian/changelog vendored
View File

@ -100,8 +100,10 @@ debian-cd (2.2.25) UNRELEASED; urgency=low
* Update task.list to include all the new language tasks. * Update task.list to include all the new language tasks.
* Update task-full-etch. * Update task-full-etch.
[ Frans Pop ] [ Steve McIntyre ]
* Mips has dropped r5k-ip22 kernels and gained r5k-ip32. * Mips has dropped r5k-ip22 kernels and gained r5k-ip32. And r5k-ip32
doesn't have CD boot support yet, so don't attempt to use the cdrom
boot image.
-- Frans Pop <fjp@debian.org> Fri, 28 Jul 2006 23:17:44 +0200 -- Frans Pop <fjp@debian.org> Fri, 28 Jul 2006 23:17:44 +0200

View File

@ -38,14 +38,17 @@ if [ ! "$DI_WWW_HOME" ];then
else else
DI_DIR="di_stuff" DI_DIR="di_stuff"
wget -P "$DI_DIR/r4k-ip22" "$DI_WWW_HOME/r4k-ip22/cdrom-boot.img" wget -P "$DI_DIR/r4k-ip22" "$DI_WWW_HOME/r4k-ip22/cdrom-boot.img"
wget -P "$DI_DIR/r5k-ip32" "$DI_WWW_HOME/r5k-ip32/cdrom-boot.img" # r5k-ip32 has no cdrom boot image yet
# wget -P "$DI_DIR/r5k-ip32" "$DI_WWW_HOME/r5k-ip32/cdrom-boot.img"
fi fi
install -m 644 -D "$DI_DIR"/r4k-ip22/cdrom-boot.img "$CDROOT"/install/r4k-ip22-boot.img install -m 644 -D "$DI_DIR"/r4k-ip22/cdrom-boot.img "$CDROOT"/install/r4k-ip22-boot.img
install -m 644 -D "$DI_DIR"/r5k-ip32/cdrom-boot.img "$CDROOT"/install/r5k-ip32-boot.img #r5k-ip32 has no cdrom boot image yet
#install -m 644 -D "$DI_DIR"/r5k-ip32/cdrom-boot.img "$CDROOT"/install/r5k-ip32-boot.img
install_languages $CDROOT install_languages $CDROOT
echo " -mips-boot install/r4k-ip22-boot.img" >> $1.mkisofs_opts echo " -mips-boot install/r4k-ip22-boot.img" >> $1.mkisofs_opts
echo " -mips-boot install/r5k-ip32-boot.img" >> $1.mkisofs_opts #r5k-ip32 has no cdrom boot image yet
#echo " -mips-boot install/r5k-ip32-boot.img" >> $1.mkisofs_opts
exit 0 exit 0