diff options
author | Daniel Baumann <daniel@debian.org> | 2010-03-06 17:23:59 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:04 +0100 |
commit | 17c5ed64b269b2bff7f30448699266c69885a3d2 (patch) | |
tree | f518a6cb4d6990d299957906361c04b4773b4247 /helpers | |
parent | 54518852c8c69eafe56aa68d13c8dfdfc8fc30ea (diff) | |
download | vyos-live-build-17c5ed64b269b2bff7f30448699266c69885a3d2.tar.gz vyos-live-build-17c5ed64b269b2bff7f30448699266c69885a3d2.zip |
Adding support for debian-volatile archive.
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/chroot_sources | 26 | ||||
-rwxr-xr-x | helpers/config | 36 |
2 files changed, 59 insertions, 3 deletions
diff --git a/helpers/chroot_sources b/helpers/chroot_sources index 16adf89d1..cb046d9ea 100755 --- a/helpers/chroot_sources +++ b/helpers/chroot_sources @@ -75,6 +75,19 @@ case "${1}" in esac fi + if [ "${LH_VOLATILE}" = "true" ] + then + if [ "${LH_DISTRIBUTION}" != "sid" ] && [ "${LH_DISTRIBUTION}" != "unstable" ] + then + echo "deb ${LH_MIRROR_CHROOT_VOLATILE} ${LH_DISTRIBUTION}/volatile ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + + if [ "${LH_SOURCE}" = "true" ] + then + echo "deb-src ${LH_MIRROR_CHROOT_VOLATILE} ${LH_DISTRIBUTION}/volatile ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + fi + fi + fi + # Check local sources.list if Find_files config/chroot_sources/*.chroot then @@ -401,6 +414,19 @@ case "${1}" in esac fi + if [ "${LH_VOLATILE}" = "true" ] + then + if [ "${LH_DISTRIBUTION}" != "sid" ] && [ "${LH_DISTRIBUTION}" != "unstable" ] + then + echo "deb ${LH_MIRROR_BINARY_VOLATILE} ${LH_DISTRIBUTION}/volatile ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + + if [ "${LH_SOURCE}" = "true" ] + then + echo "deb-src ${LH_MIRROR_BINARY_VOLATILE} ${LH_DISTRIBUTION}/volatile ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list + fi + fi + fi + # Check local sources.list if Find_files config/chroot_sources/*.binary then diff --git a/helpers/config b/helpers/config index 6d21a0eaf..9bb92013a 100755 --- a/helpers/config +++ b/helpers/config @@ -91,8 +91,10 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ \t [-m|--mirror-bootstrap URL]\n\ \t [--mirror-chroot URL]\n\ \t [--mirror-chroot-security URL]\n\ +\t [--mirror-chroot-volatile URL]\n\ \t [--mirror-binary URL]\n\ \t [--mirror-binary-security URL]\n\ +\t [--mirror-binary-volatile URL]\n\ \t [--mirror-debian-installer URL]\n\ \t [--mode debian|emdebian]\n\ \t [--net-root-filesystem nfs|cfs]\n\ @@ -122,6 +124,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ \t [--tasks TASK]\n\ \t [--templates PATH]\n\ \t [--virtual-root-size MB]\n\ +\t [--volatile true|false]\n\ \t [--exposed-root true|false]\n\ \t [--username NAME]\n\ \t [--verbose]\n\ @@ -134,10 +137,10 @@ Local_arguments () cache-stages:,debconf-frontend:,debconf-nowarnings:,debconf-priority:,dump, initramfs:,fdisk:,losetup:,mode:,root-command:,use-fakeroot:,tasksel:,includes:, templates:,architecture:,bootstrap-config:,bootstrap-flavour:,bootstrap-keyring:,clean, - distribution:,mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-binary:, - mirror-binary-security:,mirror-debian-installer:,archive-areas:,chroot-filesystem:,exposed-root:,virtual-root-size:, + distribution:,mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-chroot-volatile:,mirror-binary:, + mirror-binary-security:,mirror-binary-volatile:,mirror-debian-installer:,archive-areas:,chroot-filesystem:,exposed-root:,virtual-root-size:, gzip-options:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:, - packages:,packages-lists:,tasks:,security:,symlinks:,sysvinit:,binary-filesystem:,binary-images:, + packages:,packages-lists:,tasks:,security:,volatile:,symlinks:,sysvinit:,binary-filesystem:,binary-images:, binary-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,chroot-build:, debian-installer:,debian-installer-distribution:,debian-installer-preseedfile:,debian-installer-gui:, encryption:,grub-splash:,hostname:,iso-application:,iso-preparer:,iso-publisher:, @@ -406,6 +409,11 @@ Local_arguments () shift 2 ;; + --mirror-chroot-volatile) + LH_MIRROR_CHROOT_VOLATILE="${2}" + shift 2 + ;; + --mirror-binary) LH_MIRROR_BINARY="${2}" shift 2 @@ -416,6 +424,11 @@ Local_arguments () shift 2 ;; + --mirror-binary-volatile) + LH_MIRROR_BINARY_VOLATILE="${2}" + shift 2 + ;; + --mirror-debian-installer) LH_MIRROR_DEBIAN_INSTALLER="${2}" shift 2 @@ -497,6 +510,11 @@ Local_arguments () shift 2 ;; + --volatile) + LH_VOLATILE="${2}" + shift 2 + ;; + --symlinks) LH_SYMLINKS="${2}" shift 2 @@ -976,6 +994,10 @@ LH_MIRROR_CHROOT="${LH_MIRROR_CHROOT}" # (Default: ${LH_MIRROR_CHROOT_SECURITY}) LH_MIRROR_CHROOT_SECURITY="${LH_MIRROR_CHROOT_SECURITY}" +# \$LH_MIRROR_CHROOT_VOLATILE: set volatile mirror to fetch packages from +# (Default: ${LH_MIRROR_CHROOT_VOLATILE}) +LH_MIRROR_CHROOT_VOLATILE="${LH_MIRROR_CHROOT_VOLATILE}" + # \$LH_MIRROR_BINARY: set mirror which ends up in the image # (Default: ${LH_MIRROR_BINARY}) LH_MIRROR_BINARY="${LH_MIRROR_BINARY}" @@ -984,6 +1006,10 @@ LH_MIRROR_BINARY="${LH_MIRROR_BINARY}" # (Default: ${LH_MIRROR_BINARY_SECURITY}) LH_MIRROR_BINARY_SECURITY="${LH_MIRROR_BINARY_SECURITY}" +# \$LH_MIRROR_BINARY_VOLATILE: set volatile mirror which ends up in the image +# (Default: ${LH_MIRROR_BINARY_VOLATILE}) +LH_MIRROR_BINARY_VOLATILE="${LH_MIRROR_BINARY_VOLATILE}" + # \$LH_MIRROR_DEBIAN_INSTALLER: set debian-installer mirror # (Default: ${LH_MIRROR_BOOTSTRAP}) LH_MIRROR_DEBIAN_INSTALLER="${LH_MIRROR_DEBIAN_INSTALLER}" @@ -1062,6 +1088,10 @@ LH_TASKS="${LH_TASKS}" # (Default: ${LH_SECURITY}) LH_SECURITY="${LH_SECURITY}" +# \$LH_VOLATILE: enable volatile updates +# (Default: ${LH_VOLATILE}) +LH_VOLATILE="${LH_VOLATILE}" + # \$LH_SYMLINKS: enable symlink convertion # (Default: ${LH_SYMLINKS}) LH_SYMLINKS="${LH_SYMLINKS}" |