* Temporarily disable boot support for arm CDs - the netwinder images are not

being produced at the moment.
This commit is contained in:
Steve McIntyre 2008-03-05 00:14:25 +00:00
parent 09ed2f2196
commit 5498cc1e5b
2 changed files with 17 additions and 14 deletions

2
debian/changelog vendored
View File

@ -89,6 +89,8 @@ debian-cd (3.0.4) UNRELEASED; urgency=low
[ Steve McIntyre ]
* Fix a bug in start_new_disc - cope with MAXCDS not being set.
* Temporarily disable boot support for arm CDs - the netwinder images are not
being produced at the moment.
-- Otavio Salvador <otavio@ossystems.com.br> Thu, 14 Feb 2008 12:27:58 -0200

View File

@ -40,19 +40,20 @@ fi
cd $INSTALLDIR
for subarch in netwinder; do
if [ ! "$DI_WWW_HOME" ];then
if [ ! "$DI_DIR" ];then
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images"
fi
DI_DIR2="$DI_DIR/$subarch/cdrom"
else
DI_DIR2="di_stuff"
wget -r -nd --no-parent --level=1 -P "$DI_DIR2" "$DI_WWW_HOME/$subarch/cdrom/"
rm -f "$DI_DIR2"/index*
fi
cp -a "$DI_DIR2" "$subarch"
rm -rf di_stuff
done
# Netwinder currently disabled - fails to boot at the moment, as it's too big. SAM 2008/03/05
#for subarch in netwinder; do
# if [ ! "$DI_WWW_HOME" ];then
# if [ ! "$DI_DIR" ];then
# DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images"
# fi
# DI_DIR2="$DI_DIR/$subarch/cdrom"
# else
# DI_DIR2="di_stuff"
# wget -r -nd --no-parent --level=1 -P "$DI_DIR2" "$DI_WWW_HOME/$subarch/cdrom/"
# rm -f "$DI_DIR2"/index*
# fi
# cp -a "$DI_DIR2" "$subarch"
# rm -rf di_stuff
#done
exit 0