If the bootloader has been erased from the storage media (or written with an invalid image) and the target does not boot, you can boot the target from the USB device port.

Boot U-Boot in USB debug mode

Requirements

  • Linux host computer.

  • Root/administrator permissions on your development computer

For the ConnectCore 6UL SBC Express:

  • One micro USB cable for the USB device port

  • Another micro USB cable for console/power

For the ConnectCore 6UL SBC Pro:

  • One micro USB cable

  • One USB serial console cable

Instructions

  1. Download the U-Boot bootloader binary image file from https://ftp1.digi.com/support/digiembeddedyocto/3.0/r4/images/ccimx6ulstarter/fb/.

    See U-Boot files by variant to verify which U-Boot binary you need.
  2. Download the latest Universal Update Utility (UUU) tool, a software tool from NXP.

  3. Place the uuu executable in a directory in your PATH, such as /usr/bin.

  4. Install udev rules to allow any user to run uuu to access the USB port:

    ~$ sudo sh -c "uuu -udev >> /etc/udev/rules.d/99-uuu.rules"
    ~$ sudo udevadm control --reload-rules
  5. Connect one micro USB cable to the USB device port of the board (bottom side, under the USB host connectors) and the other end to the development computer.

  6. Connect the other micro USB cable to the CONSOLE/POWER connector.

  7. Close the BOOT MODE jumper (J19) near the CONSOLE/POWER micro USB connector.

    USB mode jumper
  8. Open a serial terminal at 115200/8/n/1.

  9. Power up the board.

  10. On the host computer, run the uuu tool with the U-Boot file to boot as parameter. For example:

    ~$ uuu </path/to/u-boot-file>

The serial terminal shows the device starting U-Boot.

  1. Download the U-Boot bootloader binary image file from https://ftp1.digi.com/support/digiembeddedyocto/3.0/r4/images/ccimx6ulsbc/x11/.

    See U-Boot files by variant to verify which U-Boot binary you need.
  2. Download the latest Universal Update Utility (UUU) tool, a software tool from NXP.

  3. Place the uuu executable in a directory in your PATH, such as /usr/bin.

  4. Install udev rules to allow any user to run uuu to access the USB port:

    ~$ sudo sh -c "uuu -udev >> /etc/udev/rules.d/99-uuu.rules"
    ~$ sudo udevadm control --reload-rules
  5. Connect the USB serial cable to the CONSOLE connector on the board and to your host computer.

  6. Connect the micro USB cable to the USB device port of the board (bottom side, under the USB host connectors).

  7. Close the BOOT jumper near the CONSOLE connector.

    USB mode location
  8. Open a serial terminal at 115200/8/n/1.

  9. Power up the board.

  10. On the host computer, run the uuu tool with the U-Boot file to boot as parameter. For example:

    ~$ uuu </path/to/u-boot-file>

The serial terminal shows the device starting U-Boot.

Instructions for closed devices

With TrustFence enabled, signed U-Boot images are created. To boot signed U-Boot images on a closed device, you must configure the imx_usb application provided with Digi Embedded Yocto as follows:

  • Modify the mx6_usb_work.conf configuration under /opt/dey/3.0-r4/ccimx6ulsbc/sysroots/x86_64-deysdk-linux/etc/imx-loader.d/, adding the following lines:

    /path/to/u-boot.imx:dcd
    /path/to/u-boot-usb-signed.imx:no_clear_boot_data,jump header

    Replace /path/to/u-boot.imx with the path to the unsigned U-Boot image and /path/to/u-boot-usb-signed.imx with the path to the signed USB bootable image.

  • Execute the imx_usb tool without a U-Boot image argument:

    ~$ sudo /opt/dey/3.0-r4/ccimx6ulsbc/sysroots/x86_64-deysdk-linux/usr/bin/imx_usb

If you installed the Digi Embedded Yocto SDK in a location other than the default location, you must use the -c parameter to specify the directory containing the configuration files.

Use the following syntax, replacing ${SDK_FOLDER} with the name of the non-standard folder where the SDK was installed:

${SDK_FOLDER}/sysroots/x86_64-deysdk-linux/usr/bin/imx_usb -c ${SDK_FOLDER}/sysroots/x86_64-deysdk-linux/etc/imx-loader.d/

Update U-Boot in the NAND

Once U-Boot is running, you can use it to update the bootloader in the NAND:

Update bootloader from Ethernet (TFTP)

  1. Place the U-Boot binary inside your host computer TFTP exported folder.

  2. On the target, configure your network settings (IP of the device, IP of the host/server):

    => setenv ipaddr <your-ip>
    => setenv serverip <server-ip>
  3. Connect an Ethernet cable to the Ethernet port.

  4. Run the following command to update U-Boot into the NAND:

    => update uboot tftp <u-boot-filename>.imx
  5. Change the boot source configuration to boot from the internal NAND.

    To do so remove BOOT MODE jumper.

  6. Power-cycle the board. The target now boots from the NAND.

Update bootloader from microSD card

  1. Place the U-Boot binary inside a FAT-formatted microSD card.

  2. Insert the microSD card in the board.

  3. Run the following command to update U-Boot into the NAND:

    => update uboot mmc 0 fat <u-boot-filename>.imx
  4. Change the boot source configuration to boot from the internal NAND.

    To do so remove BOOT MODE jumper.

  5. Power-cycle the board. The target now boots from the NAND.