From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerry Van Baren Date: Tue, 27 May 2008 22:51:05 -0400 Subject: [U-Boot-Users] Booting in reverse order In-Reply-To: <1400568270.225641211897176776.JavaMail.root@mbv4.indiatimes.com> References: <1400568270.225641211897176776.JavaMail.root@mbv4.indiatimes.com> Message-ID: <483CC899.9060009@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de raajesh.n at indiatimes.com wrote: > Hi All, > > We have installed new u-boot boot loader in a customized board , upon > booting from flash we are observing that all which is displaying is > in reverse order , we are not able find what is exact problem. we > checked the endiness of the compiled code, It was compiled in little > endian mode. > > Any suggestion would be appreciated . > > Best Regards, > Rajesh Ditto what Ben said about lacking information. If your board is booting and sending characters out the serial channel as your message implies, congratulations, all the hard stuff is working. I would look at your serial driver: how you get the characters out of memory and stuff them in the UART. Guessing with too little data: something in that area is getting byteswapped (or not byteswapped) wrongly. Another remote possibility is that your compiler (linker?) is storing strings byteswapped in memory for some strange reason. Good luck, gvb