XiaomiRouter自学之路(03-官方系统熟悉及备份)
软硬件环境已经搭建好了,先来熟悉一下官方自带的系统,对后面的开发应该会有很大的帮助。另外为了避免路由器研发过程失败变砖,连路由器都用不了就有点可惜了,所以我们需要先把原本的固件进行备份。
1.官方系统熟悉
在开始熟悉官方系统之前,如果你以前都没有过刷机等经历,建议先查看玩转小米mini路由这篇文章,里面介绍很多基础性的刷机等知识,可以先去把里面的测试都跟着做一遍。
虽然对于网上那些使用ssh登录、安装软件包什么的,对于开发驱动人员来说没什么用途,但感兴趣的还是可以熟悉下,也很有成就感的。
接下来我们将买回来的串口线与路由器连接好,注意TX/RX的连接正确性,然后将SecureCRT中对于串口的波特率设置成115200,路由器上电即可看到路由器的启动信息了,大概如下:
U-Boot 1.1.3 (Jan 28 2016 - 19:02:24)
Board: Ralink APSoC DRAM: 128 MB
Power on memory test. Memory size= 128 MB...OK!
...
Please choose the operation:
1: Load system code to SDRAM via TFTP.
2: Load system code then write to Flash via TFTP.
3: Boot system code via Flash (default).
4: Entr boot command line interface.
7: Load Boot Loader code then write to Flash via Serial.
9: Load Boot Loader code then write to Flash via TFTP.
3: System Boot system code via Flash.
Try to boot OS1
...
No initrd
## Transferring control to Linux (at address 80000000) ...
## Giving linux memsize in MB, 128
Starting kernel ...
LINUX started...
THIS IS ASIC
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 2.6.36 (jenkins@szy-rommaker) (gcc version 4.6.3 20120201 (prerelease) (Linaro GCC 4.6-2012.02) ) #1 Tue Jun 7 18:35:23 CST 2016
...
[ 64.380000] xqfp:extend init success!
[ 64.390000] xqfp: module init success!
rcS S boot: INFO: rcS S boot timing 56 seconds.
Wed Jun 8 02:36:23 CST 2016 INFO: rcS S boot timing 56 seconds.
rcS S boot: system type(R1CM/2): SQUASH/3
Wed Jun 8 02:36:23 CST 2016 system type(R1CM/2): SQUASH/3
rcS S boot: ROOTFS: /dev/root on / type squashfs (ro,relatime)
Wed Jun 8 02:36:23 CST 2016 ROOTFS: /dev/root on / type squashfs (ro,relatime)
mknod: /dev/gpio: File exists
Wed Jun 8 02:36:30 CST 2016 boot_check[5726]: Booting up finished.
开机完成后就发现一个大问题,提示启动完成了,但是console按下Enter键竟然没反应,没办法进入命令行模式,如果你有做上面的实验就会发现在ssh模式下,是可以进入命令行模式的。
所以如果想在console下进入命令行,需要先使用ssh登陆命令行,然后修改里面的uart_en这个值为1,这个值为是否开放console的标志,具体指令如下:
login as: root
root@192.168.31.1's password:
BusyBox v1.19.4 (2016-06-07 18:13:55 CST) built-in shell (ash)
Enter 'help' for a list of built-in commands.
-----------------------------------------------------
Welcome to XiaoQiang!
-----------------------------------------------------
$$$$$$\ $$$$$$$\ $$$$$$$$\ $$\ $$\ $$$$$$\ $$\ $$\ $$$$$$\ $$\ $$\
$$ __$$\ $$ __$$\ $$ _____| \$$\ $$ |$$ __$$\ $$ | $$ | $$ __$$\ $$ | $$ |
$$ / $$ |$$ | $$ |$$ | \$$\ $$ / $$ / $$ |$$ | $$ | $$ / $$ |$$ |$$ /
$$$$$$$$ |$$$$$$$ |$$$$$\ \$$$$ / $$ | $$ |$$ | $$ | $$ | $$ |$$$$$ /
$$ __$$ |$$ __$$< $$ __| \$$ / $$ | $$ |$$ | $$ | $$ | $$ |$$ $$<
$$ | $$ |$$ | $$ |$$ | $$ | $$ | $$ |$$ | $$ | $$ | $$ |$$ |\$$\
$$ | $$ |$$ | $$ |$$$$$$$$\ $$ | $$$$$$ |\$$$$$$ | $$$$$$ |$$ | \$$\
\__| \__|\__| \__|\________| \__| \______/ \______/ \______/ \__| \__|
root@XiaoQiang:/# ls
bin dev extdisks mnt overlay readonly root sys userdisk var
data etc lib opt proc rom sbin tmp usr www
root@XiaoQiang:/# nvram get uart_en
root@XiaoQiang:/# nvram set uart_en=1
root@XiaoQiang:/# nvram commit
root@XiaoQiang:/# reboot
root@XiaoQiang:/#
先使用玩转小米mini路由教程使用ssh的方式登入,然后进入命令行修改uart_en=1,在commit提交即可,这时候rrboot后,我们发现console在启动完成后就可以进入命令行就行操作了。
我们也会发现在启动的过程,没办法在u-boot阶段停止,因为xiaomi将等待时间设置为0了,这也是在第一篇项目背景里面提到的买完小米路由器3又买小米路由器mini的原因了,可以通过spi flash烧录器的方法进行更新u-boot了。
对于原系统的熟悉就由读者自行完成了,xiaomi使用的也是开源的Openwrt系统,下面就开始使用到烧录器了,请接着往下看。
2.做好备份是关键
1.整体备份
为了避免变砖,其实最直接的就是把小米路由器mini的spi flash拆下来,放在烧录器上,然后将全部的数据读出来,保存成.bin文件即可。
如下图所示,接入spi flash后,先点击读出芯片,再点击保存。
后面如果启动不了,就把保存的这份.bin重新写入到spi flash中即可。
如下图所示,接入spi flash后,先点击擦除芯片,再点击打开,把保存的.bin选中,最后点击写入芯片。
2.分区备份
上面这种做法是将全部的数据进行一次性保存,但我觉得有必要进行各个模块固件的保存,当路由器启动后,我们进入console进行查看系统的mdt分区,如下:
root@XiaoQiang:# cat /proc/mtd
dev: size erasesize name
mtd0: 01000000 00010000 "ALL"
mtd1: 00030000 00010000 "Bootloader"
mtd2: 00010000 00010000 "Config"
mtd3: 00010000 00010000 "Factory"
mtd4: 00c80000 00010000 "OS1"
mtd5: 00b127d7 00010000 "rootfs"
mtd6: 00200000 00010000 "OS2"
mtd7: 00100000 00010000 "overlay"
mtd8: 00010000 00010000 "crash"
mtd9: 00010000 00010000 "reserved"
mtd10: 00010000 00010000 "Bdata"
我们可以看到spi里面的数据其实是分成很多块的,所以接下来我们将没一块mtd分区都进行备份
将11个mtd全部备份起来
这边我们使用U盘进行存储,将U盘插入后,可以检测到sdb4这个挂载盘,进入sdb2,使用dd命令就行备份,如下所示。
root@XiaoQiang:/extdisks/sdb4# dd if=/dev/mtd1 of=/extdisks/sdb4/Bootloader.bin
384+0 records in
384+0 records out
root@XiaoQiang:/extdisks/sdb4# dd if=/dev/mtd2 of=/extdisks/sdb4/Config.bin
128+0 records in
128+0 records out
root@XiaoQiang:/extdisks/sdb4# dd if=/dev/mtd3 of=/extdisks/sdb4/Factory.bin
128+0 records in
128+0 records out
root@XiaoQiang:/extdisks/sdb4# dd if=/dev/mtd4 of=/extdisks/sdb4/OS1.bin
25600+0 records in
25600+0 records out
root@XiaoQiang:/extdisks/sdb4# dd if=/dev/mtd5 of=/extdisks/sdb4/rootfs.bin
22675+1 records in
22675+1 records out
root@XiaoQiang:/extdisks/sdb4# dd if=/dev/mtd6 of=/extdisks/sdb4/OS2.bin
4096+0 records in
4096+0 records out
root@XiaoQiang:/extdisks/sdb4# dd if=/dev/mtd7 of=/extdisks/sdb4/overlay.bin
2048+0 records in
2048+0 records out
root@XiaoQiang:/extdisks/sdb4# dd if=/dev/mtd8 of=/extdisks/sdb4/crash.bin
128+0 records in
128+0 records out
root@XiaoQiang:/extdisks/sdb4# dd if=/dev/mtd9 of=/extdisks/sdb4/reserved.bin
128+0 records in
128+0 records out
root@XiaoQiang:/extdisks/sdb4# dd if=/dev/mtd10 of=/extdisks/sdb4/Bdata.bin
128+0 records in
128+0 records out
备份完毕后,在U盘里面就可以看到如下文件了。
root@XiaoQiang:/extdisks/sdb4# ls
ALL.bin
Bdata.bin
Bootloader.bin
Config.bin
Factory.bin
OS1.bin
OS2.bin
crash.bin
overlay.bin
reserved.bin
rootfs.bin
这边我虽然还不知道备份每个partition是否有用,但还是先备份,以便以后用到。
官方系统熟悉及备份的分析就到这边,有感悟时会持续会更新。
注:以上内容都是本人在学习过程积累的一些心得,难免会有参考到其他文章的一些知识,如有侵权,请及时通知我,我将及时删除或标注内容出处,如有错误之处也请指出,进行探讨学习。文章只是起一个引导作用,详细的数据解析内容还请查看XiaomiRouter相关教程,感谢您的查阅。