"--compress-level", str(config.compress_level),
"--with-network", str(config.with_network),
"--cache-only", str(config.cacheonly),
- *(["--output-dir", str(output_dir)] if output_dir else []),
- *(["--workspace-dir", str(config.workspace_dir)] if config.workspace_dir else []),
- *(["--cache-dir", str(config.cache_dir)] if config.cache_dir else []),
- *(["--package-cache-dir", str(config.package_cache_dir)] if config.package_cache_dir else []),
+ *(["--output-directory", str(output_dir)] if output_dir else []),
+ *(["--workspace-directory", str(config.workspace_dir)] if config.workspace_dir else []),
+ *(["--cache-directory", str(config.cache_dir)] if config.cache_dir else []),
+ *(["--package-cache-directory", str(config.package_cache_dir)] if config.package_cache_dir else []),
*(["--local-mirror", str(config.local_mirror)] if config.local_mirror else []),
"--incremental", str(config.incremental),
*(f"--package={package}" for package in config.initrd_packages),
"--repository-key-check", str(config.repository_key_check),
"--repository-key-fetch", str(config.repository_key_fetch),
"--cache-only", str(config.cacheonly),
- *(["--output-dir", str(config.output_dir)] if config.output_dir else []),
- *(["--workspace-dir", str(config.workspace_dir)] if config.workspace_dir else []),
- *(["--cache-dir", str(config.cache_dir)] if config.cache_dir else []),
- *(["--package-cache-dir", str(config.package_cache_dir)] if config.package_cache_dir else []),
+ *(["--output-directory", str(config.output_dir)] if config.output_dir else []),
+ *(["--workspace-directory", str(config.workspace_dir)] if config.workspace_dir else []),
+ *(["--cache-directory", str(config.cache_dir)] if config.cache_dir else []),
+ *(["--package-cache-directory", str(config.package_cache_dir)] if config.package_cache_dir else []),
"--incremental", str(config.incremental),
*([f"--package={package}" for package in config.tools_tree_packages]),
*([f"--package-directory={directory}" for directory in config.tools_tree_package_directories]),
specifier="o",
parse=config_make_filename_parser(
"Output= or --output= requires a filename with no path components. "
- "Use OutputDirectory= or --output-dir= to configure the output directory."
+ "Use OutputDirectory= or --output-directory= to configure the output directory."
),
default_factory=config_default_output,
default_factory_depends=("image_id", "image_version"),
ConfigSetting(
dest="output_dir",
short="-O",
+ long="--output-directory",
+ compat_longs=("--output-dir",),
metavar="DIR",
name="OutputDirectory",
section="Output",
),
ConfigSetting(
dest="repart_dirs",
- long="--repart-dir",
+ long="--repart-directory",
+ compat_longs=("--repart-dir",),
metavar="PATH",
name="RepartDirectories",
section="Output",
),
ConfigSetting(
dest="workspace_dir",
+ long="--workspace-directory",
+ compat_longs=("--workspace-dir",),
metavar="DIR",
name="WorkspaceDirectory",
section="Build",
),
ConfigSetting(
dest="cache_dir",
+ long="--cache-directory",
+ compat_longs=("--cache-dir",),
metavar="PATH",
name="CacheDirectory",
section="Build",
),
ConfigSetting(
dest="package_cache_dir",
+ long="--package-cache-directory",
+ compat_longs=("--package-cache-dir",),
metavar="PATH",
name="PackageCacheDirectory",
section="Build",
),
ConfigSetting(
dest="build_dir",
+ long="--build-directory",
+ compat_longs=("--build-dir",),
metavar="PATH",
name="BuildDirectory",
section="Build",
),
ConfigSetting(
dest="sysupdate_dir",
- long="--sysupdate-dir",
+ long="--sysupdate-directory",
+ compat_longs=("--sysupdate-dir",),
metavar="PATH",
name="SysupdateDirectory",
section="Host",
"--directory", "",
"--format", args.format,
"--output", args.output,
- "--output-dir", staging_dir,
+ "--output-directory", staging_dir,
"--extra-tree", f"/usr/lib/modules/{args.kernel_version}:/usr/lib/modules/{args.kernel_version}",
"--extra-tree=/usr/lib/firmware:/usr/lib/firmware",
"--remove-files=/usr/lib/firmware/*-ucode",
: Configure the compression level to use. Takes an integer. The possible
values depend on the compression being used.
-`OutputDirectory=`, `--output-dir=`, `-O`
+`OutputDirectory=`, `--output-directory=`, `-O`
: Path to a directory where to place all generated artifacts. If this is
not specified and the directory `mkosi.output/` exists in the local
directory, it is automatically used for this purpose.
root or `/usr` partition along with its Verity partition and unified
kernel. By default `uki`, `kernel` and `initrd` are split out.
-`RepartDirectories=`, `--repart-dir=`
+`RepartDirectories=`, `--repart-directory=`
: Paths to directories containing systemd-repart partition definition
files that are used when mkosi invokes systemd-repart when building a
disk image. If `mkosi.repart/` exists in the local directory, it will
for `/etc/dnf/dnf.conf` in the sandbox trees if `dnf` is used to
install packages.
-`WorkspaceDirectory=`, `--workspace-dir=`
+`WorkspaceDirectory=`, `--workspace-directory=`
: Path to a directory where to store data required temporarily while
building the image. This directory should have enough space to store
the full OS image, though in most modes the actually used disk space
should an `mkosi` invocation be aborted abnormally (for example, due
to reboot/power failure).
-`CacheDirectory=`, `--cache-dir=`
+`CacheDirectory=`, `--cache-directory=`
: Takes a path to a directory to use as the incremental cache directory
for the incremental images produced when the `Incremental=` option is
enabled. If this option is not used, but a `mkosi.cache/` directory is
the distribution package manager used. If unset, a suitable directory
in the user's home directory or system is used.
-`BuildDirectory=`, `--build-dir=`
+`BuildDirectory=`, `--build-directory=`
: Takes a path to a directory to use as the build directory for build
systems that support out-of-tree builds (such as Meson). The directory
used this way is shared between repeated builds, and allows the build
of file if your workload produces more than `4G` worth of journal
data.
-`SysupdateDirectory=`, `--sysupdate-dir=`
+`SysupdateDirectory=`, `--sysupdate-directory=`
: Path to a directory containing systemd-sysupdate transfer definition
files that are used by `mkosi sysupdate`. If `mkosi.sysupdate/`
exists in the local directory, it will be used for this purpose as
re-building of images. Specifically:
1. The package cache of the distribution package manager may be cached
- between builds. This is configured with the `--cache-dir=` option or
- the `mkosi.cache/` directory. This form of caching relies on the
+ between builds. This is configured with the `--cache-directory=` option
+ or the `mkosi.cache/` directory. This form of caching relies on the
distribution's package manager, and caches distribution packages
(RPM, DEB, …) after they are downloaded, but before they are
unpacked.
*(f"--kernel-command-line={i}" for i in kcl),
"--force",
"--incremental",
- "--output-dir", self.output_dir,
+ "--output-directory", self.output_dir,
*(["--debug-shell"] if self.config.debug_shell else []),
*options,
] # fmt: skip
)
with Image(config) as image:
- image.build(["--repart-dir", repartd, "--passphrase", passphrase, "--format=disk"])
+ image.build(["--repart-directory", repartd, "--passphrase", passphrase, "--format=disk"])
image.qemu(["--credential=cryptsetup.passphrase=mkosi"])