如何在 am335x evm 的 NAND 闪存中创建分区?
am35x eVM
中的 2 GB NAND 闪存有 8 个分区。如果我想在其中再添加一个分区,该怎么做呢?
如果我们访问为此安装的ti-sdk
,那么在kernel/arch/arm/mach-omap2/board-am335xevm.c
中有static struct mtd_partitions< /code>,其中我们可以添加自己的分区。这是正确的方法吗?如果是这种情况,那么如何决定大小。其他块是128k。包含一个分区意味着缩小其他分区的大小,是吗?
2 GB NAND flash in am35x evm
has 8 partitions. If I want to add one more partition in this, how to do it?
If we access ti-sdk
installed for this, then in kernel/arch/arm/mach-omap2/board-am335xevm.c
there is static struct mtd_partitions
, wherein we can add our own partition.Is this a right approach and if this is the case then how to decide the size. Other blocks are of 128k. Including a partition means shrinking the size of others, is it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们将通过其名称和偏移量在 kernel/arch/arm/mach-omap2/board-am335xevm.c 中添加我们自己的分区
We will be adding our own partition by its name and offset in kernel/arch/arm/mach-omap2/board-am335xevm.c