]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
uki.conf is used by the ukify tool to create an Unified Kernel Image. It
authorvlefebvre <valentin.lefebvre@suse.com>
Fri, 11 Jul 2025 10:17:46 +0000 (12:17 +0200)
committerLuca Boccassi <luca.boccassi@gmail.com>
Mon, 4 Aug 2025 14:22:28 +0000 (15:22 +0100)
would make sense to install it only if ukify is wanted.

(cherry picked from commit 96ba43388f253cf94791bc46e1424359f836f2e3)

src/kernel-install/meson.build

index edd0b7d360d14b6b87bcbc69427ce6caaf7adaf4..2a7710fe6c95ed0b1ced255b57ff522220f57282 100644 (file)
@@ -42,9 +42,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')