From: vlefebvre Date: Fri, 11 Jul 2025 10:17:46 +0000 (+0200) Subject: uki.conf is used by the ukify tool to create an Unified Kernel Image. It X-Git-Tag: v258-rc1~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96ba43388f253cf94791bc46e1424359f836f2e3;p=thirdparty%2Fsystemd.git uki.conf is used by the ukify tool to create an Unified Kernel Image. It would make sense to install it only if ukify is wanted. --- diff --git a/src/kernel-install/meson.build b/src/kernel-install/meson.build index 1724a710555..cd2a611c66e 100644 --- a/src/kernel-install/meson.build +++ b/src/kernel-install/meson.build @@ -40,9 +40,11 @@ if want_kernel_install install_data('install.conf', install_dir : kerneldir) - - install_data('uki.conf', - install_dir : kerneldir) + + if want_ukify + install_data('uki.conf', + install_dir : kerneldir) + endif if install_sysconfdir install_emptydir(sysconfdir / 'kernel/install.d')