Difference between revisions of "Orchard Firmware Developer's Guide"

From Studio Kousagi Wiki
Jump to: navigation, search
Line 12: Line 12:
 
# Download the [http://bunniefoo.com/orchard/orchard-pi-dev.img.gz RPi firmware image] (~2.5GiB).
 
# Download the [http://bunniefoo.com/orchard/orchard-pi-dev.img.gz RPi firmware image] (~2.5GiB).
 
# Image the downloaded firmware onto an SD card using the following Linux command:
 
# Image the downloaded firmware onto an SD card using the following Linux command:
  zcat orchard-pi-dev.img.gz | sudo dd of=/dev/sdX bs=1M
+
  zcat orchard-pi-dev.img.gz | sudo dd of=/dev/sdX bs=1M   # for SD cards mounted via USB adapters
 +
or
 +
zcat orchard-pi-dev.img.gz | sudo dd of=/dev/mmcblkX bs=1M  # for machines with directly accessible SD cards
 
Note that /dev/sdX is the device node of the SD card as mounted on your Linux system. If you don't know what we're talking about, be careful, because if you pick the wrong /dev/sdX node you'll end up destroying your local system boot disk.
 
Note that /dev/sdX is the device node of the SD card as mounted on your Linux system. If you don't know what we're talking about, be careful, because if you pick the wrong /dev/sdX node you'll end up destroying your local system boot disk.
 
# Insert card into RPi and boot.
 
# Insert card into RPi and boot.

Revision as of 08:09, 27 May 2015

Orchard Firmware Developer's Guide

For the sake of convenience, Orchard firmware development, including compilation, flashing, and manufacturing provisioning is all done with a single tool: A Raspberry Pi.

Recommended tools:

Quickstart

  1. Download the RPi firmware image (~2.5GiB).
  2. Image the downloaded firmware onto an SD card using the following Linux command:
zcat orchard-pi-dev.img.gz | sudo dd of=/dev/sdX bs=1M   # for SD cards mounted via USB adapters

or

zcat orchard-pi-dev.img.gz | sudo dd of=/dev/mmcblkX bs=1M  # for machines with directly accessible SD cards

Note that /dev/sdX is the device node of the SD card as mounted on your Linux system. If you don't know what we're talking about, be careful, because if you pick the wrong /dev/sdX node you'll end up destroying your local system boot disk.

  1. Insert card into RPi and boot.