Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Linux or Windows PC

  • HummingBoard Ripple with RZ/G2LC SOM (HummingBoard RZ/G2LC)

  • 12V Power adapter (HummingBoard Ripple has wide range input of 7V-36V, it is recommended to use 12V power adapter).

  • Micro USB to USB for console, the HummingBoard Ripple has an onboard FTDI chip.

  • IP router or IP switch

  • USB Disk and SD Card

Boot Select

Before powering up the board for the first time it is recommended to select the boot media. In order to configure the boot media, please refer to HummingBoard RZ/G2LC Boot Select .

eMMC and SD connect to the same SDIO signals via MUX so we can’t have access to the SD & eMMC at the same time, select eMMC/SD by setting switch S3{6} → off : eMMC , on : SD

Booting from SD card and flash eMMC

The following shows how to set the switches on the boot source selector:

...

Info

Please Note:

The black rectangle represents the switch position.

...

  1. Downloading the Debian image
    Download the Debian image by running the following command on your Linux/Windows PC:

    Code Block
    wget https://solid-run-images.sos-de-fra-1.exo.io/RZG2LC/Debian/sr-rzg2lc-debian-bullseye-ea244d8-cli-rzg2lc-hummingboard.img.xz
  2. Writing the image to the SD card and USB Disk
    Use the following commands for writing the image to an SD card:

    Code Block
    xz -dc sr-rzg2lc-debian-bullseye-ea244d8-cli-rzg2lc-hummingboard.img.xz | dd of=/dev/sdX bs=4k conv=fdatasync 
    • For more information, please visit Flashing an SD Card .

    • Note:Plug a micro SD into your Linux PC, the following assumes that the micro USB-Disk / Micro-SD is added as /dev/sdX and all it’s partitions are unmounted.

  3. SD card insertion
    Please Insert the SD card into your device.

  4. USB Disk insertion
    Plug your USB device into the lower USB port

  5. Power connection
    Connect your power adaptor to the DC jack, and then connect the adaptor to mains supply.

  6. Power On
    Hold on the On/Off Power button - SW1 (as shown in the figure below)

  7. Set U-Boot configuration
    Press any key to stop the device in U-Boot when you see the U_Boot counter and run the commands below

    Code Block
    setenv bootargs 'root=/dev/sda1 rootwait'; mmc dev 0; fatload mmc 0:1 0x48080000 Image; fatload mmc 0:1 0x48000000 rzg2lc-hummingboard.dtb;
  8. Enable eMMC
    set the dip switch S3 to enable the eMMC -> S3 = {1-5:N/C, 6:off}
    Note: eMMC and SD connect to the same SDIO signals via MUX so we can’t have access to the SD & eMMC at the same time…

  9. Boot and loading Debian from USB Disk
    run the U-Boot command below to boot

    Code Block
    booti 0x48080000 - 0x48000000
  10. Serial Connection
    Please insert the micro USB into your device, then you can refer to Serial Connection for installing necessary serial connection software in Linux/Windows.
    Once you installed the necessary serial connection software, you should be able to see the following:

  • In order to be able to log in , please insert “debian” as a username and password as follows:

11. Install Debian on eMMC
run the commands below to install the Debina & flash the eMMC

Code Block
wget -O /tmp/debian.img.xz  https://solid-run-images.sos-de-fra-1.exo.io/RZG2LC/Debian/sr-rzg2lc-debian-bullseye-ea244d8-cli-rzg2lc-hummingboard.img.xz
unxz /tmp/debian.img.xz | sudo dd of=/dev/mmcblk0 conv=sync

12. Booting from eMMC
configure the boot media to boot from eMMC refering to HummingBoard RZ/G2LC Boot Select and then do reset.

It should load full Debian image from eMMC (SD & USB can be removed)

More Features

Internet

Connect an Ethernet cable to your HummingBoard Pulse (for internet access during boot-up).
Models HummingBoard with WiFi, can be connected via WiFi or wired Ethernet.

...