mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-18 13:09:01 +00:00
2009-09-02 Vladimir Serbinenko <phcoder@gmail.com>
* efiemu/loadcore.c (SUFFIX (grub_efiemu_loadcore_load)): Fix style according to GCS.
This commit is contained in:
parent
f091064493
commit
cbf978c0f0
@ -1,4 +1,9 @@
|
|||||||
2009-09-02 Colin Watson <cjwatson@ubuntu.com>
|
2009-09-02 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* efiemu/loadcore.c (SUFFIX (grub_efiemu_loadcore_load)): Fix style
|
||||||
|
according to GCS.
|
||||||
|
|
||||||
|
2009-09-02 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
* docs/grub.texi (Naming convention): Describe one-based partition
|
* docs/grub.texi (Naming convention): Describe one-based partition
|
||||||
numbering.
|
numbering.
|
||||||
|
@ -352,13 +352,18 @@ SUFFIX (grub_efiemu_loadcore_load) (void *core,
|
|||||||
grub_efiemu_segment_t segments)
|
grub_efiemu_segment_t segments)
|
||||||
{
|
{
|
||||||
grub_err_t err;
|
grub_err_t err;
|
||||||
if ((err = grub_efiemu_load_segments (segments, core)))
|
err = grub_efiemu_load_segments (segments, core);
|
||||||
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
if ((err = grub_efiemu_resolve_symbols (segments, core)))
|
|
||||||
|
err = grub_efiemu_resolve_symbols (segments, core);
|
||||||
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
if ((err = SUFFIX (grub_arch_efiemu_relocate_symbols) (segments,
|
|
||||||
|
err = SUFFIX (grub_arch_efiemu_relocate_symbols) (segments,
|
||||||
grub_efiemu_elfsyms,
|
grub_efiemu_elfsyms,
|
||||||
core)))
|
core);
|
||||||
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
return GRUB_ERR_NONE;
|
return GRUB_ERR_NONE;
|
||||||
|
Loading…
Reference in New Issue
Block a user