]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Install hwids in /usr/lib/systemd/boot/hwids/<EFI_ARCH>/
authorLuca Boccassi <luca.boccassi@gmail.com>
Tue, 24 Feb 2026 21:09:26 +0000 (21:09 +0000)
committerLuca Boccassi <luca.boccassi@gmail.com>
Wed, 25 Feb 2026 13:51:31 +0000 (13:51 +0000)
These are meant to ship with ukify, in the same package,
so install them when ukify is enabled. Given they are
hardware-specific, use a per-arch subdirectory to make it
easier to enable them by default in ukify.

src/boot/meson.build

index ac84fbb89f09d87da9af3d2e1db8cccc3e61a298..06c8146a9ebcbcf129c91c1c0b4e321c0a32d21c 100644 (file)
@@ -35,6 +35,9 @@ if conf.get('ENABLE_UKIFY') == 1
                            meson.current_source_dir()/'hwids/test'],
                 capture : true,
                 build_by_default : want_tests != 'false')
+        install_subdir('hwids',
+                       install_dir : libexecdir / 'boot/',
+                       exclude_directories : ['test'])
 else
         test_hwids_section_c = []
 endif