mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 04:26:19 -04:00
Adding a build script to build the supported hardware combo's
This commit is contained in:
parent
1cabe2dd30
commit
83c488621a
18
doit.sh
Executable file
18
doit.sh
Executable file
@ -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
|
Loading…
x
Reference in New Issue
Block a user