
hello,all
i builded compressed image using montavista's tools :
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/arch/arm/boot/zImage uImage
2. tftp 0x10000000 uImage (i used u-boot-1.1.2, 0x10000000 is physical address)
3. bootm and kernel could boot successfully.
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
2. tftp 0x10000000 uImage
3. bootm
but kernel booting failed, and u-boot rebooted!
shall i change 0x10008000 to sth. and do something else?
thanks!