When doing offline verity signing, split partitions and compression are
enabled, we attempt to compress a non-existing partition (verity-sig)
which will be created only later.
Do not attempt to compress partitions that are marked to be skipped by
repart.
if split:
for p in partitions:
- if p.split_path:
+ if p.split_path and p.type not in skip:
maybe_compress(context, context.config.compress_output, p.split_path)
if ArtifactOutput.roothash in context.config.split_artifacts and (