chark_uboot 发表于 2007-3-27 00:25:48

请问u-boot中的flash_real_protect函数

请问u-boot中的flash_real_protect函数是在哪个文件中定义的
在include/flash.h中:

/* board/?/flash.c */
#if defined(CFG_FLASH_PROTECTION)
extern int flash_real_protect(flash_info_t *info, long sector, int prot);
extern void flash_read_user_serial(flash_info_t * info, void * buffer, int offset, int len);
extern void flash_read_factory_serial(flash_info_t * info, void * buffer, int offset, int len);
#endif        /* CFG_FLASH_PROTECTION */

但是board下有很多目录中都有flash.c文件
我用的是从lumit修改版本的u-boot1.1.3

zhaoic 发表于 2007-3-27 08:15:14

使用命令 "grep -nr flash_real_protect *"查找一下
页: [1]
查看完整版本: 请问u-boot中的flash_real_protect函数