I have an embedded system that I want to read its nand flash and write it back to another system's nand flash. I have access to root of Linux system which is running on device. The system is based on AM3874 and I have access to its JTAG too. My questions are:
1- Can I do this by login to system as root and writing nand flash data to a SD card and then one new system write it back to nand flash?
2- If the answer to above question is yes, what is the procedures and what software I need?
3- If the answer is no, Can I use JTAG interface to read NAND Flash and writing it to another device?
You might be able to use the
dd
command in Linux to read the device on the first system. On the target, you'll want to unmount any filesystems on the NAND flash before writing it out. Can you run entirely from a ramfs or a filesystem on the SD card? If you're able to unmount it,dd
should allow you to write the contents back out.If possible, you might want to unmount the NAND on the source system before copying it with
dd
, so you're not copying a live filesystem.Do you just need to copy the files? If so, would creating a tarball from the first device and unpacking it on the other be an option?