mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
x86/loader: read complete kernel
Load the complete kernel (including setup) into memory. Excluding the setup is handled later when adding the FW_CFG_KERNEL_SIZE and FW_CFG_KERNEL_DATA entries. This is a preparation for the next patch which adds a new fw_cfg file containing the complete, unpatched kernel. No functional change. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-ID: <20240905141211.1253307-4-kraxel@redhat.com>
This commit is contained in:
parent
57e2cc9abf
commit
214191f6b5
1 changed files with 6 additions and 5 deletions
|
@ -895,7 +895,6 @@ void x86_load_linux(X86MachineState *x86ms,
|
|||
fprintf(stderr, "qemu: invalid kernel header\n");
|
||||
exit(1);
|
||||
}
|
||||
kernel_size -= setup_size;
|
||||
|
||||
setup = g_malloc(setup_size);
|
||||
kernel = g_malloc(kernel_size);
|
||||
|
@ -904,6 +903,7 @@ void x86_load_linux(X86MachineState *x86ms,
|
|||
fprintf(stderr, "fread() failed\n");
|
||||
exit(1);
|
||||
}
|
||||
fseek(f, 0, SEEK_SET);
|
||||
if (fread(kernel, 1, kernel_size, f) != kernel_size) {
|
||||
fprintf(stderr, "fread() failed\n");
|
||||
exit(1);
|
||||
|
@ -950,10 +950,11 @@ void x86_load_linux(X86MachineState *x86ms,
|
|||
}
|
||||
|
||||
fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, prot_addr);
|
||||
fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
|
||||
fw_cfg_add_bytes(fw_cfg, FW_CFG_KERNEL_DATA, kernel, kernel_size);
|
||||
sev_load_ctx.kernel_data = (char *)kernel;
|
||||
sev_load_ctx.kernel_size = kernel_size;
|
||||
fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size - setup_size);
|
||||
fw_cfg_add_bytes(fw_cfg, FW_CFG_KERNEL_DATA,
|
||||
kernel + setup_size, kernel_size - setup_size);
|
||||
sev_load_ctx.kernel_data = (char *)kernel + setup_size;
|
||||
sev_load_ctx.kernel_size = kernel_size - setup_size;
|
||||
|
||||
fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_ADDR, real_addr);
|
||||
fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_SIZE, setup_size);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue