From: Daan De Meyer Date: Sat, 2 Sep 2023 16:37:34 +0000 (+0200) Subject: Stop passing tools tree to default initrd build X-Git-Tag: v16~17^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a79e006b88e3d79807d34c44b0516c4bd9033509;p=thirdparty%2Fmkosi.git Stop passing tools tree to default initrd build It's already mounted if needed so no need to pass it to the initrd build. --- diff --git a/mkosi/__init__.py b/mkosi/__init__.py index 783355e29..d52a90fc8 100644 --- a/mkosi/__init__.py +++ b/mkosi/__init__.py @@ -913,7 +913,6 @@ def build_initrd(state: MkosiState) -> Path: "--repository-key-check", str(state.config.repository_key_check), "--repositories", ",".join(state.config.repositories), "--package-manager-tree", ",".join(format_source_target(s, t) for s, t in state.config.package_manager_trees), - *(["--tools-tree", str(state.config.tools_tree)] if state.config.tools_tree else []), *(["--compress-output", str(state.config.compress_output)] if state.config.compress_output else []), "--with-network", str(state.config.with_network), "--cache-only", str(state.config.cache_only),