编译玩sdk8.0的uboot运行后,提示:Could not probe the EEPROM; something fundamentally wrong on the I2C bus.
请问SDK8.0如何屏蔽I2C读取ID功能呢?我用的是自己画的板子,没有用到 EEPROM。
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
编译玩sdk8.0的uboot运行后,提示:Could not probe the EEPROM; something fundamentally wrong on the I2C bus.
请问SDK8.0如何屏蔽I2C读取ID功能呢?我用的是自己画的板子,没有用到 EEPROM。
屏蔽成功了。。。修改read_eeprom(board/ti/am335x/board.c)函数,把函数内的内容删掉,加上这句: strcpy(header->name, "AM335X_SK"); 就可以了,以后就用sk的配置。
不过 会报如下信息:
reading args
spl_load_image_fat_os: error reading image args, err - -1
它试图读取一个叫args的文件,但这个文件不存在于工程。这个在spl_fat.c中屏蔽掉应该没问题吧??