弱弱问一下
据am3359文档,am3359可以用eMMC作启动,并且能读取FAT16文件格式的MLO。
我想问的是,
eMMC芯片(FAT16格式)内的MLO,是怎样烧写进入的?
谢
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.
eMMC从接口和使用方式上看起来更像是个SD卡。有很多种方法都可以对其进行分区和文件写入。
例如,我们可以通过SD卡boot起来一个Linux的小系统,然后通过这个系统对其进行分区和文件写入。BeagleBone Black就可以通过这个方式。详细步骤如下:
http://www.crashcourse.ca/wiki/index.php/BBB_software_update_process (BBB software update process)
也可以通过以太网,USB Boot等方式,通过TFTP把这个Linux小系统加载进来,然后运行这个系统,对eMMC进行分区和文件写入。我们提供的Uniflash工具可以通过这种方式烧写eMMC:
http://processors.wiki.ti.com/index.php/Sitara_Linux_AM335x_Flash_Programming_Linux_Development#eMMC_Programming_Process (eMMC Programming Process)
谢谢。