* grub-core/kern/mips/dl.c (grub_arch_dl_relocate_symbols): Handle

R_MIPS_JALR since it's used by newer compiler.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2011-05-13 15:17:02 +02:00
parent 56dbe7b485
commit 9b44fecaa6
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2011-05-13 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/kern/mips/dl.c (grub_arch_dl_relocate_symbols): Handle
R_MIPS_JALR since it's used by newer compiler.
2011-05-10 Vladimir Serbinenko <phcoder@gmail.com>
* util/grub.d/10_linux.in: Correctly handle the Linux in root.

View file

@ -213,6 +213,8 @@ grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr)
= sizeof (grub_uint32_t) * (gpptr - gp);
gpptr++;
break;
case R_MIPS_JALR:
break;
default:
{
grub_free (gp);