From mboxrd@z Thu Jan 1 00:00:00 1970 From: Catalin Marinas Date: Mon, 14 Feb 2005 14:05:28 +0000 Subject: [U-Boot-Users] Re: integrator-ap + ARM926EJ-S In-Reply-To: (Thierry Matalini's message of "Mon, 14 Feb 2005 14:35:18 +0100") References: Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Thierry Matalini 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