Fix relative d-i path for kernel images and initrd in boot-alpha

This commit is contained in:
John Paul Adrian Glaubitz 2017-09-08 10:56:14 +02:00
parent eb68c7621b
commit 4c8b55f6fe
4 changed files with 4 additions and 3 deletions

1
debian/changelog vendored
View File

@ -18,6 +18,7 @@ debian-cd (3.1.21) UNRELEASED; urgency=medium
* Fix relative d-i path for kernel images and initrd in boot-hppa.
* Fix relative d-i path for kernel images and initrd in boot-sparc64.
* Add support for unreleased debian-installer packages from Debian Ports.
* Fix relative d-i path for kernel images and initrd in boot-alpha.
-- Steve McIntyre <93sam@debian.org> Mon, 19 Jun 2017 13:59:36 +0100

View File

@ -74,7 +74,7 @@ for image in initrd.gz vmlinuz; do
if [ ! "$DI_DIR" ];then
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/cdrom"
fi
ab_file=`ls "$DI_DIR"/$image* | tail -1`
ab_file=`ls "$DI_DIR"/cdrom/$image* | tail -1`
cp "$ab_file" .
else
$WGET "$DI_WWW_HOME/$image"

View File

@ -67,7 +67,7 @@ for image in initrd.gz vmlinuz; do
if [ ! "$DI_DIR" ];then
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/cdrom"
fi
ab_file=`ls "$DI_DIR"/$image* | tail -1`
ab_file=`ls "$DI_DIR"/cdrom/$image* | tail -1`
cp "$ab_file" .
else
$WGET "$DI_WWW_HOME/$image"

View File

@ -74,7 +74,7 @@ for image in initrd.gz vmlinuz; do
if [ ! "$DI_DIR" ];then
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/cdrom"
fi
ab_file=`ls "$DI_DIR"/$image* | tail -1`
ab_file=`ls "$DI_DIR"/cdrom/$image* | tail -1`
cp "$ab_file" .
else
$WGET "$DI_WWW_HOME/$image"