I want to flash the bitstream out of uboot, but I see that byte order in RAM is different:
zynq-uboot> md 0x2000000
02000020: bb000000 44002211 ffffffff ffffffff .....".D........
02000030: 665599aa 00000020 01200230 00000000 ..Uf ...0. .....
…
zynq-uboot> md 0x2100000
02100020: 000000bb 11220044 ffffffff ffffffff ....D.".........
02100030: aa995566 20000000 30022001 00000000 fU..... . .0....
…
So I get the bitstream via tftpboot and want to flash it, but I need a reverse byte order.
Is there any way to convert this, best during creation?