From 68aef1be1587f597fddc36a5beb4eeecca7ddd55 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Tue, 24 Feb 2026 21:09:26 +0000 Subject: [PATCH] Install hwids in /usr/lib/systemd/boot/hwids// 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/boot/meson.build b/src/boot/meson.build index ac84fbb89f0..06c8146a9eb 100644 --- a/src/boot/meson.build +++ b/src/boot/meson.build @@ -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