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