如何擦除模块中的闪存
在我的 Linux 系统上,我可以使用 mtd 库中的 flash_erase 程序从命令行擦除闪存。 但我需要删除模块中的 mtd 分区。 在内核包含文件中,我找到了 linux/mtd/mtd.h,但它定义了结构,而不是要调用的函数。 有没有人可以为我指出正确的方向来做到这一点? 谢谢, 汉族
On my Linux system I can erase flash memory from the command line by using the flash_erase program from the mtd library.
But I need to erase an mtd partition in a module.
In the kernel include files I found linux/mtd/mtd.h, but that defines structures, not functions to call.
Is there someone out there who can point me in the right direction to do this?
Thanks,
Han
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不想从内核模块执行此操作。只需启动一个用户模式帮助程序进程并按照它应该工作的方式进行即可。
You don't want to do this from a kernel module. Just start a user mode helper process and do it the way it is supposed to work.