| 80 | Instructions for creating Ventana JTAG images from NAND flash images: |
| 81 | {{{#!bash |
| 82 | # fetch mkimage_jtag script and make it executable |
| 83 | wget -N https://dev.gateworks.com/jtag/mkimage_jtag |
| 84 | chmod +x mkimage_jtag |
| 85 | # fetch boot firmware (SPL and U-Boot) |
| 86 | wget -N https://dev.gateworks.com/ventana/images/SPL |
| 87 | wget -N https://dev.gateworks.com/ventana/images/u-boot.img |
| 88 | # create an image for 'normal' flash geometry (most boards including newer 2GiB boards) |
| 89 | ./mkimage_jtag SPL u-boot.img gateworks_ventana-squashfs-nand.ubi > ventana_normal.bin |
| 90 | # create an image for 'large' flash geometry (some older 2GiB boards) |
| 91 | ./mkimage_jtag SPL u-boot.img gateworks_ventana-large-squashfs-nand.ubi> ventana_large.bin |
| 92 | }}} |
| 93 | |
| 94 | |