Package: base-installer
Version: 1.171
Severity: wishlist
Tags: patch
X-Debbugs-CC: "Helge Deller" <[email protected]>, "John Paul Adrian Glaubitz"
<[email protected]>, "James Clarke" <[email protected]>
Dear Maintainer,
bootstrap-base installs a kernel and some extra packages as its last
steps ('install_kernel' and 'install_extra').
The patch below enables the use of the 'unreleased' distribution on
non released architectures during these steps. (A file 'port_architecture'
should be created previously by another package, e.g.
choose-mirror-bin. See #879130)
Regards,
JH Chatenet
--- a/library.sh
+++ b/library.sh
@@ -873,6 +873,11 @@
APTSOURCE="$PROTOCOL://$MIRROR$DIRECTORY"
echo "deb $APTSOURCE $DISTRIBUTION $COMPONENTS" > $APT_SOURCES
+
+ if [ -e /usr/lib/choose-mirror/port_architecture ]; then
+ # Port architectures use both suites 'unstable' and
'unreleased'
+ echo "deb $APTSOURCE unreleased $COMPONENTS" >>
$APT_SOURCES
+ fi
fi
}