Is there way to clone Linux booted by JTAG to SD card?
I want to boot from SD card, but unable to easily burn sd card image from my main PC with Xilinx tools.
Here is how I boot my Linux via JTAG:
<code>//XMD command:
connect arm hw
source fpga/ps7_init.tcl
ps7_post_config
ps7_init
fpga -f fpga/system_top.bit
after 1000
dow -data "image.ub" 0x6000000
after 1000
dow -data "system.dtb" 0x5A00000
after 1000
dow -data "uramdisk.image.gz" 0x1000000
after 1000
dow "u-boot.elf"
con
// From serial port connection:
zynq>bootm 0x6000000 0x1000000 0x5A00000</code>