Part Number: DRA71XEVM
Tool/software: Linux
How to boot uncompressed linux kernel(/arch/arm/boot/Image) with uboot?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
in general u-boot uses 'bootz' command to boot zImage (compressed kernel) and 'bootm' to boot uImage.
You can stop at u-boot prompt, run 'printenv' to show environment variable and check variable "bootcmd" to understand the sequence of commands to boot the kernel.
Then you can try to modify u-boot environment to load uImage instead of zImage and run 'bootm' instead of 'bootz' and see it it works.
Regards,
Yordan