mt7628 mt7688 mtd分区介绍

1.查看mtd分区

root@OpenWrt:~# cat /proc/mtd 
dev:    size   erasesize  name
mtd0: 00030000 00010000 "u-boot"
mtd1: 00010000 00010000 "u-boot-env"
mtd2: 00010000 00010000 "factory"
mtd3: 00fb0000 00010000 "firmware"
mtd4: 00118e3c 00010000 "kernel"
mtd5: 00e971c4 00010000 "rootfs"
mtd6: 009e0000 00010000 "rootfs_data"

2.内核日志

[    0.500000] Creating 4 MTD partitions on "spi32766.0":
[    0.510000] 0x000000000000-0x000000030000 : "u-boot"
[    0.520000] 0x000000030000-0x000000040000 : "u-boot-env"
[    0.530000] 0x000000040000-0x000000050000 : "factory"
[    0.540000] 0x000000050000-0x000001000000 : "firmware"
[    0.580000] 2 uimage-fw partitions found on MTD device firmware
[    0.590000] 0x000000050000-0x000000168e3c : "kernel"
[    0.600000] 0x000000168e3c-0x000001000000 : "rootfs"
[    0.610000] mtd: device 5 (rootfs) set to be root filesystem
[    0.630000] 1 squashfs-split partitions found on MTD device rootfs
[    0.640000] 0x000000620000-0x000001000000 : "rootfs_data"

3.分区功能介绍

分区ID分区位置容量作用
u-boot0x000000000000-0x000000030000192KB引导程序,Bootloader
u-boot-env0x000000030000-0x00000004000064KBuboot的env存储,保存配置参数的分区
factory0x000000040000-0x00000005000064KBMT7688无线校准数据、MAC地址等参数
firmware0x000000050000-0x00000100000015.68MB固件分区
kernel0x000000050000-0x000000168e3c1123KB固件分区内的Linux内核分区,大小会根据内核编译配置不同而有所变化
rootfs0x000000168e3c-0x00000100000014MB固件分区内的文件系统分区,包含rootfs_rom(只读)和rootfs_data(可写)
rootfs_data0x000000620000-0x0000010000009MB固件分区内的可写文件系统分区,常用做jffs2

4.如何备份工厂配置、校准数据

root@OpenWrt:~# dd if=/dev/mtd2 of=/tmp/actory.bin
128+0 records in
128+0 records out
本文章由作者:佐须之男 整理编辑,原文地址: mt7628 mt7688 mtd分区介绍
本站的文章和资源来自互联网或者站长的原创,按照 CC BY -NC -SA 3.0 CN协议发布和共享,转载或引用本站文章应遵循相同协议。如果有侵犯版权的资 源请尽快联系站长,我们会在24h内删除有争议的资源。欢迎大家多多交流,期待共同学习进步。

相关推荐