Freescale / u-boot-fslc

U-Boot tree to host pending fixes and improvements
136 stars 181 forks source link

imx8mm evk boot from Sdcard #59

Open marriusco opened 1 year ago

marriusco commented 1 year ago

I took firmware-imx-7.9.bin and I copied the following files to the u-boot-fslc

bl31.bin
signed_hdmi_imx8m.bin
lpddr4_pmu_train_2d_imem.bin
pddr4_pmu_train_2d_dmem.bin
lpddr4_pmu_train_1d_imem.bin
lpddr4_pmu_train_1d_dmem.bin

Then:

#!/bin/bash
export ARCH=arm64
export CROSS_COMPILE=$(pwd)/gcc-linaro-7.3.1-2018.05-i686_aarch64-linux-gnu/bin/aarch64-linux-gnu-
export PATH=${PATH}:$(pwd)/gcc-linaro-7.3.1-2018.05-i686_aarch64-linux-gnu/bin

 7225  cd u-boot-fslc/
 7226  make imx8mm_evk_defconfig
 7227  make
 7228  make flash.bin
 7229  find -name flash.bin
 7230  sudo dd if=./flash.bin of=/dev/mmcblk0 bs=1024 seek=33
 7231  sync

The image does not boot. Any help would be appreciated. Thank you

angolini commented 1 year ago

which u-boot version?