diff options
author | Daniel Baumann <daniel@debian.org> | 2012-07-18 22:44:05 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-07-18 22:44:05 +0200 |
commit | 14a43495cabfe99a05d601353e34b5a5eb0317ed (patch) | |
tree | 1af88913970b34b6756c8dc21430723782197d04 /scripts/build/lb_binary_rootfs | |
parent | 9a5a53f185ffede49e88cbdaf866adff6ffbb185 (diff) | |
download | vyos-live-build-14a43495cabfe99a05d601353e34b5a5eb0317ed.tar.gz vyos-live-build-14a43495cabfe99a05d601353e34b5a5eb0317ed.zip |
Correcting some distribution specific checks to make them derivatives compliant.
Diffstat (limited to 'scripts/build/lb_binary_rootfs')
-rwxr-xr-x | scripts/build/lb_binary_rootfs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/build/lb_binary_rootfs b/scripts/build/lb_binary_rootfs index e4257cee9..99a7695b3 100755 --- a/scripts/build/lb_binary_rootfs +++ b/scripts/build/lb_binary_rootfs @@ -357,9 +357,13 @@ case "${LB_CHROOT_FILESYSTEM}" in esac fi - case "${LB_DISTRIBUTION}" in - wheezy|sid) - # FIXME: artax-backports once d-i has catched up + case "${LB_PARENT_DISTRIBUTION}" in + squeeze) + + ;; + + *) + # FIXME: artax-backports too, once d-i has catched up MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -comp xz" ;; esac |