Please enable javascript, or click here to visit my ecommerce web site powered by Shopify.
Jump to: navigation, search

Difference between revisions of "Rock/SD images"

(Add OS X image setup instructions)
(Windows: Improve english)
Line 12: Line 12:
  
 
=== Windows ===
 
=== Windows ===
There are two methods to write the image to sdcard. One is Use Win32DiskImager and another is Use tools(SD_Firmware_Tool) providered by rockchip.
+
There are two methods to write the image to SD card on Windows:
And which should to be used ,please refer to the readme file contained in the image zip.
+
# Use Win32DiskImager application
 +
# Use the SD_Firmware_Tool provided by Rockchip.
  
Before beginning, we should prepare a high quality sdcard with a storage volume  large than  8GB, and a sdcard reader.
+
See the readme in the individual image zip file for additional information on which tool to use.
  
Note:Poor quality sdcard will result in the failure of boot.
+
Before beginning, you will need to prepare a high quality SD card of at least 8GB.  A poor quality SD card will result in boot failures.
  
 
+
====Using Win32DiskImager ====
====Use Win32DiskImager ====
+
 
* Download the Win32DiskImager from [https://sourceforge.net/projects/win32diskimager/files/latest/download here].
 
* Download the Win32DiskImager from [https://sourceforge.net/projects/win32diskimager/files/latest/download here].
 
* Download the image from above link.
 
* Download the image from above link.
* Use the Win32DiskImager to '''Write''' the image into sdcard
+
* Use the Win32DiskImager to '''Write''' the image into SD card
  
 
[[File:Win32DiskImager.png]]
 
[[File:Win32DiskImager.png]]
  
  
====Use SD_Firmware_Tool====
+
====Using SD_Firmware_Tool====
  
 
1)Download  SD_Firmware_Tool  from  http://dl.radxa.com/rock/tools/windows/SD_Firmware_Tool.zip  
 
1)Download  SD_Firmware_Tool  from  http://dl.radxa.com/rock/tools/windows/SD_Firmware_Tool.zip  
Line 34: Line 34:
 
2)Unzip the file and Run the SD_Firmware_Tool.exe under SD_Firmware_Tool_v1.43 directory
 
2)Unzip the file and Run the SD_Firmware_Tool.exe under SD_Firmware_Tool_v1.43 directory
  
3) Select the sdcard you will flash  
+
3) Select the SD card you will flash  
  
 
[[File:sd_flash_2.png]]
 
[[File:sd_flash_2.png]]
  
4)restore the sdcard first.
+
4)restore the SD card first.
  
 
[[File:sd_flash_3.png]]
 
[[File:sd_flash_3.png]]
Line 47: Line 47:
  
  
* Power off the rock, insert the sdcard, then power on, the rock is booting with the images on SD card.
+
* Power off the rock, insert the SD card, then power on, the rock is booting with the images on SD card.
  
 
=== Linux ===
 
=== Linux ===

Revision as of 18:56, 12 January 2015

SD images for the rock are images booting and running on the uSD card completely. This is good when you want to try different OS or new version of the firmware without touching the nand flash.

Download

Check your hardware revision (Pro or Full/Lite), then download image "for SD card" from here

Write SD image to SD card

Windows

There are two methods to write the image to SD card on Windows:

  1. Use Win32DiskImager application
  2. Use the SD_Firmware_Tool provided by Rockchip.

See the readme in the individual image zip file for additional information on which tool to use.

Before beginning, you will need to prepare a high quality SD card of at least 8GB. A poor quality SD card will result in boot failures.

Using Win32DiskImager

  • Download the Win32DiskImager from here.
  • Download the image from above link.
  • Use the Win32DiskImager to Write the image into SD card

Win32DiskImager.png


Using SD_Firmware_Tool

1)Download SD_Firmware_Tool from http://dl.radxa.com/rock/tools/windows/SD_Firmware_Tool.zip

2)Unzip the file and Run the SD_Firmware_Tool.exe under SD_Firmware_Tool_v1.43 directory

3) Select the SD card you will flash

Sd flash 2.png

4)restore the SD card first.

Sd flash 3.png

5) Select "SD Boot " and right firmware, then click "Create" button

Sd flash 4.png


  • Power off the rock, insert the SD card, then power on, the rock is booting with the images on SD card.

Linux

We use dd in Linux to write the image:

   sudo dd if=radxa_rock_xxxx_sdcard.img of=/dev/sdx              # x is the disk name of your uSD card on your PC

Mac OS X

We use dd and Apple's diskutil utility to write the image:

  1. Run diskutil list to determine the drive associated the SD card (ex: /dev/disk4)
  2. Unmount the existing disk sudo diskutil unmountDisk /dev/diskX where X is the disk name of your uSD card on your PC
  3. Write the image file to the uSD card sudo dd if=radxa_rock_xxxx_sdcard.img of=/dev/diskX where X is the disk name of your uSD card on your PC