Editing Partitions
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 91: | Line 91: | ||
|} | |} | ||
=== Partition Code === | === Partition Code === | ||
The partition code uniquely identifies the partition to its function. | The partition code uniquely identifies the partition to its function. It is related to [[SceKernelModulemgr#Partition Code]] but the meaning of the code is still unknown. | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
! Code | ! Code | ||
! Name | |||
! Location Seen | |||
! Description | ! Description | ||
|- | |||
| 0x0 | |||
| | |||
| | |||
| empty partition | |||
|- | |||
| 0x1 | |||
| | |||
| Internal | |||
| first eMMC partition, some data, [[IdStorage]]? | |||
|- | |||
| 0x2 | |||
| | |||
| Internal | |||
| [[SLB2]] [[Boot Sequence|Boot loaders]] | |||
|- | |||
| 0x3 | |||
| os0 | |||
| Internal | |||
| Main OS partition, contains kernel [[Libraries#Kernel|libraries]] | |||
|- | |||
| 0x4 | |||
| vs0 | |||
| Internal | |||
| Contains [[Libraries#System Applications|system applications]] & libraries | |||
|- | |||
| 0x5 | |||
| vd0 | |||
| Internal | |||
| [[Registry]] and error history | |||
|- | |- | ||
| 0x6 | | 0x6 | ||
| | | tm0 | ||
| Internal | |||
| Unknown, has an empty folder <code>nphome</code> | |||
|- | |- | ||
| 0x7 | | 0x7 | ||
| | | ur0 | ||
| Internal | |||
| User resources, [[LiveArea]] cache, database, & other stuff | |||
|- | |||
| 0x8 | |||
| ux0 | |||
| Memory Card | |||
| [[Memory Card]] | |||
|- | |||
| 0x9 | |||
| gro0 | |||
| Game Card | |||
| [[Game Card]] | |||
|- | |||
| 0xA | |||
| grw0 | |||
| Game Card | |||
| [[Game Card]] writable area | |||
|- | |||
| 0xB | |||
| ud0 | |||
| Internal | |||
| [[Updater]] copied here before reboot | |||
|- | |||
| 0xC | |||
| sa0 | |||
| Internal | |||
| Dictionary and font data | |||
|- | |||
| 0xD | |||
| | |||
| External | |||
| Some data on [[Memory Card]] & [[Game Card]] | |||
|- | |- | ||
| | | 0xE | ||
| | | pd0 | ||
| Internal | |||
| [[Welcome Park]] and welcome video | |||
|} | |} | ||
== | =================================================== | ||
Updated Table | |||
=================================================== | |||
{| class="wikitable" | {| class="wikitable" | ||
! Name | ! Name | ||
! | ! Size | ||
! Code | ! Code | ||
! | ! Format | ||
! | ! Location | ||
! Description | ! Description | ||
|- | |- | ||
Line 148: | Line 212: | ||
|- | |- | ||
| [[Files_on_the_PS_Vita#os0|os0]] | | [[Files_on_the_PS_Vita#os0|os0]] | ||
| 15. | | 15.96 MB | ||
| 0x3 | | 0x3 | ||
| [https://en.wikipedia.org/wiki/File_Allocation_Table#FAT16 FAT16] | | [https://en.wikipedia.org/wiki/File_Allocation_Table#FAT16 FAT16] | ||
Line 190: | Line 254: | ||
|- | |- | ||
| [[Files_on_the_PS_Vita#ur0|ur0]] | | [[Files_on_the_PS_Vita#ur0|ur0]] | ||
| | | 2.55 GB | ||
| 0x7 | | 0x7 | ||
| [https://en.wikipedia.org/wiki/ExFAT exFAT] | | [https://en.wikipedia.org/wiki/ExFAT exFAT] | ||
Line 200: | Line 264: | ||
| 0x8 | | 0x8 | ||
| [https://en.wikipedia.org/wiki/ExFAT exFAT] | | [https://en.wikipedia.org/wiki/ExFAT exFAT] | ||
| | | | ||
| | | Memory Card | ||
|- | |- | ||
| [[Files_on_the_PS_Vita#vd0|vd0]] | | [[Files_on_the_PS_Vita#vd0|vd0]] | ||
Line 221: | Line 285: | ||
| 0x9 | | 0x9 | ||
| | | | ||
| [[ | | [[Media#PS_Vita_Gamecards]] | ||
| Read-Only partition of the Game Card | | Read-Only partition of the Game Card | ||
|- | |- | ||
Line 228: | Line 292: | ||
| 0xA | | 0xA | ||
| | | | ||
| [[ | | [[Media#PS_Vita_Gamecards]] | ||
| Read-Write partition of the game card if supported (for storing save games, patches and DLC of the game to cartridge). | | Read-Write partition of the game card if supported (for storing save games, patches and DLC of the game to cartridge). | ||
|} | |} | ||
=== Partition Type === | |||
The partition type code indicates the file system used or if there is no file system (for example, in the case of a [[SLB2]] archive). | |||
{| class="wikitable" | |||
|- | |||
! Code | |||
! Description | |||
|- | |||
| 0x6 | |||
| FAT16 | |||
|- | |||
| 0x7 | |||
| exFAT | |||
|- | |||
| 0xDA | |||
| Raw data | |||
|} | |||
=== Partition Active === | |||
Some partitions (specifically <code>os0</code> and the boot loaders) have a shadow redundant copy. On update, only the inactive partition is written to and finally the active partition is swapped. For partitions that do not use this feature, this value is ignored. |