Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 61088529 authored by Danny Lin's avatar Danny Lin
Browse files

factory: Update partitions for Pixel 6

This adds images necessary for the Pixel 6 (GS101) series, from AOSP
fastboot: https://android.googlesource.com/platform/system/core/+/refs/tags/android-12.0.0_r15/fastboot/fastboot.cpp#143
parent f4d92296
Loading
Loading
Loading
Loading
+14 −4
Original line number Diff line number Diff line
@@ -27,15 +27,25 @@ export type FactoryProgressCallback = (
// Images needed for fastbootd
const BOOT_CRITICAL_IMAGES = [
    "boot",
    "vendor_boot",
    "dtbo",
    "dt",
    "vbmeta",
    "dtbo",
    "pvmfw",
    "recovery",
    "vbmeta_system",
    "vbmeta_vendor",
    "vbmeta",
    "vendor_boot",
];

// Less critical images to flash after boot-critical ones
const SYSTEM_IMAGES = ["odm", "product", "system", "system_ext", "vendor"];
const SYSTEM_IMAGES = [
    "odm",
    "product",
    "system_ext",
    "system",
    "vendor_dlkm",
    "vendor",
];

/**
 * User-friendly action strings for factory image flashing progress.