[U-Boot] [PATCH v3 0/9] feature additions and fixes for da850/omap-l138

Tom Rini trini at ti.com
Thu Jun 21 19:33:05 CEST 2012


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

> From: Lad, Prabhakar <prabhakar.lad at 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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20120621/74bf554c/attachment.pgp>


More information about the U-Boot mailing list