~ubuntu-branches/ubuntu/trusty/grub2/trusty-updates

« back to all changes in this revision

Viewing changes to loader/powerpc/ieee1275/multiboot2.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Millan
  • Date: 2008-01-28 00:01:11 UTC
  • mto: (17.3.1 squeeze) (1.9.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20080128000111-0764agvqzg601o1d
Tags: upstream-1.95+20080128
ImportĀ upstreamĀ versionĀ 1.95+20080128

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
grub_mb2_arch_boot (grub_addr_t entry_addr, void *tags)
116
116
{
117
117
  kernel_entry_t entry = (kernel_entry_t) entry_addr;
 
118
#if defined(__powerpc__)
118
119
  entry (MULTIBOOT2_BOOTLOADER_MAGIC, tags, grub_ieee1275_entry_fn, 0, 0);
 
120
#elif defined(__i386__)
 
121
  grub_multiboot2_real_boot (entry, tags);
 
122
#else
 
123
#error
 
124
#endif
119
125
}