* grub-core/loader/arm64/linux.c: Add missing bracket.
This commit is contained in:
parent
260632161f
commit
62956fe7b9
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/loader/arm64/linux.c: Add missing bracket.
|
||||||
|
|
||||||
2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-12-23 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Add arm64-efi recognition to grub-file.
|
Add arm64-efi recognition to grub-file.
|
||||||
|
|
|
@ -120,7 +120,7 @@ check_kernel (struct linux_kernel_header *lh)
|
||||||
|
|
||||||
if ((lh->code0 & 0xffff) != GRUB_EFI_PE_MAGIC)
|
if ((lh->code0 & 0xffff) != GRUB_EFI_PE_MAGIC)
|
||||||
return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
|
return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
|
||||||
N_("plain Image kernel not supported - rebuild with CONFIG_(U)EFI_STUB enabled");
|
N_("plain Image kernel not supported - rebuild with CONFIG_(U)EFI_STUB enabled"));
|
||||||
|
|
||||||
grub_dprintf ("linux", "UEFI stub kernel:\n");
|
grub_dprintf ("linux", "UEFI stub kernel:\n");
|
||||||
grub_dprintf ("linux", "text_offset = 0x%012llx\n",
|
grub_dprintf ("linux", "text_offset = 0x%012llx\n",
|
||||||
|
|
Loading…
Reference in a new issue