博客
关于我
MT7628学习笔记(11)——分区信息查询及数据备份
阅读量:172 次
发布时间:2019-02-28

本文共 1669 字,大约阅读时间需要 5 分钟。

1. 查询FLASH上的分区信息

通过查看/proc/mtd文件,可以获取设备上的分区信息。以下是示例输出:

root@Hiwooya:~# cat /proc/mtdmtd0: 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. 分区释义

启动LOG中的信息如下:

[    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"

以下是各分区的详细信息:

分区名称 分区范围 容量 作用
u-boot 0x000000000000-0x000000030000 192KB 引导程序,Bootloader
u-boot-env 0x000000030000-0x000000040000 64KB uboot的env存储,配置参数
factory 0x000000040000-0x000000050000 64KB MT7688校准、MAC地址等参数
firmware 0x000000050000-0x000001000000 15.68MB 固件分区
kernel 0x000000050000-0x000000168e3c 1123KB 固件分区内的Linux内核分区
rootfs 0x000000168e3c-0x000001000000 14MB 固件分区内的文件系统分区
rootfs_data 0x000000620000-0x000001000000 9MB 固件分区内的可写文件系统分区

3. 拷贝factory(无线校准)数据到www文件夹

执行以下命令将factory分区数据复制到指定目录:

root@Hiwooya:~# dd if=/dev/mtd2 of=/www/factory.bin128+0 records in128+0 records outroot@Hiwooya:~# ls -l /www/factory.bin

完成后,可以通过FTP或SCP将文件传输到目标服务器。

以上操作完成后,factory分区的数据即可通过网络访问。

转载地址:http://zyzi.baihongyu.com/

你可能感兴趣的文章
npm install 报错 ERR_SOCKET_TIMEOUT 的解决方法
查看>>
npm install 报错 Failed to connect to github.com port 443 的解决方法
查看>>
npm install 报错 fatal: unable to connect to github.com 的解决方法
查看>>
npm install 报错 no such file or directory 的解决方法
查看>>
npm install 权限问题
查看>>
npm install报错,证书验证失败unable to get local issuer certificate
查看>>
npm install无法生成node_modules的解决方法
查看>>
npm install的--save和--save-dev使用说明
查看>>
npm node pm2相关问题
查看>>
npm run build 失败Compiler server unexpectedly exited with code: null and signal: SIGBUS
查看>>
npm run build报Cannot find module错误的解决方法
查看>>
npm run build部署到云服务器中的Nginx(图文配置)
查看>>
npm run dev 和npm dev、npm run start和npm start、npm run serve和npm serve等的区别
查看>>
npm run dev 报错PS ‘vite‘ 不是内部或外部命令,也不是可运行的程序或批处理文件。
查看>>
npm scripts 使用指南
查看>>
npm should be run outside of the node repl, in your normal shell
查看>>
npm start运行了什么
查看>>
npm WARN deprecated core-js@2.6.12 core-js@<3.3 is no longer maintained and not recommended for usa
查看>>
npm 下载依赖慢的解决方案(亲测有效)
查看>>
npm 安装依赖过程中报错:Error: Can‘t find Python executable “python“, you can set the PYTHON env variable
查看>>