15 lines
264 B
Python
15 lines
264 B
Python
|
from ... import cmd
|
||
|
from ... import ps
|
||
|
|
||
|
cmd.need('mksquashfs')
|
||
|
|
||
|
|
||
|
def mksquashfs(input_root: str, output_file: str):
|
||
|
ps.run([
|
||
|
'mksquashfs',
|
||
|
input_root,
|
||
|
output_file,
|
||
|
'-comp', 'zstd',
|
||
|
'-Xcompression-level', str(18),
|
||
|
])
|