Changes between Version 5 and Version 6 of ventana/bootloader


Ignore:
Timestamp:
08/09/2018 08:00:08 PM (6 years ago)
Author:
Tim Harvey
Comment:

move pre-built images from svn.gateworks.com to dev.gateworks.com

Legend:

Unmodified
Added
Removed
Modified
  • ventana/bootloader

    v5 v6  
    3535
    3636Pre-Built Bootloader:
    37  * [http://svn.gateworks.com/ventana/images/ Pre-Built Bootloader]
     37 * [http://dev.gateworks.com/ventana/images/ Pre-Built Bootloader]
    3838  * Installation instructions: [wiki:ventana/bootloader#UpdatingSPLandbootloaderviaJTAG JTAG Instructions]
    3939  * [wiki:ventana/SPL SPL] - the 'Secondary Program Loader' which is loaded and executed by the internal i.MX6 BOOT ROM
     
    208208make
    209209}}}
    210 5. Create a JTAG binary suitable for programming via the Gateworks JTAG dongle and {{{jtag_usbv4}}} software (Optional) using the [http://svn.gateworks.com/ventana/images/mkimage_jtag mkimage_jtag script]
     2105. Create a JTAG binary suitable for programming via the Gateworks JTAG dongle and {{{jtag_usbv4}}} software (Optional) using the [http://dev.gateworks.com/ventana/images/mkimage_jtag mkimage_jtag script]
    211211{{{#!bash
    212212./mkimage_jtag SPL u-boot.img > uboot_spl.bin
     
    279279You can use JTAG on boards with NAND flash to program the {{{u-boot_spl.bin}}} downloaded from the [wiki:ventana/bootloader#prebuilt pre-built] bootloaders or created by building the source above. This file contains both the {{{SPL}}} and the bootloader and thus both will be updated simultaneously.
    280280
    281 Using the Gateworks JTAG dongle and the Linux [http://svn.gateworks.com/jtag/linux/x86/jtag_usbv4 jtag_usbv4] software, you can update the entire bootloader via JTAG from a Linux PC:
     281Using the Gateworks JTAG dongle and the Linux [http://dev.gateworks.com/jtag/linux/x86/jtag_usbv4 jtag_usbv4] software, you can update the entire bootloader via JTAG from a Linux PC:
    282282{{{#!bash
    283283sudo rmmod ftdi_sio
     
    302302{{{#!bash
    303303cd /tmp
    304 wget http://svn.gateworks.com/ventana/images/SPL
     304wget http://dev.gateworks.com/ventana/images/SPL
    305305}}}
    3063063. execute {{{kobs-ng}}} with the following parameters
     
    326326 * Updating {{{u-boot.img}}} from u-boot itself:
    327327{{{#!bash
    328 wget http://svn.gateworks.com/ventana/images/u-boot.img
     328wget http://dev.gateworks.com/ventana/images/u-boot.img
    329329tftp ${loadaddr} ventana/u-boot.img && \
    330330  nand erase 0xe00000 0x200000 && \
     
    333333 * Updating {{{u-boot.img}}} from Linux via {{{mtd-utils}}}:
    334334{{{#!bash
    335 wget http://svn.gateworks.com/ventana/images/u-boot.img
     335wget http://dev.gateworks.com/ventana/images/u-boot.img
    336336flash_erase /dev/mtd0 0xe00000 0 && \
    337337  nandwrite --start=0xe00000 --pad /dev/mtd0 u-boot.img