From: Clayton Craft Date: Wed, 22 Apr 2026 18:00:04 +0000 (-0700) Subject: ukify: fix default path for hwids X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9149c7595305a7c4d105d5d33ba25733af4302eb;p=thirdparty%2Fsystemd.git ukify: fix default path for hwids The documentation and commit that added this seem to suggest this should be under /usr/lib/systemd fixes 117ec9db7e71357837190833d7731bc61ae54ecc --- diff --git a/src/ukify/ukify.py b/src/ukify/ukify.py index 6f492bc9ba0..03d475e5e76 100755 --- a/src/ukify/ukify.py +++ b/src/ukify/ukify.py @@ -1401,7 +1401,7 @@ def make_uki(opts: UkifyConfig) -> None: if opts.hwids is not None: hwids = parse_hwid_dir(Path(opts.hwids)) else: - hwids_dir = Path(f'/tmp/s/usr/lib/systemd/boot/hwids/{opts.efi_arch}') + hwids_dir = Path(f'/usr/lib/systemd/boot/hwids/{opts.efi_arch}') if hwids_dir.is_dir(): print(f'Automatically building .hwids section from {hwids_dir}', file=sys.stderr) hwids = parse_hwid_dir(hwids_dir)