Other Parts Discussed in Thread: DRA742
Hi Expert.
I followed chpater 3.4 in below guideline to apply early-boot-lateattach patches to clear Vision SDK03.08. Then I run on TI J6 EVM. boot fail happened.
PROCESSOR_SDK_VISION_03_08_00_00/vision_sdk/docs/Linux/VisionSDK_Linux_UserGuide.pdf
U-Boot SPL 2019.01-00017-g2e90527ba7 (Oct 14 2020 - 17:44:17 +0800)
DRA752-GP ES2.0
no pinctrl state for default mode
** Unable to read file dra7-ipu1-fw.lzop **
Trying to boot from MMC1
Loading Environment from MMC... OK
spl_load_image_fat_buf: error reading image u-boot.img, err - -2
Loading Environment from MMC... OK
spl_load_image_ext_buf: ext4fs mount err - 0
after check code, err happened at below code.
PROCESSOR_SDK_VISION_03_08_00_00/ti_components/os_tools/linux/u-boot/u-boot/common/spl/spl_ext.c
int spl_load_image_ext_buf(struct spl_image_info *spl_image,
struct blk_desc *block_dev, int partition,
const char *filename,
void *buffer)
{
...
err = ext4fs_mount(0);
if (!err) {
#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
printf("%s: ext4fs mount err - %d\n", __func__, err);
#endif
goto end;
}
...
would you please help check if I miss some steps? I list my environment for your check.
Vision SDK:03.08
PC host version:
Linux version 4.4.0-31-generic (buildd@lgw01-43) (gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3) ) #50~14.04.1-Ubuntu SMP Wed Jul 13 01:07:32 UTC 2016
the version of the tools that I used in ./hlos/scripts/linux/early-boot-update.sh as below:
fdisk (util-linux 2.20.1)
mkfs.fat 3.0.26 (2014-03-07)
mke2fs 1.42.9 (4-Feb-2014)
Using EXT2FS Library version 1.44.1
Thanks a lot!
yong