摘要: 转:http://www.armadeus.com/wiki/index.php?title=UBIFSThis is a preliminary page dealing with the installation of UBIFS on the APF boards. UBIFS will replace JFFS2 file system on NAND (and NOR as well) based boards because JFFS2 induces a big overhead when parsing, reading and writing large devices,se 阅读全文
posted @ 2013-11-20 17:35 dolinux 阅读(688) 评论(0) 推荐(0)
摘要: 转:http://wiki.atlas-embedded.com/index.php?title=Creating_and_Flashing_UBIFS_with_MTD_UtilsContents1UBIFS2UBIFS User-space tools3Obtaining UBIFS Tools4Creating UBIFS5Flashing and Mounting UBIFS to NANDUBIFSUBIFS is next generation of JFFS2 file-system.JFFS2 file systems works on MTD devices, UBIFS i 阅读全文
posted @ 2013-11-20 17:31 dolinux 阅读(2858) 评论(0) 推荐(0)
摘要: 在进行程序编译时,可能需要指定一些库的库的路径、头文件的路径,分别使用的参数选项是-L和-I,需要注意的是:需要确保-L和-I后边的内容不为空,否则会出现意想不到的错误,而这种错误比较难以发现,引起不注意的原因是,一般在Makefile中会使用诸如 -L$(XXX)或者-I$(XXX)这种形式,当括号中的变量为空时就会导致-I或-L后面为空,从而引起编译时的错误,明明库和头文件的路径已经指定了,就是死活找不到库和头文件。 阅读全文
posted @ 2013-11-20 10:41 dolinux 阅读(300) 评论(0) 推荐(0)