This commit is contained in:
Marc Beninca 2024-02-16 22:11:24 +01:00
parent 909181ce6c
commit e47af4f7d6

View file

@ -1,28 +1,10 @@
#! /usr/bin/env python3
import subprocess
import sys
def bootstrap():
pass
def squash(input_root):
subprocess.call([
'mksquashfs',
input_root,
?,
'-comp', 'zstd',
'-Xcompression-level', str(18),
])
def main():
_, output_root = sys.argv
bootstrap()
squash()
print('ok')
if __name__ == '__main__':