Skip to content
Snippets Groups Projects
Commit 439310a2 authored by Gary Bisson's avatar Gary Bisson
Browse files

make_boundary: update mx8m build to include imx-mkimage

parent 1608ee9f
No related branches found
No related tags found
No related merge requests found
......@@ -26,11 +26,16 @@ for board in $boards ; do
read line;
else
if [ "${ARCH}" == "arm64" ] ; then
cp -fv spl/u-boot-spl.bin $savedir/u-boot-spl.bin.${board};
cp -fv u-boot-nodtb.bin $savedir/u-boot-nodtb.bin.${board};
cp -fv u-boot.bin $savedir/u-boot.bin.${board};
cp -fv arch/arm/dts/imx8mq-${board}.dtb $savedir/
ls -l $savedir/u-boot.bin.${board};
cd ../imx-mkimage ;
UBOOT_PATH=${WORKSPACE} UBOOT_DTB=imx8mq-${board}.dtb ./make_boundary.sh ;
cp -v iMX8M/flash.bin ${savedir}/u-boot.${board} ;
cd - ;
ls -l ${savedir}/u-boot.${board};
mkdir ${savedir}/${board}
cp -fv arch/arm/dts/imx8mq-${board}.dtb ${savedir}/${board}/
cp -fv spl/u-boot-spl.bin ${savedir}/${board}/;
cp -fv u-boot.bin ${savedir}/${board}/;
cp -fv u-boot-nodtb.bin ${savedir}/${board}/;
else
cp -fv u-boot.imx $savedir/u-boot.${board};
ls -l $savedir/u-boot.${board};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment