Skip to content

Commit

Permalink
Move vbmeta partitions to the boot category
Browse files Browse the repository at this point in the history
  • Loading branch information
spike0en committed Jun 11, 2024
1 parent 9563f10 commit 7744748
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
## Categories

- The Stock OTA image files are categorized and archived in .7z format based on `boot`, `logical`, and `firmware` categories.
- The categorization mentioned below does not apply to the [2.5.5-Hotfix](https://github.com/spike0en/Pong_Archive/releases/tag/2.5.5-Hotfix) or releases made prior to it. Users should manually relocate the `dtbo` image from the firmware > boot category folder after extraction for these specific releases. This has been resolved in subsequent releases.
- The categorization mentioned below does not apply to the [2.5.5-Hotfix](https://github.com/spike0en/Pong_Archive/releases/tag/2.5.5-Hotfix) or releases made prior to it. Users should manually relocate the `dtbo, vbmeta_system & vbmeta_vendor` images from the `firmware` to the `boot` category folder after extraction for these specific releases. This has been resolved in subsequent releases.

### Boot (marked `-image-boot.7z`)

Includes 5 images:
Includes 7 images:
```bash
boot, dtbo, vendor_boot, recovery & vbmeta
boot, dtbo, vendor_boot, recovery, vbmeta, vbmeta_system & vbmeta_vendor
```
### Logical (marked `-image-logical.7z.001-003`)

Includes 8 images:
Includes 6 images:
```bash
system, system_ext, product, vendor, vendor_dlkm, odm, vbmeta_system & vbmeta_vendor
system, system_ext, product, vendor, vendor_dlkm & odm
```
### Firmware (marked `-image-firmware.7z`)

Expand Down
4 changes: 2 additions & 2 deletions dump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ for h in md5 sha1 sha256 xxh128; do
done

# Move specific boot partition image files from `ota` to `syn` directory
for f in boot dtbo recovery vendor_boot vbmeta; do
for f in boot dtbo recovery vendor_boot vbmeta vbmeta_system vbmeta_vendor; do
mv ${f}.img ../syn
done

# Switch to `ota` directory and move specific logical partition image files from `ota` to `dyn` directory
cd ../ota
for f in system system_ext product vendor vendor_dlkm odm vbmeta_system vbmeta_vendor; do
for f in system system_ext product vendor vendor_dlkm odm; do
mv ${f}.img ../dyn
done

Expand Down

0 comments on commit 7744748

Please sign in to comment.