Hi, I would like to add support for this travel router. Got the itch of running these fun powerful openwrt devices after purchasing a glinet router and tinkering with it. Purchased this router from Amazon for $20usd. Runs on a custom LEDE 17.01 kernel 4.4.198. I was provided the original SDK by the manufacture and have gained telnet access. (thanks Helen from yinuo-link)
I am a beginner so please excuse me if I left out anything. This might be over my head after reading the adding new device section, but at least I'll give it a shot.
Use the appropriate commands in OpenWrt to dump the flash content to a file. For example, to dump the entire flash to a file named flash_dump.bin, you can use the dd command:
dd if=/dev/mtd0 of=/tmp/flash_dump_00.bin
repeat the commend for other flash partitions, change the source flash partition name (mtd1, mtd2, etc.) and destinations as (flash_dump_01.bin, flash_dump_02.bin, etc.).
N.B:
for NAND; you may change ‘mtd’ to ‘mtdblock’:
dd if=/dev/mtdblock0 of=/tmp/flash_dump_00.bin
is this what you mean by dumping the flash partitions?