From 5747f296cb490f0f95f93ca3c249d1b4999d30dc Mon Sep 17 00:00:00 2001 From: Steve McIntyre <93sam@debian.org> Date: Mon, 31 Mar 2008 13:04:42 +0000 Subject: [PATCH] Temporarily disable boot support on problematic arches --- tools/boot/lenny/boot-arm | 4 ++++ tools/boot/lenny/boot-m68k | 3 ++- tools/boot/lenny/boot-mipsel | 7 ++++++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/tools/boot/lenny/boot-arm b/tools/boot/lenny/boot-arm index 8089f38b..277bdd81 100755 --- a/tools/boot/lenny/boot-arm +++ b/tools/boot/lenny/boot-arm @@ -33,6 +33,10 @@ cd $CDDIR/.. add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J" +# Arm is currently not bootable in lenny, so bail out here +echo "Arm booting disabled, check with Sledge/fjp/tbm" +exit 0 + # Only disk 1* bootable if [ $N != 1 ] && [ $N != 1_NONUS ]; then exit 0 diff --git a/tools/boot/lenny/boot-m68k b/tools/boot/lenny/boot-m68k index 6898c699..44cde767 100755 --- a/tools/boot/lenny/boot-m68k +++ b/tools/boot/lenny/boot-m68k @@ -15,7 +15,8 @@ CDDIR=$2 INSTALLDIR=$CDDIR/install if [ "$DI_WWW_HOME" = "default" ];then - DI_WWW_HOME="http://people.debian.org/~smarenka/d-i/images-m68k/daily/" +# Temporarily disabled to stop cron jobs complaining +# DI_WWW_HOME="http://people.debian.org/~smarenka/d-i/images-m68k/daily/" if [ -n "$DI_DIR" ];then DI_DIR="$DI_DIR/~${DI_WWW_HOME#*~}" DI_WWW_HOME="" diff --git a/tools/boot/lenny/boot-mipsel b/tools/boot/lenny/boot-mipsel index ad0a9fae..eb022ff7 100755 --- a/tools/boot/lenny/boot-mipsel +++ b/tools/boot/lenny/boot-mipsel @@ -16,7 +16,8 @@ set -e N=$1 CDROOT=$2 if [ "$DI_WWW_HOME" = "default" ];then - DI_WWW_HOME="http://people.debian.org/~ths/d-i/mipsel/images/daily/decstation/cdrom/" +# Temporarily disabled to stop cron jobs complaining +# DI_WWW_HOME="http://people.debian.org/~ths/d-i/mipsel/images/daily/decstation/cdrom/" if [ -n "$DI_DIR" ];then DI_DIR="$DI_DIR/~${DI_WWW_HOME#*~}" DI_WWW_HOME="" @@ -35,6 +36,10 @@ cd $CDROOT/.. add_mkisofs_opt $CDROOT/../$N.mkisofs_opts "-J" +# Mipsel is currently not bootable in lenny, so bail out here +echo "Mipsel booting disabled, check with Sledge or fjp" +exit 0 + # Only disks 1 bootable if [ $NN != 1 ]; then exit 0