mypy/squashfs

This commit is contained in:
Marc Beninca 2024-09-13 23:57:35 +02:00
parent 378a212786
commit 51b4f0f5f2
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -8,13 +8,11 @@ cmd.need("mksquashfs")
def mksquashfs(input_root: str, output_file: str) -> None: def mksquashfs(input_root: str, output_file: str) -> None:
"""Make a SquashFS bootable image file.""" """Make a SquashFS bootable image file."""
ps.run( ps.run(
[ "mksquashfs",
"mksquashfs", input_root,
input_root, output_file,
output_file, "-comp",
"-comp", "zstd",
"zstd", "-Xcompression-level",
"-Xcompression-level", str(18),
str(18),
]
) )