在U-BOOT中启用UBIFS

时间:2016-09-19 21:04:43

标签: u-boot

我试图在u-boot中启用UBIFS支持,但在编译时遇到了几个未定义的引用错误。在我的电路板配置中,我启用了以下内容:

#define CONFIG_MTD_DEVICE
#define CONFIG_MTD_PARTITIONS
#define CONFIG_CMD_MTDPARTS
#define CONFIG_CMD_UBI
#define CONFIG_RBTREE
#define CONFIG_CMD_UBIFS
#define CONFIG_LZO

编译时得到以下未定义的引用错误:

uboot/fs/ubifs/lpt_commit.c:1232: undefined reference to dbg_chk_lpt_free_spc
uboot/fs/ubifs/lpt_commit.c:1235: undefined reference to `dbg_check_ltab'
fs/built-in.o: In function `layout_cnodes':
uboot/fs/ubifs/lpt_commit.c:322: undefined reference to `ubifs_dump_lpt_lebs'
fs/built-in.o: In function `ubifs_add_bud_to_log':
uboot/fs/ubifs/log.c:194: undefined reference to `ubifs_commit_required'
uboot/fs/ubifs/log.c:225: undefined reference to `ubifs_request_bg_commit'
uboot/fs/ubifs/log.c:265: undefined reference to `ubifs_write_node'
fs/built-in.o: In function `ubifs_log_end_commit':
uboot/fs/ubifs/log.c:479: undefined reference to `ubifs_write_master'
fs/built-in.o: In function `do_write_orph_node':
uboot/fs/ubifs/orphan.c:248: undefined reference to `ubifs_write_node'

dbg_chk_lpt_free_spcdb_check-ltabubifs_dump_lpt_lebsubifs_write_nodeubifs_write_master是" ifdef' d" out(#ifndef __UBOOT__但......显然__UBOOT__已定义)。

使用快速grep,ubifs_commit_requiredubifs_request_bg_commit完全缺少实现。

u-boot是否完全不支持UBIFS,或者它目前是否已损坏? (使用2016.07发布)。或者我可能错过了一步......

1 个答案:

答案 0 :(得分:0)

UBIFS在几个架构的主线上确实被打破了。建议的补丁可以在http://lists.denx.de/pipermail/u-boot/2016-September/265474.html的管道邮件中找到,但尚未获得批准。应用补丁没有问题,我现在可以编译,但文件系统是否与它一起使用还有待观察......