Skip to content
Snippets Groups Projects
Commit edf23bc3 authored by Yuri Mazzuoli's avatar Yuri Mazzuoli
Browse files

[i.MX8MM][C72 Mini] Add suport for C72 Mini

parent 8c0cdfce
No related branches found
No related tags found
No related merge requests found
File added
......@@ -67,6 +67,27 @@ elif [[ "$BOARD" == "c72n" ]]; then
cd ..
make SOC=iMX8MN flash_ddr4_evk
elif [[ "$BOARD" == "c72m" ]]; then
echo "######################"
echo "# Compile C72 mini u-boot #"
echo "######################"
make clean
cd iMX8M/
[ -e iMX8M/flash.bin ] && rm iMX8M/flash.bin
[ -L mkimage_uboot ] && unlink mkimage_uboot
[ -L bl31.bin ] && unlink bl31.bin
[ -L u-boot.bin ] && unlink u-boot.bin
[ -L u-boot-spl.bin ] && unlink u-boot-spl.bin
[ -L u-boot-nodtb.bin ] && unlink u-boot-nodtb.bin
ln -sf bl31-imx8mm.bin bl31.bin
ln -sf ../../mkimage mkimage_uboot
ln -sf ../../../arch/arm/dts/seco-imx8mm-c72.dtb fsl-imx8mm-ddr4-evk.dtb
ln -sf ../../../u-boot.bin u-boot.bin
ln -sf ../../../u-boot-nodtb.bin .
ln -sf ../../../spl/u-boot-spl.bin u-boot-spl.bin
cd ..
make SOC=iMX8MM flash_ddr4_evk
elif [[ "$BOARD" == "c43" ]]
then
echo "######################"
......
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