Leonid wrote:
You cannot use 0x22000000 address (start of memory) because this is the very address your image is compiled to run from. You should load your kernel to some (free) place in RAM, say 0x23000000. Than type "bootm 0x23000000"
Even an offset of 0x100 from the boot address is sufficient, because u-boot copies the kernel image the kernel from low->high addresses. So,
tftp 0x22000100 image.ub bootm 0x22000100 should be fine. Regards, John ___________________________ microblaze-uclinux mailing list microblaze-uclinux@xxxxxxxxxxxxxx Project Home Page : http://www.itee.uq.edu.au/~jwilliams/mblaze-uclinux Mailing List Archive : http://www.itee.uq.edu.au/~listarch/microblaze-uclinux/