This is expected by systemd when used with RootImage= and friends
- The preferred names for mkosi configuration files and directories are now mkosi.conf
and mkosi.conf.d/ respectively. The old names (mkosi.default and mkosi.default.d) have
been removed from the docs but are still supported for backwards compatibility.
+- `plain_squashfs` type images will now also be named with a `.raw` suffix.
## v13
output = f"{prefix}.tar.xz"
elif args.output_format == OutputFormat.cpio:
output = f"{prefix}.cpio" + (f".{args.compress}" if args.compress else "")
+ elif args.output_format.is_squashfs():
+ output = f"{prefix}.raw"
else:
output = prefix
args.output = Path(output)