Temporarily disable boot support on problematic arches

This commit is contained in:
Steve McIntyre 2008-03-31 13:04:42 +00:00
parent f9ca2237ff
commit 5747f296cb
3 changed files with 12 additions and 2 deletions

View File

@ -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

View File

@ -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=""

View File

@ -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