/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to initramfs-unpack

  • Committer: teddy at recompile
  • Date: 2019-12-04 23:52:20 UTC
  • Revision ID: teddy@recompile.se-20191204235220-yn88brp0scmqwy2t
Remove non-project-specific pattern from .bzrignore

Only project-specific patterns should be in the .bzrignore file.
Other generic patterns should be in the ~/.config/breezy/ignore and
~/.bazaar/ignore files.

* .bzrignore (.tramp_history): Remove.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
        elif { $catimg 2>/dev/null | lzop --test >/dev/null 2>&1;
66
66
               [ ${PIPESTATUS[-1]} -eq 0 ]; }; then
67
67
            decomp="lzop --stdout --decompress"
68
 
        elif { $catimg 2>/dev/null | zstd --test >/dev/null 2>&1;
69
 
               [ ${PIPESTATUS[-1]} -eq 0 ]; }; then
70
 
            decomp="zstdcat --stdout --decompress"
71
68
        else
72
69
            skip=$((${skip}+1))
73
70
            echo "Could not determine compression of ${imgfile}; trying to skip ${skip} bytes" >&2