
27 Apr
2005
27 Apr
'05
11:47 a.m.
On Wed, 2005-04-27 at 17:26 +0800, 朱成 wrote:
but i want to install uncompressed image, so i do:
/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
<path-to-your-cross>objcopy -S -O binary vmlinux vmlinux.bin
and then use the resulting vmlinux.bin instead.
/ Leif