* grub-core/kern/emu/cache.c [__ia64__]: Use our cache cleaning routine
on ia64 as __clear_cache is a dummy on ia64.
This commit is contained in:
parent
4f4ea1b449
commit
9a945e2a24
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2013-12-09 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/kern/emu/cache.c [__ia64__]: Use our cache cleaning routine
|
||||||
|
on ia64 as __clear_cache is a dummy on ia64.
|
||||||
|
|
||||||
2013-12-09 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-12-09 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/kern/ia64/dl_helper.c (grub_ia64_dl_get_tramp_got_size):
|
* grub-core/kern/ia64/dl_helper.c (grub_ia64_dl_get_tramp_got_size):
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
|
#ifndef GRUB_MACHINE_EMU
|
||||||
|
#error "This source is only meant for grub-emu platform"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <grub/cache.h>
|
#include <grub/cache.h>
|
||||||
|
|
||||||
#if defined(__ia64__) || defined (__arm__) || defined (__aarch64__)
|
#if defined(__ia64__)
|
||||||
|
#include "../ia64/cache.c"
|
||||||
|
#elif defined (__arm__) || defined (__aarch64__)
|
||||||
|
|
||||||
void __clear_cache (char *beg, char *end);
|
void __clear_cache (char *beg, char *end);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue