update doit.sh to also copy the image

This commit is contained in:
Kees Jongenburger 2013-06-25 09:24:25 +02:00
parent c87941af68
commit bf18f9cddc
9 changed files with 17 additions and 7 deletions

Binary file not shown.

Binary file not shown.

BIN
build/am335x_evm/u-boot.img Normal file

Binary file not shown.

View File

@ -1,3 +1,4 @@
b483b7ba1cbaa9f54e11237a3e0bff791797c6f3 u-boot
b5e43edfc6c549717d10425f43438cc70b449db5 MLO
fc85cfbfe0e480df8cf6e3600b813b9ba1aa0a80 spl/u-boot-spl.bin
7e19da260002d519c79c35c36419beb8abe82cba u-boot.img
a9db61e34909964b6d1f32c3d69c73bfa2213f3f u-boot
5cbf1efd32d464ef465f129d7d8e641d8685d5e3 MLO
aaf6b52c5fdb3ee8a8cc39921c56013af46cbc12 spl/u-boot-spl.bin

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,3 +1,4 @@
d56eaeb1fe2943e4fd4c2f15b6866bb9c8a0b67e u-boot
27a5032173c7575ecebcc5dae7ec7eda52bb1699 MLO
5c318b4a8229ae9513b2e69c2c667a4ce548dfa8 spl/u-boot-spl.bin
85a0c98a6502bf25e387e6c0000776eec630878c u-boot.img
3e3d541f18b3e4e17e2d8132f8a3d3854112d771 u-boot
fb7eda48e6c14fb830d0d66a7ccd395b087ca9e7 MLO
29a50a2a170cc67daf4ee692f36275eb6a9efe87 spl/u-boot-spl.bin

10
doit.sh
View File

@ -1,15 +1,23 @@
git clean -f -x -d -e doit.sh
export CROSS_COMPILE=arm-none-eabi-
#
# Remove the build *after* the clea and before
# we start building (e.g. the build directory
# is regenerated.
#
rm -rf build
for i in am335x_evm omap3_beagle
do
(
make ${i}_config
make
sha1sum u-boot MLO spl/u-boot-spl.bin > u-boot.sha1
sha1sum u-boot.img 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 u-boot.img 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