Mipsel boot images haven't actually moved yet in etch. Cope with this
- fall back to the old location if the new one isn't there.
This commit is contained in:
parent
e365484e8b
commit
d056a7b6e5
|
@ -186,6 +186,10 @@ debian-cd (2.2.24) UNRELEASED; urgency=low
|
|||
* Added icon to powerpc/chrp bootinfo.txt, which will allow booting on IBM
|
||||
RS6K and pSeries. Closes: #352672
|
||||
|
||||
[ Steve McIntyre ]
|
||||
* Mipsel boot images haven't actually moved yet in etch. Cope with this
|
||||
- fall back to the old location if the new one isn't there.
|
||||
|
||||
-- Frans Pop <fjp@debian.org> Wed, 15 Feb 2006 23:18:19 +0100
|
||||
|
||||
debian-cd (2.2.23) unstable; urgency=low
|
||||
|
|
|
@ -52,6 +52,9 @@ install -m 644 -D "$DELOROOT"/boot/delo.2nd "$CDROOT"/boot/delo.2nd
|
|||
if [ ! "$DI_WWW_HOME" ];then
|
||||
if [ ! "$DI_DIR" ];then
|
||||
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/decstation/cdrom/"
|
||||
if [ ! -e $DI_DIR ] ; then
|
||||
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/cdrom/"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
DI_DIR="."
|
||||
|
|
Loading…
Reference in New Issue