Eu tenho uma webcam Sunluxy 720p e preciso adaptar a configuração às minhas necessidades.
O sistema de arquivos /
é somente leitura.
Eu tenho acesso a u-boot
via cabo UART / USB.
Eu também posso conectar via telnet como root.
printenv
em u-boot
:
bootfile="uImage"
bootargs=mem=36M console=ttyAMA0,115200 root=/dev/mtdblock2 rootfstype=squashfs rw init=/sbin/init mtdparts=hi_sfc:1024k(boot),3072k(kernel),7168k(rootfs),5120k(system)
bootcmd=sf probe 0;sf read 0x82000000 0x100000 0x300000;bootm 0x82000000;
uname -r
Linux (none) 3.0.8 #30 Tue May 27 21:58:10 CST 2014 armv5tejl GNU/Linux
cat /proc/cpuinfo
Processor : ARM926EJ-S rev 5 (v5l)
BogoMIPS : 217.08
Features : swp half thumb fastmult edsp java
CPU implementer : 0x41
CPU architecture: 5TEJ
CPU variant : 0x0
CPU part : 0x926
CPU revision : 5
Hardware : hi3518
Revision : 0000
Serial : 0000000000000000
Este comando não pode encontrar o arquivo.
find / -name uImage
Comecei fazendo um backup ( /mnt/sda0
montado automaticamente se eu inserir um micro SD).
dd if=/dev/mtdblock0 of=/mnt/sda0/mtdblock0-sunluxy.img bs=65536
dd if=/dev/mtdblock1 of=/mnt/sda0/mtdblock1-sunluxy.img bs=65536
dd if=/dev/mtdblock2 of=/mnt/sda0/mtdblock2-sunluxy.img bs=65536
dd if=/dev/mtdblock3 of=/mnt/sda0/mtdblock3-sunluxy.img bs=65536
Eu comparei ( diff
) com dd if=/dev/mtdX
e dd if=/dev/mtdXro
. Não há diferença.
Com o comando file
(no meu Archlinux PC) eu tenho esta informação:
mtdblock0-sunluxy.img: data
mtdblock1-sunluxy.img: u-boot legacy uImage, Linux-3.0.8, Linux/ARM, OS Kernel Image (Not compressed), 2134796 bytes, Tue May 27 13:58:15 2014, Load Address: 0x80008000, Entry Point: 0x80008000, Header CRC: 0x62D4DC94, Data CRC: 0x6666C9A6
mtdblock2-sunluxy.img: Squashfs filesystem, little endian, version 4.0, 6336622 bytes, 513 inodes, blocksize: 65536 bytes, created: Wed Jun 4 11:12:34 2014
mtdblock3-sunluxy.img: Linux jffs2 filesystem data little endian
Na webcam, mtdblock3
está montado em /system
.
Eu acredito que é possível colocar o conteúdo de mtdblock2
e mtdblock3
no micro SD sem tocar nas partições de memória flash, mas não sei como.