From 83c488621a8a00c26d010723f577e21880ae8ced Mon Sep 17 00:00:00 2001 From: Kees Jongenburger Date: Wed, 12 Jun 2013 16:37:37 +0200 Subject: [PATCH] Adding a build script to build the supported hardware combo's --- doit.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 doit.sh diff --git a/doit.sh b/doit.sh new file mode 100755 index 000000000..e18dc1295 --- /dev/null +++ b/doit.sh @@ -0,0 +1,18 @@ +git clean -f -x -d -e doit.sh +export CROSS_COMPILE=arm-none-eabi- + +for i in am335x_evm omap3_beagle +do +( + make ${i}_config + make + sha1sum u-boot MLO spl/u-boot-spl.bin > u-boot.sha1 + mkdir -p build/$i/spl + cp MLO build/$i/ + cp u-boot build/$i/ + cp spl/u-boot-spl.bin build/$i/spl/ + cp u-boot.sha1 build/$i/ + git clean -f -x -d -e doit.sh -e build +) +done +git clean -f -x -d -e doit.sh -e build