I want a simple PVH kernel that will be loaded by qemu and the entry point started. Thus far I have my linker script:
ENTRY(pvh_start_addr)
SECTIONS
{
. = 1M;
.text : { *(.boot.text)
*(.text) }
. = ALIGN(4K);
.data : { *(.data) }
.bss : { *(.bss) }
.notes : { *(.notes) }
}
and the code:
.section .notes, "a"
.balign 4096
.align 4
.long 4
.long 4
.long 18 /* XEN..PHYS32 */
.asciz "Xen"
.align 4
.long pvh_start_addr
.long 0x101000
.align 4
.balign 16
.code64
.section ".boot.text", "ax"
.global pvh_start_addr
pvh_start_addr:
jmp pvh_start_addr
Qemu loads the elf as a PVH binary by gets the start address wrong. Anyhow, it SEG faults here:
qemu-5.1.0/hw/i386/x86.c:417
417 pvh_start_addr = *elf_note_data_addr;
Will this work or do I need other elf notes for this to work?
There is a but in qemu when it loads the ELF file. For a 64bit ELF file the alignment is still a 32 bit value.
should probably be changed to