Hi,
I'm trying to integrate my custom board with MFGTool.
I have already configured my u-boot + Kernel and able to upload it with MFGTool.
My main problem is that when I try to upload my ramdisk file which as a size of 11 MBytes.
Weird thing is that a similar rootfs with only 8 MB run just fine.
Any idea ?
I Also tryed to send the file in multiple part but didn't worked ... Is this some kind of limitation to MFGTool ??
Here is what my XML look like
<LIST name="MyBoard" desc="Just a test">
<CMD state="BootStrap" type="boot" body="BootStrap" file ="myboard/u-boot-mfg.bin" >Loading U-boot</CMD>
<CMD state="BootStrap" type="load" file="myboard/uImage" address="0x10800000"
loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE" >Loading Kernel.</CMD>
<CMD state="BootStrap" type="load" file="myboard/ramdisk.uboot" address="0x11800000"
loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE" >Loading Initramfs.</CMD>
<CMD state="BootStrap" type="jump" > Jumping to OS image. </CMD>
</LIST>
Thanks for any help