mirror of
https://git.proxmox.com/git/grub2
synced 2025-08-15 13:40:35 +00:00
Copy unicode.pf2 to /boot/grub/ for EFI installs so that it is more
likely to be readable by GRUB (closes: #661789).
This commit is contained in:
parent
017c83132e
commit
8c73049fd8
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -2,6 +2,8 @@ grub2 (1.99-24) UNRELEASED; urgency=low
|
|||||||
|
|
||||||
* Acknowledge NMU with thanks.
|
* Acknowledge NMU with thanks.
|
||||||
* Fix namespace of EFI boot failure patch file added in NMU.
|
* Fix namespace of EFI boot failure patch file added in NMU.
|
||||||
|
* Copy unicode.pf2 to /boot/grub/ for EFI installs so that it is more
|
||||||
|
likely to be readable by GRUB (closes: #661789).
|
||||||
|
|
||||||
-- Colin Watson <cjwatson@debian.org> Fri, 28 Dec 2012 05:17:38 +0000
|
-- Colin Watson <cjwatson@debian.org> Fri, 28 Dec 2012 05:17:38 +0000
|
||||||
|
|
||||||
|
7
debian/postinst.in
vendored
7
debian/postinst.in
vendored
@ -657,6 +657,13 @@ case "$1" in
|
|||||||
if [ "$bootloader_id" ] && [ -d "/boot/efi/EFI/$bootloader_id" ]; then
|
if [ "$bootloader_id" ] && [ -d "/boot/efi/EFI/$bootloader_id" ]; then
|
||||||
grub-install
|
grub-install
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# /boot/grub/ has more chances of being accessible by GRUB
|
||||||
|
for i in /usr/share/grub/unicode.pf2 ; do
|
||||||
|
if test -e $i ; then
|
||||||
|
cp $i /boot/grub/
|
||||||
|
fi
|
||||||
|
done
|
||||||
;;
|
;;
|
||||||
|
|
||||||
grub-yeeloong)
|
grub-yeeloong)
|
||||||
|
Loading…
Reference in New Issue
Block a user