On Thu, Jun 21, 2012 at 01:21:22PM +0530, Prabhakar Lad wrote:

> From: Lad, Prabhakar <prabhakar....@ti.com>
> 
> This series adds MMC/SD, NAND and NOR SPL support
> for Logic PD's DA850/OMAP-L138 EVM. This series
> also fixes some issues found on the EVM during
> testing. The patches are sent in a series as these
> patches need to be applied in the order they are sent.

I have not tried this on your series yet but since Christian pointed out
the clr_be32/le32 thing, you'll need to do a v4 anyhow, so as part of v4
please make sure that the whole series is bisectable using 'git rebase
-i' and the 'exec' keyword.  I do this locally by having a script with,
for example:

#!/bin/sh
LOG=`git rev-parse --short HEAD`.log
rm -f $LOG

# Build for ELDK 5.1
source /opt/eldk-5.1/armv7a/environment-setup-armv7a-vfp-neon-linux-gnueabi
export CROSS_COMPILE=arm-linux-gnueabi-
export BUILD_DIR=eldk51
export MAKEALL_LOGDIR=eldk51
./MAKEALL -s davinci > $LOG 2>&1
RC=`echo $?`
if [ $RC -ne 0 ]; then
        exit $RC
fi

# Now 4.2
unset CFLAGS
unset LDFLAGS
unset CPPFLAGS
unset CXXFLAGS
export CROSS_COMPILE=/opt/eldk-4.2/arm/usr/bin/arm-linux-gnueabi-
export BUILD_DIR=eldk42
export MAKEALL_LOGDIR=eldk42
./MAKEALL -s davinci > $LOG 2>&1
exit $?

And then 'exec /home/trini/bin/uboot-makeall-davinci-gitrebase.sh' after
each 'pick' line, and examine the log files once done (since MAKEALL
will exit 0 on new warnings introduced).  Thanks!

-- 
Tom

Attachment: signature.asc
Description: Digital signature

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to