
14 Feb
2005
14 Feb
'05
3:05 p.m.
Thierry Matalini thierry.matalini@gmail.com wrote:
I download the images from the ARM site (http://www.arm.com/linux/prebuilt_download.html)
- u-boot-ap.axf
- Image.Integrator.2.6.9
- System.cramfs
I program all 3 images onto the flash, and I boot from u-boot. When I want to launch the kernel, the boot process freezes.
Am I doing something wrong ? I do need to configure something before program the images ?
You need to run the mkimage utility that comes with U-Boot on the kernel image files and write the resulting image in flash instead. See below as an example:
mkimage -A arm -T kernel -C none -a 0x7fc0 -e 0x8000 -n u-linux \ -d arch/arm/boot/Image u-linux
Catalin