On 22 July 2015 at 04:48, Naman Govil <naman...@gmail.com> wrote: > Hi, > > > I am trying to boot off a kernel image on aarch64. I have the compiled image > which I am running by using the command > > $qemu-system-aarch64 -machine type=virt -m 2048M-nographic -kernel > ~/coreboot/build/coreboot.rom
This command line doesn't specify a CPU, and so you get the default CPU for 'virt', which is cortex-a15. That CPU doesn't support AArch64. You probably want to say "-cpu cortex-a57". -- PMM