From: Matt Fleming Date: Tue, 11 Sep 2012 16:28:09 +0000 (+0100) Subject: efi: Update the correct copy of hdr X-Git-Tag: syslinux-6.00-pre1~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f01bd6bf93b0962e345593fa504ef91ef5e8dafe;p=platform%2Fupstream%2Fsyslinux.git efi: Update the correct copy of hdr There are two struct linux_header variables in efi_boot(), only one of which points to the boot params that we pass to the kernel we're booting. Fix the initramfs code to update the correct variable, otherwise the kernel won't know about any initramfs we've loaded. Signed-off-by: Matt Fleming --- diff --git a/efi/main.c b/efi/main.c index f3f92f5..e31d529 100644 --- a/efi/main.c +++ b/efi/main.c @@ -905,8 +905,8 @@ int efi_boot_linux(void *kernel_buf, size_t kernel_size, goto free_map; } - hdr->ramdisk_image = (uint32_t)last; - hdr->ramdisk_size = irf_size; + bhdr->ramdisk_image = (uint32_t)last; + bhdr->ramdisk_size = irf_size; /* Copy initramfs into allocated memory */ for (ip = initramfs->next; ip->len; ip = ip->next) {