|  | 
 
| 请问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
 | 
 |