<div>Hi All,</div>
<div>&nbsp;I am a new member to this mailing list.</div>
<div>&nbsp;</div>
<div>&nbsp;I am porting u-boot to a arm926ej board. I have a serial port which I am trying to use to download a binary image. But I am not able to do so. I am trying to use loadb and loads and both seems to be failing.</div>
<div>&nbsp;</div>
<div>Here is a typical sequence i followed</div>
<div>&nbsp; 1) Boot-up the board</div>
<div>&nbsp; 2) Connected to Hyperterminal (tried minicom, cu, kermit and dnw) with 8N1 and hw-flw control as &quot;none&quot;.</div>
<div>&nbsp; 3) at u-boot command prompt gave following command</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&gt; loadb 0x60008000 115200</div>
<div>&nbsp;&nbsp;4) From hyperterminal, Transfer-&gt;send file with protocol as kermit, selected the file and tried sending, but failed. Everytime&nbsp; hyperterminal poped up &quot;error limit exceeded&quot;.</div>
<div>&nbsp;</div>
<div># loadb<br>## Ready for binary (kermit) download to 0x60008000 at 115200 bps..</div>
<div>&nbsp;</div>
<div>&nbsp;When tried looking the point where it is geting stuck, I saw u-boot waiting in the while loop looking for the 'START_CHAR' in the following section of code:</div>
<div>&nbsp;</div>
<div>k_recv(){</div>
<div>.....</div>
<div>....</div>
<div>&nbsp;&nbsp;for (;;) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; switch (getc ()) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; case START_CHAR:&nbsp;/* start packet */<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; goto START;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; case ETX_CHAR:&nbsp;&nbsp;/* ^C waiting for packet */<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return (0);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; default:
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;}<br>....</div>
<div>...</div>
<div>}</div>
<div>&nbsp;</div>
<div>&nbsp;I am not sure how to use 'loadb' and 'loads'. Read a&nbsp;few docs about uses though,&nbsp;none explained what needs to be&nbsp;done in implementation part.</div>
<div>&nbsp;</div>
<div>&nbsp;Can anyone give me some pointer, as in, any board which has implemeted and using any of the commands? What might have&nbsp;gone wrong here??</div>
<div>&nbsp;</div>
<div>Or any other commands I can use for serial download of binary image?</div>
<div>&nbsp;</div>
<div>Thanks in advance</div>
<div>Banajit</div>
<div>&nbsp;</div>