配置iTop-4418的uBoot跳过开机时的TF卡槽状态检测

在没有TF卡槽的设备上开机时,iTop-4418的uBoot仍然会进行SD MMC检测并报错,可以跳过该检测以避免阻塞开机过程。

修改u-boot/board/s5p4418/drone2/board.c文件中board_late_init()函数,屏蔽以下语句块:

struct mmc *mmc = find_mmc_device(CFG_FASTBOOT_SDFUSE_MMCDEV);
if (mmc_init(mmc)) {
    printf("Not found tf card.\n");
 
    tf_insert_flags = 0;
}
else
{
    printf("Found tf card.\n");
 
    tf_insert_flags = 1;
}
it
除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License