diff options
author | Daniel Baumann <daniel@debian.org> | 2011-01-02 00:36:20 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:20:40 +0100 |
commit | 21815cb707e78ed1899c74c09503cc5b696383e6 (patch) | |
tree | 9d2bdd949f2e5e08556b6570316d99cb15910550 /scripts/build/lb_config | |
parent | 8c19e13179e0bb298adb28d84fb778a717be1fad (diff) | |
download | vyos-live-build-21815cb707e78ed1899c74c09503cc5b696383e6.tar.gz vyos-live-build-21815cb707e78ed1899c74c09503cc5b696383e6.zip |
Generalizing compression handling and adding support for lzip tarballs.
Diffstat (limited to 'scripts/build/lb_config')
-rwxr-xr-x | scripts/build/lb_config | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/scripts/build/lb_config b/scripts/build/lb_config index ffddc8039..e9ebd9af6 100755 --- a/scripts/build/lb_config +++ b/scripts/build/lb_config @@ -53,6 +53,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ \t [--cache-packages true|false]\n\ \t [--cache-stages STAGE|\"STAGES\"]\n\ \t [--checksums md5|sha1|sha256|none]\n\ +\t [--compression bzip2|gzip|lzip|none]\n\ \t [--build-with-chroot true|false]\n\ \t [--chroot-filesystem ext2|ext3|squashfs|plain|jffs2]\n\ \t [--clean\n\ @@ -109,7 +110,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\ \t [--net-cow-mountoptions OPTIONS]\n\ \t [--net-cow-path PATH]\n\ \t [--net-cow-server IP|HOSTNAME]\n\ -\t [--net-tarball bzip2|gzip|tar|none]\n\ +\t [--net-tarball true|false]\n\ \t [-p|--package-lists LIST|\"LISTS\"]\n\ \t [--packages PACKAGE|\"PACKAGES\"]\n\ \t [--quiet]\n\ @@ -144,7 +145,7 @@ Local_arguments () mirror-binary-security:,mirror-binary-volatile:,mirror-binary-backports:,mirror-debian-installer:,archive-areas:,chroot-filesystem:,exposed-root:,virtual-root-size:, gzip-options:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:, packages:,package-lists:,tasks:,security:,volatile:,backports:,sysvinit:,binary-filesystem:,binary-images:, - apt-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,build-with-chroot:, + apt-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,compression:,build-with-chroot:, debian-installer:,debian-installer-distribution:,debian-installer-preseedfile:,debian-installer-gui:, encryption:,grub-splash:,hostname:,isohybrid-options:,iso-application:,iso-preparer:,iso-publisher:, iso-volume:,jffs2-eraseblock:,memtest:,net-root-filesystem:,net-root-mountoptions:, @@ -555,6 +556,11 @@ Local_arguments () shift 2 ;; + --compression) + LB_COMPRESSION="${2}" + shift 2 + ;; + --build-with-chroot) LB_BUILD_WITH_CHROOT="${2}" shift 2 @@ -1143,6 +1149,10 @@ LB_BOOTLOADER="${LB_BOOTLOADER}" # (Default: ${LB_CHECKSUMS}) LB_CHECKSUMS="${LB_CHECKSUMS}" +# \$LB_COMPRESSION: set compression +# (Default: ${LB_COMPRESSION}) +LB_COMPRESSION="${LB_COMPRESSION}" + # \${LB_BUILD_WITH_CHROOT: control if we build binary images chrooted # (Default: ${LB_BUILD_WITH_CHROOT}) # DO NEVER, *NEVER*, *N*E*V*E*R* SET THIS OPTION to false. |