diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-05-13 16:27:25 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-05-13 16:27:25 +0000 |
commit | 5eceb32a79d4298a9f57bbe9fd5e06a83db0ce95 (patch) | |
tree | c57f79ae6290ab6744927ac98f13bccf65924d45 /src/arch/ppc/boot/boot.c | |
parent | 8f047de352d26c353c1c6bc9649a4616fa66bbd6 (diff) |
Allow dynamic size for the {s,}elfboot bounce buffer.
Use that to fix selfboot with compressed payloads.
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4281 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/ppc/boot/boot.c')
-rw-r--r-- | src/arch/ppc/boot/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/ppc/boot/boot.c b/src/arch/ppc/boot/boot.c index b123b3e5f0..e62c4eb2af 100644 --- a/src/arch/ppc/boot/boot.c +++ b/src/arch/ppc/boot/boot.c @@ -16,7 +16,7 @@ int elf_check_arch(Elf_ehdr *ehdr) } -void jmp_to_elf_entry(void *entry, unsigned long buffer) +void jmp_to_elf_entry(void *entry, unsigned long buffer, unsigned long bounce_size) { void (*kernel_entry)(void); |