I'm using v3.0.0 which now has a fitImage instead of a zImage in v2.11.1
I would like to debug the linux kernel.
Normally for a zImage kernel I would use gdb and jtag with the following command
file vmlinux and then load
But the kernel is now Image.gz inside a fitImage
I tried the same approach and it failed with
(gdb) file vmlinux
(gdb) load
Loading section .head.text, size 0x10000 lma 0xffff800008000000
Load failed
The memory address is wrong,
according to the fit-image.its I'm expecting to load it to 0x9a200000
and the size being loaded should be 0x59A9EC
how do I load a debug uncompressed kernel into memory ?
Thanks Chris