diff options
author | Daniel Baumann <daniel@debian.org> | 2010-06-24 01:31:59 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2010-06-24 01:31:59 +0200 |
commit | fdb611c18c6009e1c5b961201d941cf1051468b5 (patch) | |
tree | b5cc78a9f7dcc80145f342e4bc7fa819a75c6446 | |
parent | 663283a8e2099bd1165e36bc3084091cce694183 (diff) | |
download | vyos-live-build-fdb611c18c6009e1c5b961201d941cf1051468b5.tar.gz vyos-live-build-fdb611c18c6009e1c5b961201d941cf1051468b5.zip |
Removing distribution check for assemblink mksquashfs options in binary_rootfs, not required anymore.
-rwxr-xr-x | helpers/binary_rootfs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/helpers/binary_rootfs b/helpers/binary_rootfs index 6d6b345a1..9ed1358b2 100755 --- a/helpers/binary_rootfs +++ b/helpers/binary_rootfs @@ -364,11 +364,7 @@ case "${LH_CHROOT_FILESYSTEM}" in false) if [ -f config/binary_rootfs/excludes ] then - case "${LH_DISTRIBUTION}" in - lenny|sid) - MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -wildcards -ef config/binary_rootfs/excludes" - ;; - esac + MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -wildcards -ef config/binary_rootfs/excludes" fi mksquashfs chroot binary/${INITFS}/filesystem.squashfs ${MKSQUASHFS_OPTIONS} |