分类: LINUX
2016-03-23 11:17:20
因为市场采购原因,4412板子原配的eMMC4.41芯片,更改为同容量的eMMC5.0芯片。
代码需要更改如下:
1、uboot修改drivers/mmc/mmc.c中
- #
if ((ext_csd_struct > 5) && (7 != ext_csd_struct))
+ if(ext_csd_struct > 8)
2、修改内核drivers/mmc/core/mmc.c
- #if (card->ext_csd.rev > 5)
+ if (card->ext_csd.rev > 8)