Fix detection of fonts in initrd

When (intel|amd64)-microcode is present, the structure of the ramdisk is
more complex. `lsinitramfs` can see all files.
This commit is contained in:
Roland Clobus 2023-03-19 08:40:46 +01:00
parent 8473e8a792
commit 3044245e65
No known key found for this signature in database
GPG Key ID: 62C57C6AA61495BD
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ then
fi
# Don't run if there is no font in the initrd.img file
if ! zless /initrd.img | cpio --list --quiet | grep "^var/cache/fontconfig" | grep ".cache-7$" > /dev/null;
if ! lsinitramfs /initrd.img | grep "^var/cache/fontconfig" | grep ".cache-7$" > /dev/null;
then
exit 0
fi