* 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:
parent
56dbe7b485
commit
9b44fecaa6
2 changed files with 7 additions and 0 deletions
|
@ -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>
|
2011-05-10 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* util/grub.d/10_linux.in: Correctly handle the Linux in root.
|
* util/grub.d/10_linux.in: Correctly handle the Linux in root.
|
||||||
|
|
|
@ -213,6 +213,8 @@ grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr)
|
||||||
= sizeof (grub_uint32_t) * (gpptr - gp);
|
= sizeof (grub_uint32_t) * (gpptr - gp);
|
||||||
gpptr++;
|
gpptr++;
|
||||||
break;
|
break;
|
||||||
|
case R_MIPS_JALR:
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
grub_free (gp);
|
grub_free (gp);
|
||||||
|
|
Loading…
Reference in a new issue