diff options
Diffstat (limited to 'scripts/build/lb_chroot_sources')
-rwxr-xr-x | scripts/build/lb_chroot_sources | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/scripts/build/lb_chroot_sources b/scripts/build/lb_chroot_sources index 2bb05ec60..bb63d73f1 100755 --- a/scripts/build/lb_chroot_sources +++ b/scripts/build/lb_chroot_sources @@ -84,6 +84,16 @@ EOF esac fi + if [ "${LB_LTS}" = "true" ] + then + echo "deb ${LB_MIRROR_CHROOT} ${LB_DISTRIBUTION}-lts ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + + if [ "${LB_SOURCE}" = "true" ] + then + echo "deb-src ${LB_MIRROR_CHROOT} ${LB_DISTRIBUTION}-lts ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + fi + fi + if [ "${LB_VOLATILE}" = "true" ] then case "${LB_MODE}" in @@ -538,6 +548,16 @@ EOF esac fi + if [ "${LB_LTS}" = "true" ] + then + echo "deb ${LB_MIRROR_BINARY} ${LB_DISTRIBUTION}-lts ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + + if [ "${LB_SOURCE}" = "true" ] + then + echo "deb-src ${LB_MIRROR_BINARY} ${LB_DISTRIBUTION}-lts ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + fi + fi + if [ "${LB_VOLATILE}" = "true" ] then case "${LB_MODE}" in |