update the URL for downloading i386 d-i dailies

This commit is contained in:
Steve McIntyre 2011-05-10 07:14:27 +00:00
parent 02f58b3278
commit 5e429358cd
2 changed files with 6 additions and 1 deletions

1
debian/changelog vendored
View File

@ -18,6 +18,7 @@ debian-cd (3.1.6) UNRELEASED; urgency=low
* Add linux-image-2.6-686-bigmem to tasks/<release>/interesting-fromcd23
to try and put that on i386 image sets before linux-image-amd64.
Closes: #622622
* update the URL for downloading i386 d-i dailies.
[ Aurelien Jarno ]
* Add support for hurd-i386. Closes: #619211

View File

@ -16,8 +16,12 @@ N=$1
CDDIR=$2
BOOTDIR=
if [ "$DI_WWW_HOME" = "default" ];then
# Tempting as it might be to merge these two definitions using $ARCH,
# do *not* do that - these defs are parsed out by other scripts that
# won't cope with that
if [ "$ARCH" = i386 ]; then
DI_WWW_HOME="http://people.debian.org/~joeyh/d-i/images/daily"
DI_WWW_HOME="http://d-i.debian.org/daily-images/i386/daily"
else
DI_WWW_HOME="http://d-i.debian.org/daily-images/amd64/daily"
fi