Files
sablink-distro/sys-boot/grub/files/00_fonts
T
2013-10-31 21:23:25 +01:00

15 lines
511 B
Plaintext
Executable File

# Create required fonts, otherwise graphic mode won't be loaded
if [ -x "/usr/bin/grub2-mkfont" ]; then
# This is the bare minimum
/usr/bin/grub2-mkfont --output=/boot/grub/unifont.pf2 \
/usr/share/fonts/unifont/unifont.pcf.gz > /dev/null
# let's load DejaVu if exists, no deps against it
# to avoid crazy deps on critical pkg
if [ -r "/usr/share/fonts/dejavu/DejaVuSans.ttf" ]; then
/usr/bin/grub2-mkfont --output=/boot/grub/dejavu.pf2 \
/usr/share/fonts/dejavu/DejaVuSans.ttf > /dev/null
fi
fi