diff --git a/debian/changelog b/debian/changelog index f8b38762..c6dfafdd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 14 Feb 2008 12:27:58 -0200 diff --git a/tools/boot/lenny/boot-arm b/tools/boot/lenny/boot-arm index fc9c1c4d..8089f38b 100755 --- a/tools/boot/lenny/boot-arm +++ b/tools/boot/lenny/boot-arm @@ -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