From abca74cb486efa39689262cfc57b522f11c1e418 Mon Sep 17 00:00:00 2001 From: Marc Pervaz Boocha Date: Tue, 31 Oct 2023 23:09:14 +0530 Subject: [PATCH] Fixed a typo in kernel-install/60-ukify.install.in for globing microcode searches in a non-existent micocode/* dir instead of micocode* due a typo in #28592 --- src/kernel-install/60-ukify.install.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel-install/60-ukify.install.in b/src/kernel-install/60-ukify.install.in index 21ef694ba1..0c2e03777d 100755 --- a/src/kernel-install/60-ukify.install.in +++ b/src/kernel-install/60-ukify.install.in @@ -202,7 +202,7 @@ def kernel_cmdline(opts) -> str: def initrd_list(opts) -> list[Path]: - microcode = sorted(opts.staging_area.glob('microcode/*')) + microcode = sorted(opts.staging_area.glob('microcode*')) initrd = sorted(opts.staging_area.glob('initrd*')) # Order taken from 90-loaderentry.install -- 2.25.1