Fix relative d-i path for kernel images and initrd in boot-alpha
This commit is contained in:
parent
eb68c7621b
commit
4c8b55f6fe
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue