On Tue, Jul 16, 2019 at 02:03:02AM +0000, Peng Fan wrote: > Hi Tom, > > > Subject: Re: Please pull u-boot-mmc > > > > On Mon, Jul 15, 2019 at 07:21:24AM +0000, Peng Fan wrote: > > > > > Hi Tom, > > > > > > Please pull u-boot-mmc, > > > CI build: https://travis-ci.org/MrVan/u-boot/builds/558716778 > > > > Note that I see a general small bit of SPL growth here. Can we do something > > about it? i.e. this from libretech_all_h3_cc_h5: > > Could you please share how to the comparation? Do you have a script?
Just one of the many features of buildman. My wrapper around it is:
#!/bin/bash
if [ $# -ne 1 -a $# -ne 2 ];then
echo "Usage: $0 MACHINE [BRANCH]"
exit 1
fi
if [ ! -z $2 ]; then
B=$2
else
B=`git rev-parse --abbrev-ref HEAD`
fi
export SOURCE_DATE_EPOCH=`date +%s`
./tools/buildman/buildman -o /tmp/$1 -b $B --step 0 -SBCdevlk $1
./tools/buildman/buildman -o /tmp/$1 -b $B --step 0 -SsBdevlk $1
rm -rf /tmp/$1
--
Tom
signature.asc
Description: PGP signature
_______________________________________________ U-Boot mailing list [email protected] https://lists.denx.de/listinfo/u-boot

