From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leif Lindholm Date: Wed, 27 Apr 2005 11:47:36 +0200 Subject: [U-Boot-Users] boot uncompressed uImage In-Reply-To: <1114593987.6981.25.camel@localhost> References: <1114593987.6981.25.camel@localhost> Message-ID: <1114595256.4283.21.camel@localhost> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Wed, 2005-04-27 at 17:26 +0800, ?? wrote: > but i want to install uncompressed image, so i do: > > 1. > /bin/sh /usr/src/linux-2.4.20_mvlcee31/scripts/mkuboot.sh -A arm -O > linux -T kernel \ > -C none -a 0x10008000 -e 0x10008000 \ > -n 'Linux-2.4.20_mvlcee31-omap730_gsm_gprs' \ > -d /usr/src/linux-2.4.20_mvlcee31/vmlinux uImage I'm gonna risk making a fool out of myself since I've never actually worked with ARM, but... vmlinux is (for all other platforms I've used) an ELF image, not a raw binary. In order to be usable for u-boot, you need to run objcopy -S -O binary vmlinux vmlinux.bin and then use the resulting vmlinux.bin instead. / Leif