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:
parent
8473e8a792
commit
3044245e65
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue