From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andre Przywara Date: Wed, 04 Dec 2013 13:45:01 +0100 Subject: [U-Boot] upstream Arndale support In-Reply-To: References: <529F148E.6020706@linaro.org> Message-ID: <529F23CD.4030603@linaro.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 12/04/2013 01:14 PM, Chander Kashyap wrote: > Hi Andre, > > On 4 December 2013 17:09, Andre Przywara wrote: >> Hi, >> >> I cannot get upstream u-boot to run on an Arndale board. Everything works >> when I use the Linaro branch. But this tree is old and carries a whole >> different set of patches for Arndale. >> Is the Arndale upstream support supposed to work? If yes, is there a >> different recipe for populating the uSD card? >> >> What works is the following: >> $ git checkout linaro >> $ make arndale5250_config && make -j arndale5250 >> $ dd if=/tmp/arndale-bl1.bin of=/dev/sdb seek=1 >> $ dd if=spl/smdk5250-spl.bin of=/dev/sdb seek=17 >> $ dd if=u-boot.bin of=/dev/sdb seek=49 >> >> Transferring this to upstream I get the following: >> $ git checkout master >> $ make arndale_config && make -j arndale >> $ dd if=/tmp/arndale-bl1.bin of=/dev/sdb seek=1 >> $ dd if=spl/arndale-spl.bin of=/dev/sdb seek=17 >> $ dd if=u-boot.bin of=/dev/sdb seek=49 > dd if=u-boot-dtb.bin of=/dev/sdb seek=49 Indeed! That works! Thanks a lot! Andre. >> >> However while the Linaro based build works fine, I don't get any serial >> output on the upstream build. >> >> Can someone give any hints? >> >> Thanks, >> Andre. > > >