Difference between revisions of "RockpiN10/partitions"
(Created page with "{{rockpiN10_header}} {{Languages|rockpiN10/partitions}} ROCK Pi N10 > Partitions The official ROCK Pi N10 image uses GPT parti...") |
|||
Line 11: | Line 11: | ||
! Part Number || Offset || Name || Description | ! Part Number || Offset || Name || Description | ||
|- | |- | ||
− | | || 32KB || loader1 || First stage loader | + | |(raw) || 32KB || loader1 || First stage loader |
|- | |- | ||
− | | || 8MB || loader2 || U-boot image | + | |(raw) || 8MB || loader2 || U-boot image |
|- | |- | ||
− | | || 12MB || trust || ATF | + | |(raw) || 12MB || trust || ATF |
|- | |- | ||
| 1 || 16MB || boot ||Kernel partition, bootable | | 1 || 16MB || boot ||Kernel partition, bootable |
Latest revision as of 05:55, 10 April 2020
ROCK Pi N10 > Partitions
The official ROCK Pi N10 image uses GPT partition table for Linux.
Official Linux image partitions
Part Number | Offset | Name | Description |
---|---|---|---|
(raw) | 32KB | loader1 | First stage loader |
(raw) | 8MB | loader2 | U-boot image |
(raw) | 12MB | trust | ATF |
1 | 16MB | boot | Kernel partition, bootable |
2 | 528MB | rootfs | Rootfs |
Offset when writing using 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=1081344