Add support for unreleased packages from Debian Ports
This commit is contained in:
parent
2b9b429245
commit
eb68c7621b
|
@ -17,6 +17,7 @@ debian-cd (3.1.21) UNRELEASED; urgency=medium
|
|||
* Remove special handling for palo, silo and yaboot in which_deb.
|
||||
* 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.
|
||||
|
||||
-- Steve McIntyre <93sam@debian.org> Mon, 19 Jun 2017 13:59:36 +0100
|
||||
|
||||
|
|
|
@ -111,6 +111,10 @@ if [ ! -e "$APTTMP/$THIS_PKGSET/apt/sources.list" ]; then
|
|||
echo "$ADEB file:$MIRROR $DI_CODENAME main/debian-installer" \
|
||||
>> $APTTMP/$THIS_PKGSET/apt/sources.list
|
||||
fi
|
||||
if [ -n "$UNRELEASED" ]; then
|
||||
echo "$ADEB file:$MIRROR unreleased main/debian-installer" \
|
||||
>> $APTTMP/$THIS_PKGSET/apt/sources.list
|
||||
fi
|
||||
if [ -n "$LOCAL" ] && [ -e "${LOCALDEBS:-$MIRROR}/dists/$DI_CODENAME/local/debian-installer" ]; then
|
||||
echo "$ADEB file:${LOCALDEBS:-$MIRROR} $DI_CODENAME local/debian-installer" \
|
||||
>> $APTTMP/$THIS_PKGSET/apt/sources.list
|
||||
|
|
Loading…
Reference in New Issue