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

Difference between revisions of "Rockpi4/partitions/pt BR"

(Created page with "{{rockpi4_header}} {{Languages|rockpi4/partitions}} ROCK Pi 4 > Partitions A imagem oficial do ROCK Pi 4 usa a tabela de partiçõ...")
 
 
Line 9: Line 9:
  
 
<pre>
 
<pre>
| Part Number | Offset | Nome    | Descrição               |
+
| Part Number | Offset | Nome    | Descrição                 |
 
| ----------- | ------ | ------- | -------------------------- |
 
| ----------- | ------ | ------- | -------------------------- |
 
| 1          | 32KB  | loader1 | First stage loader        |
 
| 1          | 32KB  | loader1 | First stage loader        |

Latest revision as of 03:31, 22 June 2019

    ROCK Pi 4 >  Partitions

A imagem oficial do ROCK Pi 4 usa a tabela de partições GPT para Android e Linux.

Partições de imagens oficiais do Linux

| Part Number | Offset | Nome    | Descrição                  |
| ----------- | ------ | ------- | -------------------------- |
| 1           | 32KB   | loader1 | First stage loader         |
| 2           | 8MB    | loader2 | U-boot image               |
| 3           | 12MB   | trust   | ATF                        |
| 4           | 16MB   | boot    | Kernel partition, bootable |
| 5           | 128MB  | rootfs  | Rootfs                     |


Ao gravar usando Offset dd

   dd if=idbloader.img   of=/dev/sdx seek=64
   dd if=uboot.img       of=/dev/sdx seek=16384 
   dd if=trust.img       of=/dev/sdx seek=24576 
   dd if=boot.img        of=/dev/sdx seek=32768 
   dd if=rootfs.img      of=/dev/sdx seek=262144