http://nano.lichee.pro/build_sys/onekey.html
镜像下载地址:
https://pan.baidu.com/s/1smzuGS9
本站下载(需要解压): Nano_flash_800480.7z
这个固件的默认串口是 UART0(PE0, PE1)
从荔枝派 16M flash 镜像 Nano_flash_800480.bin 抽出对应的文件:
dd if=Nano_flash_800480.bin of=u-boot.bin bs=1 skip=$((0x0)) count=$((0x100000))
dd if=Nano_flash_800480.bin of=dtb.bin bs=1 skip=$((0x100000)) count=$((0x4000))
dd if=Nano_flash_800480.bin of=kernel.bin bs=1 skip=$((0x110000)) count=$((0x400000))
dd if=Nano_flash_800480.bin of=jffs2.bin bs=1 skip=$((0x510000))
Windows sunxi-fel 烧录软件下载: https://whycan.cn/t_444.html
离线
离线
其他的烧录指令:
sunxi-fel.exe -p spiflash-write 0x0 u-boot.bin
sunxi-fel.exe -p spiflash-write 0x100000 dtb.bin
sunxi-fel.exe -p spiflash-write 0x110000 kernel.bin
sunxi-fel.exe -p spiflash-write 0x510000 jffs2.bin
离线
能放个v3s的?
离线
能放个v3s的?
类似从荔枝派 32M flash 镜像 flashimg.bin 抽出对应的文件:
dd if=flashimg.bin of=u-boot.bin bs=1 skip=$((0x0)) count=$((0x100000))
dd if=flashimg.bin of=dtb.bin bs=1 skip=$((0x100000)) count=$((0x4000))
dd if=flashimg.bin of=kernel.bin bs=1 skip=$((0x110000)) count=$((0x400000))
dd if=flashimg.bin of=jffs2.bin bs=1 skip=$((0x510000))
离线