diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0ca7223..aee107e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,9 +25,21 @@ jobs: pip install -e . - name: Build all platforms and run tests + env: + PTOOL_SEED: qcom-ptool-ci run: | make lint - make all integration + make all integration check-checksums + + - name: Verify checksum manifest is up to date + env: + PTOOL_SEED: qcom-ptool-ci + run: | + make generate-checksums + if ! git diff --exit-code tests/integration/checksums.sha256; then + echo "::error::tests/integration/checksums.sha256 is out of date; run 'make generate-checksums' locally and commit the result" + exit 1 + fi - name: Run cargo run: | diff --git a/Makefile b/Makefile index b73a254..a6a6d54 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ QCOM_PTOOL ?= qcom-ptool # optional build_id for Axiom contents.xml files BUILD_ID ?= -.PHONY: all check clean lint integration install +.PHONY: all check check-checksums clean generate-checksums install lint integration all: $(PLATFORMS) $(PARTITIONS_XML) $(CONTENTS_XML) @@ -33,6 +33,19 @@ integration: all # make sure generated output has created expected files tests/integration/check-missing-files platforms/*/*/*.xml +check-checksums: all + # verify generated artifacts match tests/integration/checksums.sha256 + # (requires PTOOL_SEED to match the seed used to produce the manifest) + tests/integration/check-checksums + +generate-checksums: all + # regenerate tests/integration/checksums.sha256 from current artifacts + # (run with the same PTOOL_SEED that CI uses, otherwise the manifest + # will not match CI builds) + LC_ALL=C find platforms -type f \( -name '*.bin' -o -name '*.xml' \) \ + ! -name '*.xml.in' -print0 | LC_ALL=C sort -z | xargs -0 sha256sum \ + > tests/integration/checksums.sha256 + check: lint integration install: diff --git a/qcom_ptool/ptool.py b/qcom_ptool/ptool.py index e802bd5..875789e 100755 --- a/qcom_ptool/ptool.py +++ b/qcom_ptool/ptool.py @@ -3515,6 +3515,14 @@ def find_file(filename, search_paths): if XMLFile is None: PrintBigError("ERROR: Could not find file") +# If PTOOL_SEED is set in the environment, seed the RNG with it so +# DiskGUID and any random UniquePartitionGUIDs become reproducible +# across runs. Intended for CI builds that want to compare artifacts +# by checksum; left unset for normal use, preserving random GUIDs. +_seed = os.environ.get("PTOOL_SEED") +if _seed: + random.seed(_seed) + ParseXML(XMLFile) # parses XMLFile, discovers if GPT or MBR PrintBanner("OutputToCreate ===> '%s'" % OutputToCreate) diff --git a/tests/integration/check-checksums b/tests/integration/check-checksums new file mode 100755 index 0000000..d02fb13 --- /dev/null +++ b/tests/integration/check-checksums @@ -0,0 +1,17 @@ +#!/bin/sh +# Copyright (c) 2026 Qualcomm Innovation Center, Inc. All rights reserved. +# SPDX-License-Identifier: BSD-3-Clause-Clear + +# Verify generated artifacts match the pinned checksums in +# tests/integration/checksums.sha256. + +set -eu + +manifest="tests/integration/checksums.sha256" + +if [ ! -r "${manifest}" ]; then + echo "Missing manifest: ${manifest}" >&2 + exit 1 +fi + +sha256sum --quiet --check "${manifest}" diff --git a/tests/integration/checksums.sha256 b/tests/integration/checksums.sha256 new file mode 100644 index 0000000..47fa2fe --- /dev/null +++ b/tests/integration/checksums.sha256 @@ -0,0 +1,1106 @@ +d8aea8477bea38a5dde49ce75b9958621ea3043d677346cca659ae1d04adfeda platforms/apq8016-sbc/emmc/gpt_backup0.bin +46a95cad6281225f8bfc0ecfb3e2f3a1324d67b9369269a647d3a8ab5ba8c0bd platforms/apq8016-sbc/emmc/gpt_both0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/apq8016-sbc/emmc/gpt_empty0.bin +16d49670ebf68db3f4137fe73e117d19b798d90dd03ae426621a050bed84148a platforms/apq8016-sbc/emmc/gpt_main0.bin +7cd24e422b1726fa69f837f030ce8b59094c299dcb97baefb91ef3dadbade2ba platforms/apq8016-sbc/emmc/partitions.xml +2e00f433d8255a4be035610a9f4676e78a0ea783e1c14efd3e137684544ab0a3 platforms/apq8016-sbc/emmc/patch0.xml +569a92ba28671ef07f8eae9d4cee3cedd9a0ffa173931210c751beac7d7dcb1c platforms/apq8016-sbc/emmc/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/apq8016-sbc/emmc/rawprogram0_BLANK_GPT.xml +b755b49926fb7e1356d79cc8a824a679956080900b0952511a4fb081bc718c79 platforms/apq8016-sbc/emmc/rawprogram0_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/apq8016-sbc/emmc/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/apq8016-sbc/emmc/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/apq8016-sbc/emmc/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/apq8016-sbc/emmc/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/apq8016-sbc/emmc/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/apq8016-sbc/emmc/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/apq8016-sbc/emmc/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/apq8016-sbc/emmc/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/apq8016-sbc/emmc/zeros_33sectors.bin +af2bec6150884b3af1c4f5a16ba2bbb87e854afa6639bd30215eb5ef0c4e6ccc platforms/apq8096-db820c/ufs/gpt_backup0.bin +b9c60f3bb9c704f0fc744b63cffbc544857f338853d542739d835b9aadc996e3 platforms/apq8096-db820c/ufs/gpt_backup1.bin +92809a015ae960865eabd2fb2ee7260d95cc4681cb74e91a2b9901abffe7fbdf platforms/apq8096-db820c/ufs/gpt_backup2.bin +669101c3ccf0ad17b5bbfea69a37a446e89df9a0e5aa91fa8794fa5bdd8a7047 platforms/apq8096-db820c/ufs/gpt_backup3.bin +77fb7e75c85bb7d704c6aa4140e5961b03992545b7696c89e8a77dd4808c9f3a platforms/apq8096-db820c/ufs/gpt_backup4.bin +8bcad281d72fbaf443c52953c9fb6f83af66e6f5d677a27a4af7aaab6a83e4d6 platforms/apq8096-db820c/ufs/gpt_backup5.bin +a49f3c42e22d5c932e6a87638c6dd5b12dde3082f1b93c3a7bb799d0941e060d platforms/apq8096-db820c/ufs/gpt_both0.bin +000c632076cf0ba2b02a91a7a4e04ea019d9e72cd4d8b51d0d6b4f23461d9ade platforms/apq8096-db820c/ufs/gpt_both1.bin +f9370505d89c79fbd3d77db05f04848a5d7d63cd08efede3741ad79a77dafbbd platforms/apq8096-db820c/ufs/gpt_both2.bin +faed6065750498602f4cfec8d0b11a24180d6249968c1e26b24419bbda65b6b1 platforms/apq8096-db820c/ufs/gpt_both3.bin +24559055150d060d7f4faadea1ceac600a861f01838477fb038b41922323c6d8 platforms/apq8096-db820c/ufs/gpt_both4.bin +f196ba395f1afdad823846958e6b78886d99bc2873af84bbffe64a0752b73757 platforms/apq8096-db820c/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/apq8096-db820c/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/apq8096-db820c/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/apq8096-db820c/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/apq8096-db820c/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/apq8096-db820c/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/apq8096-db820c/ufs/gpt_empty5.bin +fa557735d697f7cdd06305227e355da7904fad4fb75b4456bc5035e47516889c platforms/apq8096-db820c/ufs/gpt_main0.bin +29907d58421a07d274713eac7a3d7f25a7232298afac42010976ce812129edf8 platforms/apq8096-db820c/ufs/gpt_main1.bin +e7aab897c8455e073746f3791b01ecf7d657bbe888924b36dd300897f30713f2 platforms/apq8096-db820c/ufs/gpt_main2.bin +53d198df74fd7b809fdc502c39c2b52ff2977e92ee8575cc7e4a9435a6b35912 platforms/apq8096-db820c/ufs/gpt_main3.bin +838814ccaa4715ca4f7e8a91432e3c0093af6ac9a2cfd35ec5750ca96076c02f platforms/apq8096-db820c/ufs/gpt_main4.bin +c7edcebd4693b111072a140b98adcfa61647df08edd98a6faf73c0e08ff73ac7 platforms/apq8096-db820c/ufs/gpt_main5.bin +a76462b6708fbada60760704c589f8899d183eac129909601457e3f1e81b1733 platforms/apq8096-db820c/ufs/partitions.xml +7396c0fba0a3d35b22330b342057e7b16112a9477e5a112221446b40e726394d platforms/apq8096-db820c/ufs/patch0.xml +467b2bb03a277605c36e3e3ce081945f8c819651523be8cf7ed43b7497d12e28 platforms/apq8096-db820c/ufs/patch1.xml +be881fa1a2cea75e446b73ab5ed99da6f53a0e0ff8064b81936c0736b7239587 platforms/apq8096-db820c/ufs/patch2.xml +a26ba03c756a173da1c02206bc47d96b7c7aaf5197a31aea96bd00c49ffa38af platforms/apq8096-db820c/ufs/patch3.xml +662fe7d97cc5df906843f6eb37df7cadab71ac86ad1a00b9779a45bfd3485bd4 platforms/apq8096-db820c/ufs/patch4.xml +8bef4cc3ead426259be10e98779a9fcfba855f745c7390a76ef8ffb8cb527442 platforms/apq8096-db820c/ufs/patch5.xml +98c6d43f4d38263fbc8fead1c3716cfb28e1f421ca01a530afee2ba07f65eee8 platforms/apq8096-db820c/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/apq8096-db820c/ufs/rawprogram0_BLANK_GPT.xml +6758372eb3786cb4c1b071e0baa790f2310ba53d177c1e69718098078c88c41b platforms/apq8096-db820c/ufs/rawprogram0_WIPE_PARTITIONS.xml +7f66f26a73563cc1602448c71210df0bd801296e75db60a39d2b554754b17615 platforms/apq8096-db820c/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/apq8096-db820c/ufs/rawprogram1_BLANK_GPT.xml +2fe8512bd077a73e3fc113004d1492c06a2f224933988a110fe3f6ba1bd9cf79 platforms/apq8096-db820c/ufs/rawprogram1_WIPE_PARTITIONS.xml +f1e5231ca9f51b61700af901ea44fb40d20bc11e7dd08b6ce74ef5390a407bea platforms/apq8096-db820c/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/apq8096-db820c/ufs/rawprogram2_BLANK_GPT.xml +a4a49e6a5e501665c7a53e26457c20de3e0e581b025bd0df8c1edbc5cfc9abbb platforms/apq8096-db820c/ufs/rawprogram2_WIPE_PARTITIONS.xml +ece8d9669b57c7071343e9656dd770bf7543da7e5c8480ee5f029418f468575a platforms/apq8096-db820c/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/apq8096-db820c/ufs/rawprogram3_BLANK_GPT.xml +99f8e90f56956bbf5507f8151cedeadd7fc32abc084b2f2be341ddb4a188bafe platforms/apq8096-db820c/ufs/rawprogram3_WIPE_PARTITIONS.xml +b100414df6b6d39f3d48b07bf8880d9bf25bf76c94de76df89d3ebef8c064c62 platforms/apq8096-db820c/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/apq8096-db820c/ufs/rawprogram4_BLANK_GPT.xml +0a81c4761b6dc34fabfc8fdfc2a4e2ddf0036133bd429ab02294637df8eff824 platforms/apq8096-db820c/ufs/rawprogram4_WIPE_PARTITIONS.xml +fef074d3cc57b031845333a67ae7d70ba065f4a31530132a4a62b251d1fc73df platforms/apq8096-db820c/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/apq8096-db820c/ufs/rawprogram5_BLANK_GPT.xml +52a766cfca9a2a4d2e4d46e2ad57622230960eb1a62923e60e38718e584ba7ba platforms/apq8096-db820c/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/apq8096-db820c/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/apq8096-db820c/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/apq8096-db820c/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/apq8096-db820c/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/apq8096-db820c/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/apq8096-db820c/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/apq8096-db820c/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/apq8096-db820c/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/apq8096-db820c/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/apq8096-db820c/ufs/zeros_5sectors.bin +fef21585f498a590d2bd958f8aa750bd62916116bd391c2f61e3e5b252447773 platforms/glymur-crd/nvme/gpt_backup0.bin +db2401014f34f7129ed8b316873b114b14e2f356fba8928f0aa0378549936217 platforms/glymur-crd/nvme/gpt_both0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/glymur-crd/nvme/gpt_empty0.bin +7aaf46a801ab11d301e84d506c9cbec8ccff274d5cae5d25d4797b9897029af2 platforms/glymur-crd/nvme/gpt_main0.bin +f79c221b450aa6180bdfb41309bf7c22db2f27fabb8b2d6ba3a8df95a40a2153 platforms/glymur-crd/nvme/partitions.xml +8f9c0d530d8e38720a89a12d2649620e1c8a495df61de75b91b23ee054d8836c platforms/glymur-crd/nvme/patch0.xml +572c613c341231ddc04efb66caf36b0754ce93bf355621d77a0ac835d66cd78e platforms/glymur-crd/nvme/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/glymur-crd/nvme/rawprogram0_BLANK_GPT.xml +3c1a7e9fa65ed1fcadd92d9a0dcd45e1722847fd9090b50b8fe9707b067c337a platforms/glymur-crd/nvme/rawprogram0_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/glymur-crd/nvme/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/glymur-crd/nvme/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/glymur-crd/nvme/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/glymur-crd/nvme/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/glymur-crd/nvme/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/glymur-crd/nvme/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/glymur-crd/nvme/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/glymur-crd/nvme/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/glymur-crd/nvme/zeros_33sectors.bin +98091a1a9125bd92ef764b2e5dde68fd2af9f30d4697b2b5d3a4b3d4b8023f8b platforms/glymur-crd/spinor/contents.xml +0c4cf35c16ed017ba4cc6d6a3af358fcb8f802cfd520c453b2e793f20bc59155 platforms/glymur-crd/spinor/gpt_backup0.bin +23c1a67c99bba726bf2285d15db323868145636eff1a11db13fb01a7415f781b platforms/glymur-crd/spinor/gpt_both0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/glymur-crd/spinor/gpt_empty0.bin +82a249e907d9a16f3dc2cb22ac162465962db8d6071072231d2e55ba8565df10 platforms/glymur-crd/spinor/gpt_main0.bin +50c96f82d0724f5eb08be124b1f3b99743a881e0ac14fb8247748bb99a6743ac platforms/glymur-crd/spinor/partitions.xml +5e81ccbebcf2bb1ec760d4a3208e1c92972f79dac5f887b98205900681715ee9 platforms/glymur-crd/spinor/patch0.xml +02cbaa72dc5058837d11f5377c982611609c3b8e71b2a1e985ef04f72b89df0d platforms/glymur-crd/spinor/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/glymur-crd/spinor/rawprogram0_BLANK_GPT.xml +03de968417d730d28cd2d3cde4ca29f8c4f9c87524d0ea4c8011450b2e0e7450 platforms/glymur-crd/spinor/rawprogram0_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/glymur-crd/spinor/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/glymur-crd/spinor/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/glymur-crd/spinor/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/glymur-crd/spinor/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/glymur-crd/spinor/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/glymur-crd/spinor/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/glymur-crd/spinor/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/glymur-crd/spinor/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/glymur-crd/spinor/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/glymur-crd/spinor/zeros_5sectors.bin +72d6845d27707ba0bc7d795ceb714052dabbee5d542e6c084b5d99ae3f85c624 platforms/iq-615-evk/emmc/gpt_backup0.bin +e7a9ccb517426c9ea75d8f2daab90733aff224304d1c9805bb9fe9b6054c129d platforms/iq-615-evk/emmc/gpt_both0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/iq-615-evk/emmc/gpt_empty0.bin +17cdc0ea1fd050ca8ab9b62cca6cb7cd6d49532587c819869cf1c513f7cfe650 platforms/iq-615-evk/emmc/gpt_main0.bin +b9cad7ac7248a2a73b8f6e9e219a514a93177e42ba8e6963f3f0cb26e175fd84 platforms/iq-615-evk/emmc/partitions.xml +6b8b577c4b25179f0bd3473582e52833891bd71b3711a773d9912b7d62a6f40c platforms/iq-615-evk/emmc/patch0.xml +0bb511c39df8edf44110586ef144dc4114d8a496627e75707f9b6b8cf4f11d09 platforms/iq-615-evk/emmc/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/iq-615-evk/emmc/rawprogram0_BLANK_GPT.xml +e3943892d04e29586d3da8d6745482a77a9b3d73302c34f9db2268922e4d8185 platforms/iq-615-evk/emmc/rawprogram0_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/iq-615-evk/emmc/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/iq-615-evk/emmc/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/iq-615-evk/emmc/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/iq-615-evk/emmc/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/iq-615-evk/emmc/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/iq-615-evk/emmc/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/iq-615-evk/emmc/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/iq-615-evk/emmc/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/iq-615-evk/emmc/zeros_33sectors.bin +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/iq-615-evk/ufs/gpt_backup0.bin +424106c12ba2acf0c9367c9e96d7a7a65d861066d63c1962b1ed6bef5495b0a3 platforms/iq-615-evk/ufs/gpt_backup1.bin +a94afbdfe665fea82e20bbe70dd806d50ffec9db4da049deff92df61f41e5cad platforms/iq-615-evk/ufs/gpt_backup2.bin +16c5144c092a2679ee5a8b034ed2ce0b5a107f0ad1a768ceb82afb46e3ef5615 platforms/iq-615-evk/ufs/gpt_backup3.bin +cfd2b38dfff12d875a6fd336a6d7e0773b8b743b45c43539c12d8502f4cd7de4 platforms/iq-615-evk/ufs/gpt_backup4.bin +043114fbdbc7d9189f519cea5238fd73b57c014d684f1c96fbf7a4e8819712a7 platforms/iq-615-evk/ufs/gpt_backup5.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/iq-615-evk/ufs/gpt_both0.bin +6acebf7aa55e990525ddad650c9152d96334bacf8bfddc1f4c9b5ff899ebbccd platforms/iq-615-evk/ufs/gpt_both1.bin +d878dfb88759d01fe4187fba404b9fce9929e6b974f3ca65ae89117d045b7701 platforms/iq-615-evk/ufs/gpt_both2.bin +b3604404957a4ca59635b2c2b778cee15f233fafd37c93cbaedad24f97f731fd platforms/iq-615-evk/ufs/gpt_both3.bin +2511d1dd34e273e65e7cd43470f771ffaf2bea18f60e5302b35900251dcf17fe platforms/iq-615-evk/ufs/gpt_both4.bin +0a682a4d3f7148f99bb464c156cb60b2d7544d5adfbbba2d4de338c98e6f31f1 platforms/iq-615-evk/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-615-evk/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-615-evk/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-615-evk/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-615-evk/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-615-evk/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-615-evk/ufs/gpt_empty5.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/iq-615-evk/ufs/gpt_main0.bin +c9ff9b6d201ed1418e892cb77ae21a99ff4dff55bb3183aa94a937b15c85aec5 platforms/iq-615-evk/ufs/gpt_main1.bin +e9059e523ac9ddc640bd6f9024dee80403e0b24cb3c4a8f94a007e739f133a7c platforms/iq-615-evk/ufs/gpt_main2.bin +bf51d6a26da8e0abcf2b14b8ef65ca093d4468165a77a5415c61b07b1f2e1b01 platforms/iq-615-evk/ufs/gpt_main3.bin +d54d34eb993e374f2c15f3918ec13144a5c0f818060276bf93e8eeb88ed46690 platforms/iq-615-evk/ufs/gpt_main4.bin +fbc6450e013bac72860121aca4e69d219f314cbe3f33e0f0df3431019e31d32a platforms/iq-615-evk/ufs/gpt_main5.bin +4efdf764ccb82028a25bd891af3b77a6ae59d591de97cf1396e41e969d0f3be3 platforms/iq-615-evk/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/iq-615-evk/ufs/patch0.xml +b6269add7ddfc0bec68e1780f5b437b7c44a0d8bb266f90e678eae042d72e21b platforms/iq-615-evk/ufs/patch1.xml +ae392f62c30cd879c8f704bee9b08918008e6a40e5c6f0882228f2f84a8a2739 platforms/iq-615-evk/ufs/patch2.xml +f7da06354afae918957d84ed12ec71c0a195a02555e709584172da4bba53e685 platforms/iq-615-evk/ufs/patch3.xml +642c436fc6abbc6b508c07cb0577b2f23fc74a9b321de83c520022bd53bd0ccf platforms/iq-615-evk/ufs/patch4.xml +fe0061dc155ffddef55745b4b6049e4b06fc4c1fdeb55e4fb3bc96d2978b671a platforms/iq-615-evk/ufs/patch5.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/iq-615-evk/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/iq-615-evk/ufs/rawprogram0_BLANK_GPT.xml +6e144d3730cd61a0d866fbf068f31294caddf742423ffae67020143494b155fa platforms/iq-615-evk/ufs/rawprogram0_WIPE_PARTITIONS.xml +f6b3238423bdd7cbe03de9fffaf7d2a671b3723d097a55f80a89b44cf9a82538 platforms/iq-615-evk/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/iq-615-evk/ufs/rawprogram1_BLANK_GPT.xml +92d64c23c5e26fb5da5f7e021d07e3e08fb54146620e86b9a6e9922726502c2c platforms/iq-615-evk/ufs/rawprogram1_WIPE_PARTITIONS.xml +e7f099c32b8cea5bd3d2046507dfbbfa4b8220ba7b75fcd61ad1f1e3b383ba45 platforms/iq-615-evk/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/iq-615-evk/ufs/rawprogram2_BLANK_GPT.xml +a46834781b8f7460cb2301129fd7f6339ce7eda1a30dfe010f7c7f0fb25a7cf3 platforms/iq-615-evk/ufs/rawprogram2_WIPE_PARTITIONS.xml +fff56507b0e9315070905625ba2ce565dd811443369f13e4168e73969888cca3 platforms/iq-615-evk/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/iq-615-evk/ufs/rawprogram3_BLANK_GPT.xml +cbc97a1fe929099d55f37e3addf89905a2d93fcbe3843715d2f7406b04bdac53 platforms/iq-615-evk/ufs/rawprogram3_WIPE_PARTITIONS.xml +294e5982c8d2e015c5777b8917fe2aa8d40bbc9779864c92b655c7072a5de8bd platforms/iq-615-evk/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/iq-615-evk/ufs/rawprogram4_BLANK_GPT.xml +889a07313b5199395bbc2a0545273bfe020b29b6bf294b175e7fb834f579b034 platforms/iq-615-evk/ufs/rawprogram4_WIPE_PARTITIONS.xml +01e872c6745bbc06cca073aee751668549f9c990614fa96846e19da88f0ced88 platforms/iq-615-evk/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/iq-615-evk/ufs/rawprogram5_BLANK_GPT.xml +0ecee72c804a99f77cbcbbf2e986e880119f4e2161e1a03ddc2e5ceb8a2cd461 platforms/iq-615-evk/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/iq-615-evk/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/iq-615-evk/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/iq-615-evk/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/iq-615-evk/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/iq-615-evk/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/iq-615-evk/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/iq-615-evk/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/iq-615-evk/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/iq-615-evk/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/iq-615-evk/ufs/zeros_5sectors.bin +1671531e1f09228f57c4e4a8037692415f798ef89f302415d5a0f33480d00eca platforms/iq-8275-evk/emmc/contents.xml +f8b8b5bd32cdcf867cd04dfda8b0631f7b184f40811d18072964b41f75e93479 platforms/iq-8275-evk/emmc/gpt_backup0.bin +2e13b3450d03d45927862a8a75cc50cc4714d210dae64a874af0ab67e5b1500b platforms/iq-8275-evk/emmc/gpt_backup1.bin +a1c1510c0183b31d7a430399232e479bda517d9dd05bd7a017d36f5e5405d35a platforms/iq-8275-evk/emmc/gpt_both0.bin +1400af4690226ad403c4a0f2dcec3a97bdb9d3df874bb0efb9fe4223329187ec platforms/iq-8275-evk/emmc/gpt_both1.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/iq-8275-evk/emmc/gpt_empty0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/iq-8275-evk/emmc/gpt_empty1.bin +23c5d2ea256946c59cf65b9da46541212f1da889c4238bfc75bea78bb1bdd087 platforms/iq-8275-evk/emmc/gpt_main0.bin +0af41c68e029ee50f0049c7025023962b1f68e38a4bf39ec9c65b445e0447e34 platforms/iq-8275-evk/emmc/gpt_main1.bin +c4ff0186275a08561a2b4c30699a2ddaa87ecf2670394f9bc559b815f7f8d5db platforms/iq-8275-evk/emmc/partitions.xml +45c7b3838f44faadf0e60c0283cedf390cdaad4751e792f5cd1a7a0107e49268 platforms/iq-8275-evk/emmc/patch0.xml +7b885a56c95bd1497d2153c5d637ad874747f73251ab59c53df2b1367db21234 platforms/iq-8275-evk/emmc/patch1.xml +959e2e884e5cfeb0fe6ac3ed1bf7d1a970ee51912c27cb0a89069a80672b4b40 platforms/iq-8275-evk/emmc/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/iq-8275-evk/emmc/rawprogram0_BLANK_GPT.xml +de2033075f33516446befad74bf549b6f81515344c5699c5a6bfe59f91e7a1ee platforms/iq-8275-evk/emmc/rawprogram0_WIPE_PARTITIONS.xml +deb5fdefad1dd021e5f8f966706913934f95ecd30c9aac561da256f7105025cf platforms/iq-8275-evk/emmc/rawprogram1.xml +04377432e2b8e50e2751cd0eca662f59c976f3133cd89cd21a831df77c3acf81 platforms/iq-8275-evk/emmc/rawprogram1_BLANK_GPT.xml +885ac377348b30a3d46ebdc69b91ce9a0785e6be9069f358d45a4ae2f05ec5d4 platforms/iq-8275-evk/emmc/rawprogram1_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/iq-8275-evk/emmc/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/iq-8275-evk/emmc/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/iq-8275-evk/emmc/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/iq-8275-evk/emmc/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/iq-8275-evk/emmc/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/iq-8275-evk/emmc/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/iq-8275-evk/emmc/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/iq-8275-evk/emmc/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/iq-8275-evk/emmc/zeros_33sectors.bin +b73a107618798266a9db220cecf2c4f4773e66e0fbb6fcd7c89c0c345d40004d platforms/iq-8275-evk/ufs/contents.xml +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/iq-8275-evk/ufs/gpt_backup0.bin +e8ae8192d202411820f8c6a2a8967a186293d1b7702cd434d67d9509020881bc platforms/iq-8275-evk/ufs/gpt_backup1.bin +b68ccdcaea034c677d617c64e4e92999f6fd5957baceb963ae06b93c0b5d0669 platforms/iq-8275-evk/ufs/gpt_backup2.bin +5dd7c614bc2fbb50ae3e6f9d9a60652d2c53d00555b0a43caaa5ac3430876b1f platforms/iq-8275-evk/ufs/gpt_backup3.bin +b5d9f0172d9a0c42e83756d960a46557e4908b863af99f732869f814fd59d757 platforms/iq-8275-evk/ufs/gpt_backup4.bin +798d3a02b34c19c990f3d1109e341a396029ea8f0a5f77525598c10d2397ef9f platforms/iq-8275-evk/ufs/gpt_backup5.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/iq-8275-evk/ufs/gpt_both0.bin +baebd5164eebc27df4f8a7fbbc5583a451126ce9f6c2cf47ad8b0c91e3f27a69 platforms/iq-8275-evk/ufs/gpt_both1.bin +6ce3750005b15baaf95b499a5eb1c450db801c7c5ee5cca9e5f80657310d4e26 platforms/iq-8275-evk/ufs/gpt_both2.bin +73a42d6931c5614fba43f6270b42d3a8ddc48d3186ba3354e5cd6a12737b2d3d platforms/iq-8275-evk/ufs/gpt_both3.bin +7a602811f0a4759b9884c6b09d06b1f62f9553eeb913353bd0683e20cb460696 platforms/iq-8275-evk/ufs/gpt_both4.bin +f914ea371fb3a351ceebecea2a0af2ba93a27f3b6653be7bf7dc4802b27744ec platforms/iq-8275-evk/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-8275-evk/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-8275-evk/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-8275-evk/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-8275-evk/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-8275-evk/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-8275-evk/ufs/gpt_empty5.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/iq-8275-evk/ufs/gpt_main0.bin +3cf3e516a82513eb8666362f9518be6b65564cb1e720a8241c59c6895feb3496 platforms/iq-8275-evk/ufs/gpt_main1.bin +7ae49864788c453c5ce28618b4f6d23f3a679e582386af0b0178c3d4972f2f72 platforms/iq-8275-evk/ufs/gpt_main2.bin +49304982c0def01e39143407010af3da2a8434adc622439ed9b78e2c1b2522cf platforms/iq-8275-evk/ufs/gpt_main3.bin +cc94b6fda4b3d443685a1f63dedc85d834b6aa3ef826f9946264b21b73bae46f platforms/iq-8275-evk/ufs/gpt_main4.bin +cee60cecbb40ec97a2971e0aefe13969a8bc67378c5ad05712071f02f46a7022 platforms/iq-8275-evk/ufs/gpt_main5.bin +965c20568e3c14e056fb784f463e1be48fc2294572b46c9e0309eecd371a576b platforms/iq-8275-evk/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/iq-8275-evk/ufs/patch0.xml +b6269add7ddfc0bec68e1780f5b437b7c44a0d8bb266f90e678eae042d72e21b platforms/iq-8275-evk/ufs/patch1.xml +ae392f62c30cd879c8f704bee9b08918008e6a40e5c6f0882228f2f84a8a2739 platforms/iq-8275-evk/ufs/patch2.xml +f7da06354afae918957d84ed12ec71c0a195a02555e709584172da4bba53e685 platforms/iq-8275-evk/ufs/patch3.xml +59e5e6a9bd1f2a9ce42bd5d21f44d40a4849d9035e850a4f946526fab18c4513 platforms/iq-8275-evk/ufs/patch4.xml +fe0061dc155ffddef55745b4b6049e4b06fc4c1fdeb55e4fb3bc96d2978b671a platforms/iq-8275-evk/ufs/patch5.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/iq-8275-evk/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/iq-8275-evk/ufs/rawprogram0_BLANK_GPT.xml +6e144d3730cd61a0d866fbf068f31294caddf742423ffae67020143494b155fa platforms/iq-8275-evk/ufs/rawprogram0_WIPE_PARTITIONS.xml +f253ed6f75fc82b2bbb3554eda6a986c90642f239e4ac7e15e2b6a6eb1059dd6 platforms/iq-8275-evk/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/iq-8275-evk/ufs/rawprogram1_BLANK_GPT.xml +dfcd1dad754b0b660d6cc554efebc4f20f9e4bd4c4f3c92834891975b3101ccc platforms/iq-8275-evk/ufs/rawprogram1_WIPE_PARTITIONS.xml +4351278c0535cdd1c12fe7f7feb25256ae87f08a444689d28f0ec99751fa5b74 platforms/iq-8275-evk/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/iq-8275-evk/ufs/rawprogram2_BLANK_GPT.xml +d90ad37e5e89d356dd7da449429ab422907f925cd45db2968b48624220bed6d1 platforms/iq-8275-evk/ufs/rawprogram2_WIPE_PARTITIONS.xml +195a8bad380249295b6de5bba676305280191c03eb38b1d57a48b958b69d20c7 platforms/iq-8275-evk/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/iq-8275-evk/ufs/rawprogram3_BLANK_GPT.xml +b3f7f52c9bc498ecdb79c1d5bb5416ef4b8df5a8f7c972813bd899acc19f721a platforms/iq-8275-evk/ufs/rawprogram3_WIPE_PARTITIONS.xml +810c082996020fb3dc5f4c5558bd372ed590e2b81c8153107ecd1054e2302cdf platforms/iq-8275-evk/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/iq-8275-evk/ufs/rawprogram4_BLANK_GPT.xml +babb49ea2065c45f81a0ff04a83171743e4576c7f2281a1baf72775f28ba743d platforms/iq-8275-evk/ufs/rawprogram4_WIPE_PARTITIONS.xml +01e872c6745bbc06cca073aee751668549f9c990614fa96846e19da88f0ced88 platforms/iq-8275-evk/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/iq-8275-evk/ufs/rawprogram5_BLANK_GPT.xml +0ecee72c804a99f77cbcbbf2e986e880119f4e2161e1a03ddc2e5ceb8a2cd461 platforms/iq-8275-evk/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/iq-8275-evk/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/iq-8275-evk/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/iq-8275-evk/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/iq-8275-evk/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/iq-8275-evk/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/iq-8275-evk/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/iq-8275-evk/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/iq-8275-evk/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/iq-8275-evk/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/iq-8275-evk/ufs/zeros_5sectors.bin +36c02a3d96279e248700e6e7546b9050614b54b1d969572228039ccc8cefeadf platforms/iq-9075-evk/emmc/contents.xml +f8b8b5bd32cdcf867cd04dfda8b0631f7b184f40811d18072964b41f75e93479 platforms/iq-9075-evk/emmc/gpt_backup0.bin +2e13b3450d03d45927862a8a75cc50cc4714d210dae64a874af0ab67e5b1500b platforms/iq-9075-evk/emmc/gpt_backup1.bin +a1c1510c0183b31d7a430399232e479bda517d9dd05bd7a017d36f5e5405d35a platforms/iq-9075-evk/emmc/gpt_both0.bin +1400af4690226ad403c4a0f2dcec3a97bdb9d3df874bb0efb9fe4223329187ec platforms/iq-9075-evk/emmc/gpt_both1.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/iq-9075-evk/emmc/gpt_empty0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/iq-9075-evk/emmc/gpt_empty1.bin +23c5d2ea256946c59cf65b9da46541212f1da889c4238bfc75bea78bb1bdd087 platforms/iq-9075-evk/emmc/gpt_main0.bin +0af41c68e029ee50f0049c7025023962b1f68e38a4bf39ec9c65b445e0447e34 platforms/iq-9075-evk/emmc/gpt_main1.bin +c4ff0186275a08561a2b4c30699a2ddaa87ecf2670394f9bc559b815f7f8d5db platforms/iq-9075-evk/emmc/partitions.xml +45c7b3838f44faadf0e60c0283cedf390cdaad4751e792f5cd1a7a0107e49268 platforms/iq-9075-evk/emmc/patch0.xml +7b885a56c95bd1497d2153c5d637ad874747f73251ab59c53df2b1367db21234 platforms/iq-9075-evk/emmc/patch1.xml +959e2e884e5cfeb0fe6ac3ed1bf7d1a970ee51912c27cb0a89069a80672b4b40 platforms/iq-9075-evk/emmc/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/iq-9075-evk/emmc/rawprogram0_BLANK_GPT.xml +de2033075f33516446befad74bf549b6f81515344c5699c5a6bfe59f91e7a1ee platforms/iq-9075-evk/emmc/rawprogram0_WIPE_PARTITIONS.xml +deb5fdefad1dd021e5f8f966706913934f95ecd30c9aac561da256f7105025cf platforms/iq-9075-evk/emmc/rawprogram1.xml +04377432e2b8e50e2751cd0eca662f59c976f3133cd89cd21a831df77c3acf81 platforms/iq-9075-evk/emmc/rawprogram1_BLANK_GPT.xml +885ac377348b30a3d46ebdc69b91ce9a0785e6be9069f358d45a4ae2f05ec5d4 platforms/iq-9075-evk/emmc/rawprogram1_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/iq-9075-evk/emmc/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/iq-9075-evk/emmc/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/iq-9075-evk/emmc/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/iq-9075-evk/emmc/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/iq-9075-evk/emmc/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/iq-9075-evk/emmc/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/iq-9075-evk/emmc/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/iq-9075-evk/emmc/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/iq-9075-evk/emmc/zeros_33sectors.bin +1ceb6ee2fcbc14392aa5bca123ce22507d0a36392dfd7058df6eca99c057bacd platforms/iq-9075-evk/ufs/contents.xml +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/iq-9075-evk/ufs/gpt_backup0.bin +e8ae8192d202411820f8c6a2a8967a186293d1b7702cd434d67d9509020881bc platforms/iq-9075-evk/ufs/gpt_backup1.bin +b68ccdcaea034c677d617c64e4e92999f6fd5957baceb963ae06b93c0b5d0669 platforms/iq-9075-evk/ufs/gpt_backup2.bin +5dd7c614bc2fbb50ae3e6f9d9a60652d2c53d00555b0a43caaa5ac3430876b1f platforms/iq-9075-evk/ufs/gpt_backup3.bin +b5d9f0172d9a0c42e83756d960a46557e4908b863af99f732869f814fd59d757 platforms/iq-9075-evk/ufs/gpt_backup4.bin +798d3a02b34c19c990f3d1109e341a396029ea8f0a5f77525598c10d2397ef9f platforms/iq-9075-evk/ufs/gpt_backup5.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/iq-9075-evk/ufs/gpt_both0.bin +baebd5164eebc27df4f8a7fbbc5583a451126ce9f6c2cf47ad8b0c91e3f27a69 platforms/iq-9075-evk/ufs/gpt_both1.bin +6ce3750005b15baaf95b499a5eb1c450db801c7c5ee5cca9e5f80657310d4e26 platforms/iq-9075-evk/ufs/gpt_both2.bin +73a42d6931c5614fba43f6270b42d3a8ddc48d3186ba3354e5cd6a12737b2d3d platforms/iq-9075-evk/ufs/gpt_both3.bin +7a602811f0a4759b9884c6b09d06b1f62f9553eeb913353bd0683e20cb460696 platforms/iq-9075-evk/ufs/gpt_both4.bin +f914ea371fb3a351ceebecea2a0af2ba93a27f3b6653be7bf7dc4802b27744ec platforms/iq-9075-evk/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-9075-evk/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-9075-evk/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-9075-evk/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-9075-evk/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-9075-evk/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-9075-evk/ufs/gpt_empty5.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/iq-9075-evk/ufs/gpt_main0.bin +3cf3e516a82513eb8666362f9518be6b65564cb1e720a8241c59c6895feb3496 platforms/iq-9075-evk/ufs/gpt_main1.bin +7ae49864788c453c5ce28618b4f6d23f3a679e582386af0b0178c3d4972f2f72 platforms/iq-9075-evk/ufs/gpt_main2.bin +49304982c0def01e39143407010af3da2a8434adc622439ed9b78e2c1b2522cf platforms/iq-9075-evk/ufs/gpt_main3.bin +cc94b6fda4b3d443685a1f63dedc85d834b6aa3ef826f9946264b21b73bae46f platforms/iq-9075-evk/ufs/gpt_main4.bin +cee60cecbb40ec97a2971e0aefe13969a8bc67378c5ad05712071f02f46a7022 platforms/iq-9075-evk/ufs/gpt_main5.bin +f29f82f1a52bca3638674832104f2df826b16de338bb5a5c90023187c609a8da platforms/iq-9075-evk/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/iq-9075-evk/ufs/patch0.xml +b6269add7ddfc0bec68e1780f5b437b7c44a0d8bb266f90e678eae042d72e21b platforms/iq-9075-evk/ufs/patch1.xml +ae392f62c30cd879c8f704bee9b08918008e6a40e5c6f0882228f2f84a8a2739 platforms/iq-9075-evk/ufs/patch2.xml +f7da06354afae918957d84ed12ec71c0a195a02555e709584172da4bba53e685 platforms/iq-9075-evk/ufs/patch3.xml +59e5e6a9bd1f2a9ce42bd5d21f44d40a4849d9035e850a4f946526fab18c4513 platforms/iq-9075-evk/ufs/patch4.xml +fe0061dc155ffddef55745b4b6049e4b06fc4c1fdeb55e4fb3bc96d2978b671a platforms/iq-9075-evk/ufs/patch5.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/iq-9075-evk/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/iq-9075-evk/ufs/rawprogram0_BLANK_GPT.xml +25efea39fb897cc9471c96fd32df9423a6964449161ce225dad635a3648a61e3 platforms/iq-9075-evk/ufs/rawprogram0_WIPE_PARTITIONS.xml +f253ed6f75fc82b2bbb3554eda6a986c90642f239e4ac7e15e2b6a6eb1059dd6 platforms/iq-9075-evk/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/iq-9075-evk/ufs/rawprogram1_BLANK_GPT.xml +dfcd1dad754b0b660d6cc554efebc4f20f9e4bd4c4f3c92834891975b3101ccc platforms/iq-9075-evk/ufs/rawprogram1_WIPE_PARTITIONS.xml +4351278c0535cdd1c12fe7f7feb25256ae87f08a444689d28f0ec99751fa5b74 platforms/iq-9075-evk/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/iq-9075-evk/ufs/rawprogram2_BLANK_GPT.xml +d90ad37e5e89d356dd7da449429ab422907f925cd45db2968b48624220bed6d1 platforms/iq-9075-evk/ufs/rawprogram2_WIPE_PARTITIONS.xml +195a8bad380249295b6de5bba676305280191c03eb38b1d57a48b958b69d20c7 platforms/iq-9075-evk/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/iq-9075-evk/ufs/rawprogram3_BLANK_GPT.xml +b3f7f52c9bc498ecdb79c1d5bb5416ef4b8df5a8f7c972813bd899acc19f721a platforms/iq-9075-evk/ufs/rawprogram3_WIPE_PARTITIONS.xml +810c082996020fb3dc5f4c5558bd372ed590e2b81c8153107ecd1054e2302cdf platforms/iq-9075-evk/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/iq-9075-evk/ufs/rawprogram4_BLANK_GPT.xml +babb49ea2065c45f81a0ff04a83171743e4576c7f2281a1baf72775f28ba743d platforms/iq-9075-evk/ufs/rawprogram4_WIPE_PARTITIONS.xml +01e872c6745bbc06cca073aee751668549f9c990614fa96846e19da88f0ced88 platforms/iq-9075-evk/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/iq-9075-evk/ufs/rawprogram5_BLANK_GPT.xml +0ecee72c804a99f77cbcbbf2e986e880119f4e2161e1a03ddc2e5ceb8a2cd461 platforms/iq-9075-evk/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/iq-9075-evk/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/iq-9075-evk/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/iq-9075-evk/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/iq-9075-evk/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/iq-9075-evk/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/iq-9075-evk/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/iq-9075-evk/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/iq-9075-evk/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/iq-9075-evk/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/iq-9075-evk/ufs/zeros_5sectors.bin +fef21585f498a590d2bd958f8aa750bd62916116bd391c2f61e3e5b252447773 platforms/iq-x7181-evk/nvme/gpt_backup0.bin +db2401014f34f7129ed8b316873b114b14e2f356fba8928f0aa0378549936217 platforms/iq-x7181-evk/nvme/gpt_both0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/iq-x7181-evk/nvme/gpt_empty0.bin +7aaf46a801ab11d301e84d506c9cbec8ccff274d5cae5d25d4797b9897029af2 platforms/iq-x7181-evk/nvme/gpt_main0.bin +f79c221b450aa6180bdfb41309bf7c22db2f27fabb8b2d6ba3a8df95a40a2153 platforms/iq-x7181-evk/nvme/partitions.xml +8f9c0d530d8e38720a89a12d2649620e1c8a495df61de75b91b23ee054d8836c platforms/iq-x7181-evk/nvme/patch0.xml +572c613c341231ddc04efb66caf36b0754ce93bf355621d77a0ac835d66cd78e platforms/iq-x7181-evk/nvme/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/iq-x7181-evk/nvme/rawprogram0_BLANK_GPT.xml +3c1a7e9fa65ed1fcadd92d9a0dcd45e1722847fd9090b50b8fe9707b067c337a platforms/iq-x7181-evk/nvme/rawprogram0_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/iq-x7181-evk/nvme/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/iq-x7181-evk/nvme/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/iq-x7181-evk/nvme/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/iq-x7181-evk/nvme/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/iq-x7181-evk/nvme/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/iq-x7181-evk/nvme/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/iq-x7181-evk/nvme/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/iq-x7181-evk/nvme/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/iq-x7181-evk/nvme/zeros_33sectors.bin +676d2a50e70a2e59547ca65736146d12c0a28bd298e5a1d293119a0f7ecdfdc5 platforms/iq-x7181-evk/spinor/contents.xml +8ee89a96df8a7da1714c08ff22bb806239c28cab385475a1047b74ab92e9b6f1 platforms/iq-x7181-evk/spinor/gpt_backup0.bin +009de56972db81aafaba46e44887299cc01daaa04a679734b3c0b7edbba12c7e platforms/iq-x7181-evk/spinor/gpt_both0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-x7181-evk/spinor/gpt_empty0.bin +0726a46092c12eec116982a88c6b44b896efab63e70b6e09a4132dad7eb5de00 platforms/iq-x7181-evk/spinor/gpt_main0.bin +45a36976e3243d52bb5edff3ca6a39da56a201fd6703f72b536c758325479288 platforms/iq-x7181-evk/spinor/partitions.xml +5e81ccbebcf2bb1ec760d4a3208e1c92972f79dac5f887b98205900681715ee9 platforms/iq-x7181-evk/spinor/patch0.xml +f8e56c6207e4f090a708570b750589bd8649572f85d57deb1f26bd099e681ab1 platforms/iq-x7181-evk/spinor/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/iq-x7181-evk/spinor/rawprogram0_BLANK_GPT.xml +dad50d1c6004812dae4927e11c82a6dc4322d4a9173592b088e84ebca050ee51 platforms/iq-x7181-evk/spinor/rawprogram0_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/iq-x7181-evk/spinor/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/iq-x7181-evk/spinor/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/iq-x7181-evk/spinor/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/iq-x7181-evk/spinor/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/iq-x7181-evk/spinor/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/iq-x7181-evk/spinor/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/iq-x7181-evk/spinor/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/iq-x7181-evk/spinor/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/iq-x7181-evk/spinor/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/iq-x7181-evk/spinor/zeros_5sectors.bin +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/iq-x7181-evk/ufs/gpt_backup0.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/iq-x7181-evk/ufs/gpt_both0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/iq-x7181-evk/ufs/gpt_empty0.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/iq-x7181-evk/ufs/gpt_main0.bin +5924faf1350c1da6869c7c1b1c4f777c0dd8a521fca99aab6f086a3f65e40b88 platforms/iq-x7181-evk/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/iq-x7181-evk/ufs/patch0.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/iq-x7181-evk/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/iq-x7181-evk/ufs/rawprogram0_BLANK_GPT.xml +20353db0aeb80f9c9912281d536fb1ce7608010633656a76fed9c4f63aa967b8 platforms/iq-x7181-evk/ufs/rawprogram0_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/iq-x7181-evk/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/iq-x7181-evk/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/iq-x7181-evk/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/iq-x7181-evk/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/iq-x7181-evk/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/iq-x7181-evk/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/iq-x7181-evk/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/iq-x7181-evk/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/iq-x7181-evk/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/iq-x7181-evk/ufs/zeros_5sectors.bin +c032611dbe59e838f87cffae6632e428f56d774bf49fffc5d8aa36d861a80428 platforms/kaanapali-mtp/ufs/contents.xml +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/kaanapali-mtp/ufs/gpt_backup0.bin +137603b555c54b82708a409e4cf07ffcff2aee1c562e29011d1493f782d2ed97 platforms/kaanapali-mtp/ufs/gpt_backup1.bin +0b0cd9a1b886c77af646bfbf61e189dc82f9ae0cee368224d05df71658feda40 platforms/kaanapali-mtp/ufs/gpt_backup2.bin +563887f285db74a22a8dab11fd69b6a39667c8f20915edeafa67129d05215ebc platforms/kaanapali-mtp/ufs/gpt_backup3.bin +2c4882a15908939888355efcac1e8912fc1517db4e294cf5c5d95b7b7c96c814 platforms/kaanapali-mtp/ufs/gpt_backup4.bin +a7562c6077bd1274efaef7efdf57b20983cd9347a9cafbafb038d568edc5234d platforms/kaanapali-mtp/ufs/gpt_backup5.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/kaanapali-mtp/ufs/gpt_both0.bin +7cfe42af88968bf01deebbe9ea5ddc2d551855b6aaa3b7e41f60ef630793f3da platforms/kaanapali-mtp/ufs/gpt_both1.bin +eba4ff208405251bc50ff0491f43363828a4a056ca8732f778477a9aad4e4ee3 platforms/kaanapali-mtp/ufs/gpt_both2.bin +044d0eb73351855bc0e6e1f2ede0f34371fed2027206d4ed3ee81d8e6f793e5a platforms/kaanapali-mtp/ufs/gpt_both3.bin +9a5b251ae676c3105c5db49edab0e54888e02c8f1c77755e0624d8d3ddeb3582 platforms/kaanapali-mtp/ufs/gpt_both4.bin +ee3a95ab2a03f20814cd94fa906376b808351572ca9c6a3f8473e0c05d2bb0b6 platforms/kaanapali-mtp/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/kaanapali-mtp/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/kaanapali-mtp/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/kaanapali-mtp/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/kaanapali-mtp/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/kaanapali-mtp/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/kaanapali-mtp/ufs/gpt_empty5.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/kaanapali-mtp/ufs/gpt_main0.bin +8139b63950829a9207a86260432dd2c467540654056bc241c433fc356bd03544 platforms/kaanapali-mtp/ufs/gpt_main1.bin +e2c1dcf67ba072dc3309c5052fb851b3574c06aee1a7381ddfb208762e3466c8 platforms/kaanapali-mtp/ufs/gpt_main2.bin +5eb465d8580f8b5be00dcc336bc719941e24f2f4552e8cf22b4ed640fd62ec18 platforms/kaanapali-mtp/ufs/gpt_main3.bin +20c1834cc2b1986333428f2c9e89e82cda96442fe4c8ae022b4bd0079421848a platforms/kaanapali-mtp/ufs/gpt_main4.bin +d98277fe542d3c1b170d2ed8c3958b7aab97198604e25776ed9157051c6f6fe9 platforms/kaanapali-mtp/ufs/gpt_main5.bin +47a133243b33096c016244d645a8b7f1b3e62dd205c69cd090eea106efd38049 platforms/kaanapali-mtp/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/kaanapali-mtp/ufs/patch0.xml +6651cf358a85e066992c29fc1953851681fb9f52f7be3881d51aaa2f3160dfb4 platforms/kaanapali-mtp/ufs/patch1.xml +7e8d630cf0ed305df5184e1f082fa70b1b34fb83bdedb3a525ddaf753cf96eed platforms/kaanapali-mtp/ufs/patch2.xml +f7da06354afae918957d84ed12ec71c0a195a02555e709584172da4bba53e685 platforms/kaanapali-mtp/ufs/patch3.xml +eda0ed3630d12f2af8ce78ad9709d7fd484e54abbacef9ad044bc774c2cec45a platforms/kaanapali-mtp/ufs/patch4.xml +7c6fbd8320b03108a2243b0a72d080d4c041b8d0dc8afcae92aa2bab9447c696 platforms/kaanapali-mtp/ufs/patch5.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/kaanapali-mtp/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/kaanapali-mtp/ufs/rawprogram0_BLANK_GPT.xml +14b80faeb1230f48070444dfb4522575cb221fb8ba94cf3e6a79289691e5eb44 platforms/kaanapali-mtp/ufs/rawprogram0_WIPE_PARTITIONS.xml +bd545d9a9cb62ac7edff6a028c791756af0894ceb3bfae305bce557575791c0d platforms/kaanapali-mtp/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/kaanapali-mtp/ufs/rawprogram1_BLANK_GPT.xml +8692cf385cb091cf0150e569108ac02180294478737ea04b5a9c11295b84ae00 platforms/kaanapali-mtp/ufs/rawprogram1_WIPE_PARTITIONS.xml +5e8f46a81a7ec7abed670f9da95381f46abe2e10ff3fca9b282eb08d01a54165 platforms/kaanapali-mtp/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/kaanapali-mtp/ufs/rawprogram2_BLANK_GPT.xml +fecf788c5a0496fe93086a3826c13cb717a694e3892194def2cfc8945dbacf3c platforms/kaanapali-mtp/ufs/rawprogram2_WIPE_PARTITIONS.xml +fff56507b0e9315070905625ba2ce565dd811443369f13e4168e73969888cca3 platforms/kaanapali-mtp/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/kaanapali-mtp/ufs/rawprogram3_BLANK_GPT.xml +cbc97a1fe929099d55f37e3addf89905a2d93fcbe3843715d2f7406b04bdac53 platforms/kaanapali-mtp/ufs/rawprogram3_WIPE_PARTITIONS.xml +3e4ed247272a070dcea53199ceb6eb4a67476520a77ede65872564dda8fa57be platforms/kaanapali-mtp/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/kaanapali-mtp/ufs/rawprogram4_BLANK_GPT.xml +481645d20d5344cb092f29801591d371e71fb4d054a0723206d623d8da46cf60 platforms/kaanapali-mtp/ufs/rawprogram4_WIPE_PARTITIONS.xml +5f840417c57b87b5767e48921e6aade328aa8277c1f2a16346c4258f83b49fec platforms/kaanapali-mtp/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/kaanapali-mtp/ufs/rawprogram5_BLANK_GPT.xml +8966e3b2440445c8d56665976c5374a331d9e3d43c16a86c053e23b1d72445d7 platforms/kaanapali-mtp/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/kaanapali-mtp/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/kaanapali-mtp/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/kaanapali-mtp/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/kaanapali-mtp/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/kaanapali-mtp/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/kaanapali-mtp/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/kaanapali-mtp/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/kaanapali-mtp/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/kaanapali-mtp/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/kaanapali-mtp/ufs/zeros_5sectors.bin +0963b13b7a4f770a182ad9e268559bb9d5015b1423f420b44e2996224861e119 platforms/qcm6490-idp/emmc/contents.xml +ca8b1a905d55fd18b6807a966b7f2661b65f7b236790888cf675195b33c21ed3 platforms/qcm6490-idp/emmc/gpt_backup0.bin +a007bd3e65f3727a4b90f609196cd46399dc230494b62f8615109fa66fdc90ff platforms/qcm6490-idp/emmc/gpt_backup1.bin +9dd392a037a1b38439075bd3da143636676e25f087fe7c01a1d9957c74d92a05 platforms/qcm6490-idp/emmc/gpt_both0.bin +8881e549f657872848afe85fd470173fb4c7ceda94d8590c3a655e21b9c6f878 platforms/qcm6490-idp/emmc/gpt_both1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcm6490-idp/emmc/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcm6490-idp/emmc/gpt_empty1.bin +1588c37f7bbbc59f1ca50580f5b6b16b5b77890cfe2081b8f3100f98f1a537ae platforms/qcm6490-idp/emmc/gpt_main0.bin +32f453d3ab1459d265d73cd22808e7d93c45ae81bbbfed21c2c0aca9d52d8554 platforms/qcm6490-idp/emmc/gpt_main1.bin +8da8599a568bf5331ba72275cfc76dfe2bafc1f574d747e302e74072a3ba8cb2 platforms/qcm6490-idp/emmc/partitions.xml +de070fdc30801e8d1e3a6ffc2e53de28a3659ec95d01e483e20f7c0f8d7b08ff platforms/qcm6490-idp/emmc/patch0.xml +e7b6ca6948bf7c4be260b2ab7e9f260edf3bc04604e653038ee894f24bab89d1 platforms/qcm6490-idp/emmc/patch1.xml +470231040b1e65f1c702eea543049003a16ab80b6d11aba4aeb9015cdf595b59 platforms/qcm6490-idp/emmc/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/qcm6490-idp/emmc/rawprogram0_BLANK_GPT.xml +376e77c503afcd03f12c748ac5564a860803061991407cd5c9c4c4058d0686da platforms/qcm6490-idp/emmc/rawprogram0_WIPE_PARTITIONS.xml +707ff782c4cec382983510c4c67b381829e3eb9e7210a4b6f58960fa4295bea5 platforms/qcm6490-idp/emmc/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/qcm6490-idp/emmc/rawprogram1_BLANK_GPT.xml +8dd14f23bb833c071dddb39320f36322cbc7e7ff2cc14d32f3e857b466705d41 platforms/qcm6490-idp/emmc/rawprogram1_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/qcm6490-idp/emmc/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/qcm6490-idp/emmc/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/qcm6490-idp/emmc/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/qcm6490-idp/emmc/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/qcm6490-idp/emmc/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/qcm6490-idp/emmc/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/qcm6490-idp/emmc/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/qcm6490-idp/emmc/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/qcm6490-idp/emmc/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/qcm6490-idp/emmc/zeros_5sectors.bin +68fb89fe0bd5cf91e477b9218108229d31025e5779ac08d8995892911ade8170 platforms/qcm6490-idp/ufs/contents.xml +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/qcm6490-idp/ufs/gpt_backup0.bin +424106c12ba2acf0c9367c9e96d7a7a65d861066d63c1962b1ed6bef5495b0a3 platforms/qcm6490-idp/ufs/gpt_backup1.bin +a94afbdfe665fea82e20bbe70dd806d50ffec9db4da049deff92df61f41e5cad platforms/qcm6490-idp/ufs/gpt_backup2.bin +16c5144c092a2679ee5a8b034ed2ce0b5a107f0ad1a768ceb82afb46e3ef5615 platforms/qcm6490-idp/ufs/gpt_backup3.bin +0ee747c377e5c8f4aef221d9aa2687cee55d88d8cdbb56559b4273d6e303d2d9 platforms/qcm6490-idp/ufs/gpt_backup4.bin +c91eab5cc56cd364235a1bc486b23d947e889b4c7f02ca3e62cd7904dde6679d platforms/qcm6490-idp/ufs/gpt_backup5.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/qcm6490-idp/ufs/gpt_both0.bin +6acebf7aa55e990525ddad650c9152d96334bacf8bfddc1f4c9b5ff899ebbccd platforms/qcm6490-idp/ufs/gpt_both1.bin +d878dfb88759d01fe4187fba404b9fce9929e6b974f3ca65ae89117d045b7701 platforms/qcm6490-idp/ufs/gpt_both2.bin +b3604404957a4ca59635b2c2b778cee15f233fafd37c93cbaedad24f97f731fd platforms/qcm6490-idp/ufs/gpt_both3.bin +165208be4a8161856d09d346c3a3c536b8d7600ad18c7ff8b2d50eb2f7ce1060 platforms/qcm6490-idp/ufs/gpt_both4.bin +5e5a25d6a9bb10aad9d084f1d181da33e184522048c537a20654fbfb587b2877 platforms/qcm6490-idp/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcm6490-idp/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcm6490-idp/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcm6490-idp/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcm6490-idp/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcm6490-idp/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcm6490-idp/ufs/gpt_empty5.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/qcm6490-idp/ufs/gpt_main0.bin +c9ff9b6d201ed1418e892cb77ae21a99ff4dff55bb3183aa94a937b15c85aec5 platforms/qcm6490-idp/ufs/gpt_main1.bin +e9059e523ac9ddc640bd6f9024dee80403e0b24cb3c4a8f94a007e739f133a7c platforms/qcm6490-idp/ufs/gpt_main2.bin +bf51d6a26da8e0abcf2b14b8ef65ca093d4468165a77a5415c61b07b1f2e1b01 platforms/qcm6490-idp/ufs/gpt_main3.bin +662787616f527a937023028a30eb9560752b259a8029efb6842545059cfb77e2 platforms/qcm6490-idp/ufs/gpt_main4.bin +53c5bdd92ec47fa568d1f23587a1907d19d2c59a0a27d3c2237df343c4f223e5 platforms/qcm6490-idp/ufs/gpt_main5.bin +dcd42db769c5b1026daca672b9696a25c343823c535c73dbce3bad563373fa1a platforms/qcm6490-idp/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/qcm6490-idp/ufs/patch0.xml +b6269add7ddfc0bec68e1780f5b437b7c44a0d8bb266f90e678eae042d72e21b platforms/qcm6490-idp/ufs/patch1.xml +ae392f62c30cd879c8f704bee9b08918008e6a40e5c6f0882228f2f84a8a2739 platforms/qcm6490-idp/ufs/patch2.xml +f7da06354afae918957d84ed12ec71c0a195a02555e709584172da4bba53e685 platforms/qcm6490-idp/ufs/patch3.xml +ba83c7bb1771ceca3d431bacb5378c18f0c02e85bd8e025646634d8078850d19 platforms/qcm6490-idp/ufs/patch4.xml +2194f97d271944dc975f0b7deaf772ef535f62946157b5831899a249a43f27ec platforms/qcm6490-idp/ufs/patch5.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/qcm6490-idp/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/qcm6490-idp/ufs/rawprogram0_BLANK_GPT.xml +14b80faeb1230f48070444dfb4522575cb221fb8ba94cf3e6a79289691e5eb44 platforms/qcm6490-idp/ufs/rawprogram0_WIPE_PARTITIONS.xml +f6b3238423bdd7cbe03de9fffaf7d2a671b3723d097a55f80a89b44cf9a82538 platforms/qcm6490-idp/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/qcm6490-idp/ufs/rawprogram1_BLANK_GPT.xml +92d64c23c5e26fb5da5f7e021d07e3e08fb54146620e86b9a6e9922726502c2c platforms/qcm6490-idp/ufs/rawprogram1_WIPE_PARTITIONS.xml +e7f099c32b8cea5bd3d2046507dfbbfa4b8220ba7b75fcd61ad1f1e3b383ba45 platforms/qcm6490-idp/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/qcm6490-idp/ufs/rawprogram2_BLANK_GPT.xml +a46834781b8f7460cb2301129fd7f6339ce7eda1a30dfe010f7c7f0fb25a7cf3 platforms/qcm6490-idp/ufs/rawprogram2_WIPE_PARTITIONS.xml +fff56507b0e9315070905625ba2ce565dd811443369f13e4168e73969888cca3 platforms/qcm6490-idp/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/qcm6490-idp/ufs/rawprogram3_BLANK_GPT.xml +cbc97a1fe929099d55f37e3addf89905a2d93fcbe3843715d2f7406b04bdac53 platforms/qcm6490-idp/ufs/rawprogram3_WIPE_PARTITIONS.xml +bca6d423a37ca2b18922760ceab9c7bb417a731f2b14b9977190eeef9fab6bd0 platforms/qcm6490-idp/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/qcm6490-idp/ufs/rawprogram4_BLANK_GPT.xml +c88b8bf7d387e3f688cc480cac527aafa7a798ff08986e9bfc5f133b10bd9e7f platforms/qcm6490-idp/ufs/rawprogram4_WIPE_PARTITIONS.xml +456a09459d5601db4f619505f1a8fdf22d84b6fa908b33413873e68ddd97191a platforms/qcm6490-idp/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/qcm6490-idp/ufs/rawprogram5_BLANK_GPT.xml +dd734f3c38bb9f40d5e61f87d4e04ada80537696cdba99d5e126dbd4fa959d87 platforms/qcm6490-idp/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/qcm6490-idp/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/qcm6490-idp/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/qcm6490-idp/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/qcm6490-idp/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/qcm6490-idp/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/qcm6490-idp/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/qcm6490-idp/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/qcm6490-idp/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/qcm6490-idp/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/qcm6490-idp/ufs/zeros_5sectors.bin +afc5a9882c75b4a4b76a8b4b77ac62128e031b96fbe0c095347cc1e0de88f34c platforms/qcs615-ride/emmc/contents.xml +72d6845d27707ba0bc7d795ceb714052dabbee5d542e6c084b5d99ae3f85c624 platforms/qcs615-ride/emmc/gpt_backup0.bin +e7a9ccb517426c9ea75d8f2daab90733aff224304d1c9805bb9fe9b6054c129d platforms/qcs615-ride/emmc/gpt_both0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/qcs615-ride/emmc/gpt_empty0.bin +17cdc0ea1fd050ca8ab9b62cca6cb7cd6d49532587c819869cf1c513f7cfe650 platforms/qcs615-ride/emmc/gpt_main0.bin +b9cad7ac7248a2a73b8f6e9e219a514a93177e42ba8e6963f3f0cb26e175fd84 platforms/qcs615-ride/emmc/partitions.xml +6b8b577c4b25179f0bd3473582e52833891bd71b3711a773d9912b7d62a6f40c platforms/qcs615-ride/emmc/patch0.xml +0bb511c39df8edf44110586ef144dc4114d8a496627e75707f9b6b8cf4f11d09 platforms/qcs615-ride/emmc/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/qcs615-ride/emmc/rawprogram0_BLANK_GPT.xml +e3943892d04e29586d3da8d6745482a77a9b3d73302c34f9db2268922e4d8185 platforms/qcs615-ride/emmc/rawprogram0_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/qcs615-ride/emmc/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/qcs615-ride/emmc/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/qcs615-ride/emmc/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/qcs615-ride/emmc/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/qcs615-ride/emmc/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/qcs615-ride/emmc/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/qcs615-ride/emmc/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/qcs615-ride/emmc/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/qcs615-ride/emmc/zeros_33sectors.bin +1e9f789eea485c245d74a0bef1e51d180d85dca8025d9758d7fd3df08ae2d50b platforms/qcs615-ride/ufs/contents.xml +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/qcs615-ride/ufs/gpt_backup0.bin +424106c12ba2acf0c9367c9e96d7a7a65d861066d63c1962b1ed6bef5495b0a3 platforms/qcs615-ride/ufs/gpt_backup1.bin +a94afbdfe665fea82e20bbe70dd806d50ffec9db4da049deff92df61f41e5cad platforms/qcs615-ride/ufs/gpt_backup2.bin +16c5144c092a2679ee5a8b034ed2ce0b5a107f0ad1a768ceb82afb46e3ef5615 platforms/qcs615-ride/ufs/gpt_backup3.bin +cfd2b38dfff12d875a6fd336a6d7e0773b8b743b45c43539c12d8502f4cd7de4 platforms/qcs615-ride/ufs/gpt_backup4.bin +043114fbdbc7d9189f519cea5238fd73b57c014d684f1c96fbf7a4e8819712a7 platforms/qcs615-ride/ufs/gpt_backup5.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/qcs615-ride/ufs/gpt_both0.bin +6acebf7aa55e990525ddad650c9152d96334bacf8bfddc1f4c9b5ff899ebbccd platforms/qcs615-ride/ufs/gpt_both1.bin +d878dfb88759d01fe4187fba404b9fce9929e6b974f3ca65ae89117d045b7701 platforms/qcs615-ride/ufs/gpt_both2.bin +b3604404957a4ca59635b2c2b778cee15f233fafd37c93cbaedad24f97f731fd platforms/qcs615-ride/ufs/gpt_both3.bin +2511d1dd34e273e65e7cd43470f771ffaf2bea18f60e5302b35900251dcf17fe platforms/qcs615-ride/ufs/gpt_both4.bin +0a682a4d3f7148f99bb464c156cb60b2d7544d5adfbbba2d4de338c98e6f31f1 platforms/qcs615-ride/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs615-ride/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs615-ride/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs615-ride/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs615-ride/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs615-ride/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs615-ride/ufs/gpt_empty5.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/qcs615-ride/ufs/gpt_main0.bin +c9ff9b6d201ed1418e892cb77ae21a99ff4dff55bb3183aa94a937b15c85aec5 platforms/qcs615-ride/ufs/gpt_main1.bin +e9059e523ac9ddc640bd6f9024dee80403e0b24cb3c4a8f94a007e739f133a7c platforms/qcs615-ride/ufs/gpt_main2.bin +bf51d6a26da8e0abcf2b14b8ef65ca093d4468165a77a5415c61b07b1f2e1b01 platforms/qcs615-ride/ufs/gpt_main3.bin +d54d34eb993e374f2c15f3918ec13144a5c0f818060276bf93e8eeb88ed46690 platforms/qcs615-ride/ufs/gpt_main4.bin +fbc6450e013bac72860121aca4e69d219f314cbe3f33e0f0df3431019e31d32a platforms/qcs615-ride/ufs/gpt_main5.bin +4efdf764ccb82028a25bd891af3b77a6ae59d591de97cf1396e41e969d0f3be3 platforms/qcs615-ride/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/qcs615-ride/ufs/patch0.xml +b6269add7ddfc0bec68e1780f5b437b7c44a0d8bb266f90e678eae042d72e21b platforms/qcs615-ride/ufs/patch1.xml +ae392f62c30cd879c8f704bee9b08918008e6a40e5c6f0882228f2f84a8a2739 platforms/qcs615-ride/ufs/patch2.xml +f7da06354afae918957d84ed12ec71c0a195a02555e709584172da4bba53e685 platforms/qcs615-ride/ufs/patch3.xml +642c436fc6abbc6b508c07cb0577b2f23fc74a9b321de83c520022bd53bd0ccf platforms/qcs615-ride/ufs/patch4.xml +fe0061dc155ffddef55745b4b6049e4b06fc4c1fdeb55e4fb3bc96d2978b671a platforms/qcs615-ride/ufs/patch5.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/qcs615-ride/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/qcs615-ride/ufs/rawprogram0_BLANK_GPT.xml +6e144d3730cd61a0d866fbf068f31294caddf742423ffae67020143494b155fa platforms/qcs615-ride/ufs/rawprogram0_WIPE_PARTITIONS.xml +f6b3238423bdd7cbe03de9fffaf7d2a671b3723d097a55f80a89b44cf9a82538 platforms/qcs615-ride/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/qcs615-ride/ufs/rawprogram1_BLANK_GPT.xml +92d64c23c5e26fb5da5f7e021d07e3e08fb54146620e86b9a6e9922726502c2c platforms/qcs615-ride/ufs/rawprogram1_WIPE_PARTITIONS.xml +e7f099c32b8cea5bd3d2046507dfbbfa4b8220ba7b75fcd61ad1f1e3b383ba45 platforms/qcs615-ride/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/qcs615-ride/ufs/rawprogram2_BLANK_GPT.xml +a46834781b8f7460cb2301129fd7f6339ce7eda1a30dfe010f7c7f0fb25a7cf3 platforms/qcs615-ride/ufs/rawprogram2_WIPE_PARTITIONS.xml +fff56507b0e9315070905625ba2ce565dd811443369f13e4168e73969888cca3 platforms/qcs615-ride/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/qcs615-ride/ufs/rawprogram3_BLANK_GPT.xml +cbc97a1fe929099d55f37e3addf89905a2d93fcbe3843715d2f7406b04bdac53 platforms/qcs615-ride/ufs/rawprogram3_WIPE_PARTITIONS.xml +294e5982c8d2e015c5777b8917fe2aa8d40bbc9779864c92b655c7072a5de8bd platforms/qcs615-ride/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/qcs615-ride/ufs/rawprogram4_BLANK_GPT.xml +889a07313b5199395bbc2a0545273bfe020b29b6bf294b175e7fb834f579b034 platforms/qcs615-ride/ufs/rawprogram4_WIPE_PARTITIONS.xml +01e872c6745bbc06cca073aee751668549f9c990614fa96846e19da88f0ced88 platforms/qcs615-ride/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/qcs615-ride/ufs/rawprogram5_BLANK_GPT.xml +0ecee72c804a99f77cbcbbf2e986e880119f4e2161e1a03ddc2e5ceb8a2cd461 platforms/qcs615-ride/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/qcs615-ride/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/qcs615-ride/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/qcs615-ride/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/qcs615-ride/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/qcs615-ride/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/qcs615-ride/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/qcs615-ride/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/qcs615-ride/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/qcs615-ride/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/qcs615-ride/ufs/zeros_5sectors.bin +68fb89fe0bd5cf91e477b9218108229d31025e5779ac08d8995892911ade8170 platforms/qcs6490-rb3gen2/ufs/contents.xml +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/qcs6490-rb3gen2/ufs/gpt_backup0.bin +424106c12ba2acf0c9367c9e96d7a7a65d861066d63c1962b1ed6bef5495b0a3 platforms/qcs6490-rb3gen2/ufs/gpt_backup1.bin +a94afbdfe665fea82e20bbe70dd806d50ffec9db4da049deff92df61f41e5cad platforms/qcs6490-rb3gen2/ufs/gpt_backup2.bin +16c5144c092a2679ee5a8b034ed2ce0b5a107f0ad1a768ceb82afb46e3ef5615 platforms/qcs6490-rb3gen2/ufs/gpt_backup3.bin +0ee747c377e5c8f4aef221d9aa2687cee55d88d8cdbb56559b4273d6e303d2d9 platforms/qcs6490-rb3gen2/ufs/gpt_backup4.bin +c91eab5cc56cd364235a1bc486b23d947e889b4c7f02ca3e62cd7904dde6679d platforms/qcs6490-rb3gen2/ufs/gpt_backup5.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/qcs6490-rb3gen2/ufs/gpt_both0.bin +6acebf7aa55e990525ddad650c9152d96334bacf8bfddc1f4c9b5ff899ebbccd platforms/qcs6490-rb3gen2/ufs/gpt_both1.bin +d878dfb88759d01fe4187fba404b9fce9929e6b974f3ca65ae89117d045b7701 platforms/qcs6490-rb3gen2/ufs/gpt_both2.bin +b3604404957a4ca59635b2c2b778cee15f233fafd37c93cbaedad24f97f731fd platforms/qcs6490-rb3gen2/ufs/gpt_both3.bin +165208be4a8161856d09d346c3a3c536b8d7600ad18c7ff8b2d50eb2f7ce1060 platforms/qcs6490-rb3gen2/ufs/gpt_both4.bin +5e5a25d6a9bb10aad9d084f1d181da33e184522048c537a20654fbfb587b2877 platforms/qcs6490-rb3gen2/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs6490-rb3gen2/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs6490-rb3gen2/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs6490-rb3gen2/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs6490-rb3gen2/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs6490-rb3gen2/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs6490-rb3gen2/ufs/gpt_empty5.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/qcs6490-rb3gen2/ufs/gpt_main0.bin +c9ff9b6d201ed1418e892cb77ae21a99ff4dff55bb3183aa94a937b15c85aec5 platforms/qcs6490-rb3gen2/ufs/gpt_main1.bin +e9059e523ac9ddc640bd6f9024dee80403e0b24cb3c4a8f94a007e739f133a7c platforms/qcs6490-rb3gen2/ufs/gpt_main2.bin +bf51d6a26da8e0abcf2b14b8ef65ca093d4468165a77a5415c61b07b1f2e1b01 platforms/qcs6490-rb3gen2/ufs/gpt_main3.bin +662787616f527a937023028a30eb9560752b259a8029efb6842545059cfb77e2 platforms/qcs6490-rb3gen2/ufs/gpt_main4.bin +53c5bdd92ec47fa568d1f23587a1907d19d2c59a0a27d3c2237df343c4f223e5 platforms/qcs6490-rb3gen2/ufs/gpt_main5.bin +dcd42db769c5b1026daca672b9696a25c343823c535c73dbce3bad563373fa1a platforms/qcs6490-rb3gen2/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/qcs6490-rb3gen2/ufs/patch0.xml +b6269add7ddfc0bec68e1780f5b437b7c44a0d8bb266f90e678eae042d72e21b platforms/qcs6490-rb3gen2/ufs/patch1.xml +ae392f62c30cd879c8f704bee9b08918008e6a40e5c6f0882228f2f84a8a2739 platforms/qcs6490-rb3gen2/ufs/patch2.xml +f7da06354afae918957d84ed12ec71c0a195a02555e709584172da4bba53e685 platforms/qcs6490-rb3gen2/ufs/patch3.xml +ba83c7bb1771ceca3d431bacb5378c18f0c02e85bd8e025646634d8078850d19 platforms/qcs6490-rb3gen2/ufs/patch4.xml +2194f97d271944dc975f0b7deaf772ef535f62946157b5831899a249a43f27ec platforms/qcs6490-rb3gen2/ufs/patch5.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/qcs6490-rb3gen2/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/qcs6490-rb3gen2/ufs/rawprogram0_BLANK_GPT.xml +14b80faeb1230f48070444dfb4522575cb221fb8ba94cf3e6a79289691e5eb44 platforms/qcs6490-rb3gen2/ufs/rawprogram0_WIPE_PARTITIONS.xml +f6b3238423bdd7cbe03de9fffaf7d2a671b3723d097a55f80a89b44cf9a82538 platforms/qcs6490-rb3gen2/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/qcs6490-rb3gen2/ufs/rawprogram1_BLANK_GPT.xml +92d64c23c5e26fb5da5f7e021d07e3e08fb54146620e86b9a6e9922726502c2c platforms/qcs6490-rb3gen2/ufs/rawprogram1_WIPE_PARTITIONS.xml +e7f099c32b8cea5bd3d2046507dfbbfa4b8220ba7b75fcd61ad1f1e3b383ba45 platforms/qcs6490-rb3gen2/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/qcs6490-rb3gen2/ufs/rawprogram2_BLANK_GPT.xml +a46834781b8f7460cb2301129fd7f6339ce7eda1a30dfe010f7c7f0fb25a7cf3 platforms/qcs6490-rb3gen2/ufs/rawprogram2_WIPE_PARTITIONS.xml +fff56507b0e9315070905625ba2ce565dd811443369f13e4168e73969888cca3 platforms/qcs6490-rb3gen2/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/qcs6490-rb3gen2/ufs/rawprogram3_BLANK_GPT.xml +cbc97a1fe929099d55f37e3addf89905a2d93fcbe3843715d2f7406b04bdac53 platforms/qcs6490-rb3gen2/ufs/rawprogram3_WIPE_PARTITIONS.xml +bca6d423a37ca2b18922760ceab9c7bb417a731f2b14b9977190eeef9fab6bd0 platforms/qcs6490-rb3gen2/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/qcs6490-rb3gen2/ufs/rawprogram4_BLANK_GPT.xml +c88b8bf7d387e3f688cc480cac527aafa7a798ff08986e9bfc5f133b10bd9e7f platforms/qcs6490-rb3gen2/ufs/rawprogram4_WIPE_PARTITIONS.xml +456a09459d5601db4f619505f1a8fdf22d84b6fa908b33413873e68ddd97191a platforms/qcs6490-rb3gen2/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/qcs6490-rb3gen2/ufs/rawprogram5_BLANK_GPT.xml +dd734f3c38bb9f40d5e61f87d4e04ada80537696cdba99d5e126dbd4fa959d87 platforms/qcs6490-rb3gen2/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/qcs6490-rb3gen2/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/qcs6490-rb3gen2/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/qcs6490-rb3gen2/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/qcs6490-rb3gen2/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/qcs6490-rb3gen2/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/qcs6490-rb3gen2/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/qcs6490-rb3gen2/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/qcs6490-rb3gen2/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/qcs6490-rb3gen2/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/qcs6490-rb3gen2/ufs/zeros_5sectors.bin +f8b8b5bd32cdcf867cd04dfda8b0631f7b184f40811d18072964b41f75e93479 platforms/qcs8275-monza/emmc/gpt_backup0.bin +2e13b3450d03d45927862a8a75cc50cc4714d210dae64a874af0ab67e5b1500b platforms/qcs8275-monza/emmc/gpt_backup1.bin +a1c1510c0183b31d7a430399232e479bda517d9dd05bd7a017d36f5e5405d35a platforms/qcs8275-monza/emmc/gpt_both0.bin +1400af4690226ad403c4a0f2dcec3a97bdb9d3df874bb0efb9fe4223329187ec platforms/qcs8275-monza/emmc/gpt_both1.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/qcs8275-monza/emmc/gpt_empty0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/qcs8275-monza/emmc/gpt_empty1.bin +23c5d2ea256946c59cf65b9da46541212f1da889c4238bfc75bea78bb1bdd087 platforms/qcs8275-monza/emmc/gpt_main0.bin +0af41c68e029ee50f0049c7025023962b1f68e38a4bf39ec9c65b445e0447e34 platforms/qcs8275-monza/emmc/gpt_main1.bin +c4ff0186275a08561a2b4c30699a2ddaa87ecf2670394f9bc559b815f7f8d5db platforms/qcs8275-monza/emmc/partitions.xml +45c7b3838f44faadf0e60c0283cedf390cdaad4751e792f5cd1a7a0107e49268 platforms/qcs8275-monza/emmc/patch0.xml +7b885a56c95bd1497d2153c5d637ad874747f73251ab59c53df2b1367db21234 platforms/qcs8275-monza/emmc/patch1.xml +959e2e884e5cfeb0fe6ac3ed1bf7d1a970ee51912c27cb0a89069a80672b4b40 platforms/qcs8275-monza/emmc/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/qcs8275-monza/emmc/rawprogram0_BLANK_GPT.xml +de2033075f33516446befad74bf549b6f81515344c5699c5a6bfe59f91e7a1ee platforms/qcs8275-monza/emmc/rawprogram0_WIPE_PARTITIONS.xml +deb5fdefad1dd021e5f8f966706913934f95ecd30c9aac561da256f7105025cf platforms/qcs8275-monza/emmc/rawprogram1.xml +04377432e2b8e50e2751cd0eca662f59c976f3133cd89cd21a831df77c3acf81 platforms/qcs8275-monza/emmc/rawprogram1_BLANK_GPT.xml +885ac377348b30a3d46ebdc69b91ce9a0785e6be9069f358d45a4ae2f05ec5d4 platforms/qcs8275-monza/emmc/rawprogram1_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/qcs8275-monza/emmc/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/qcs8275-monza/emmc/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/qcs8275-monza/emmc/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/qcs8275-monza/emmc/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/qcs8275-monza/emmc/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/qcs8275-monza/emmc/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/qcs8275-monza/emmc/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/qcs8275-monza/emmc/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/qcs8275-monza/emmc/zeros_33sectors.bin +b73a107618798266a9db220cecf2c4f4773e66e0fbb6fcd7c89c0c345d40004d platforms/qcs8300-ride-sx/ufs/contents.xml +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/qcs8300-ride-sx/ufs/gpt_backup0.bin +e8ae8192d202411820f8c6a2a8967a186293d1b7702cd434d67d9509020881bc platforms/qcs8300-ride-sx/ufs/gpt_backup1.bin +b68ccdcaea034c677d617c64e4e92999f6fd5957baceb963ae06b93c0b5d0669 platforms/qcs8300-ride-sx/ufs/gpt_backup2.bin +5dd7c614bc2fbb50ae3e6f9d9a60652d2c53d00555b0a43caaa5ac3430876b1f platforms/qcs8300-ride-sx/ufs/gpt_backup3.bin +b5d9f0172d9a0c42e83756d960a46557e4908b863af99f732869f814fd59d757 platforms/qcs8300-ride-sx/ufs/gpt_backup4.bin +798d3a02b34c19c990f3d1109e341a396029ea8f0a5f77525598c10d2397ef9f platforms/qcs8300-ride-sx/ufs/gpt_backup5.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/qcs8300-ride-sx/ufs/gpt_both0.bin +baebd5164eebc27df4f8a7fbbc5583a451126ce9f6c2cf47ad8b0c91e3f27a69 platforms/qcs8300-ride-sx/ufs/gpt_both1.bin +6ce3750005b15baaf95b499a5eb1c450db801c7c5ee5cca9e5f80657310d4e26 platforms/qcs8300-ride-sx/ufs/gpt_both2.bin +73a42d6931c5614fba43f6270b42d3a8ddc48d3186ba3354e5cd6a12737b2d3d platforms/qcs8300-ride-sx/ufs/gpt_both3.bin +7a602811f0a4759b9884c6b09d06b1f62f9553eeb913353bd0683e20cb460696 platforms/qcs8300-ride-sx/ufs/gpt_both4.bin +f914ea371fb3a351ceebecea2a0af2ba93a27f3b6653be7bf7dc4802b27744ec platforms/qcs8300-ride-sx/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs8300-ride-sx/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs8300-ride-sx/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs8300-ride-sx/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs8300-ride-sx/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs8300-ride-sx/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs8300-ride-sx/ufs/gpt_empty5.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/qcs8300-ride-sx/ufs/gpt_main0.bin +3cf3e516a82513eb8666362f9518be6b65564cb1e720a8241c59c6895feb3496 platforms/qcs8300-ride-sx/ufs/gpt_main1.bin +7ae49864788c453c5ce28618b4f6d23f3a679e582386af0b0178c3d4972f2f72 platforms/qcs8300-ride-sx/ufs/gpt_main2.bin +49304982c0def01e39143407010af3da2a8434adc622439ed9b78e2c1b2522cf platforms/qcs8300-ride-sx/ufs/gpt_main3.bin +cc94b6fda4b3d443685a1f63dedc85d834b6aa3ef826f9946264b21b73bae46f platforms/qcs8300-ride-sx/ufs/gpt_main4.bin +cee60cecbb40ec97a2971e0aefe13969a8bc67378c5ad05712071f02f46a7022 platforms/qcs8300-ride-sx/ufs/gpt_main5.bin +965c20568e3c14e056fb784f463e1be48fc2294572b46c9e0309eecd371a576b platforms/qcs8300-ride-sx/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/qcs8300-ride-sx/ufs/patch0.xml +b6269add7ddfc0bec68e1780f5b437b7c44a0d8bb266f90e678eae042d72e21b platforms/qcs8300-ride-sx/ufs/patch1.xml +ae392f62c30cd879c8f704bee9b08918008e6a40e5c6f0882228f2f84a8a2739 platforms/qcs8300-ride-sx/ufs/patch2.xml +f7da06354afae918957d84ed12ec71c0a195a02555e709584172da4bba53e685 platforms/qcs8300-ride-sx/ufs/patch3.xml +59e5e6a9bd1f2a9ce42bd5d21f44d40a4849d9035e850a4f946526fab18c4513 platforms/qcs8300-ride-sx/ufs/patch4.xml +fe0061dc155ffddef55745b4b6049e4b06fc4c1fdeb55e4fb3bc96d2978b671a platforms/qcs8300-ride-sx/ufs/patch5.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/qcs8300-ride-sx/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/qcs8300-ride-sx/ufs/rawprogram0_BLANK_GPT.xml +6e144d3730cd61a0d866fbf068f31294caddf742423ffae67020143494b155fa platforms/qcs8300-ride-sx/ufs/rawprogram0_WIPE_PARTITIONS.xml +f253ed6f75fc82b2bbb3554eda6a986c90642f239e4ac7e15e2b6a6eb1059dd6 platforms/qcs8300-ride-sx/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/qcs8300-ride-sx/ufs/rawprogram1_BLANK_GPT.xml +dfcd1dad754b0b660d6cc554efebc4f20f9e4bd4c4f3c92834891975b3101ccc platforms/qcs8300-ride-sx/ufs/rawprogram1_WIPE_PARTITIONS.xml +4351278c0535cdd1c12fe7f7feb25256ae87f08a444689d28f0ec99751fa5b74 platforms/qcs8300-ride-sx/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/qcs8300-ride-sx/ufs/rawprogram2_BLANK_GPT.xml +d90ad37e5e89d356dd7da449429ab422907f925cd45db2968b48624220bed6d1 platforms/qcs8300-ride-sx/ufs/rawprogram2_WIPE_PARTITIONS.xml +195a8bad380249295b6de5bba676305280191c03eb38b1d57a48b958b69d20c7 platforms/qcs8300-ride-sx/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/qcs8300-ride-sx/ufs/rawprogram3_BLANK_GPT.xml +b3f7f52c9bc498ecdb79c1d5bb5416ef4b8df5a8f7c972813bd899acc19f721a platforms/qcs8300-ride-sx/ufs/rawprogram3_WIPE_PARTITIONS.xml +810c082996020fb3dc5f4c5558bd372ed590e2b81c8153107ecd1054e2302cdf platforms/qcs8300-ride-sx/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/qcs8300-ride-sx/ufs/rawprogram4_BLANK_GPT.xml +babb49ea2065c45f81a0ff04a83171743e4576c7f2281a1baf72775f28ba743d platforms/qcs8300-ride-sx/ufs/rawprogram4_WIPE_PARTITIONS.xml +01e872c6745bbc06cca073aee751668549f9c990614fa96846e19da88f0ced88 platforms/qcs8300-ride-sx/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/qcs8300-ride-sx/ufs/rawprogram5_BLANK_GPT.xml +0ecee72c804a99f77cbcbbf2e986e880119f4e2161e1a03ddc2e5ceb8a2cd461 platforms/qcs8300-ride-sx/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/qcs8300-ride-sx/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/qcs8300-ride-sx/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/qcs8300-ride-sx/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/qcs8300-ride-sx/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/qcs8300-ride-sx/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/qcs8300-ride-sx/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/qcs8300-ride-sx/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/qcs8300-ride-sx/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/qcs8300-ride-sx/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/qcs8300-ride-sx/ufs/zeros_5sectors.bin +0797d92263501aa6a54ec20d6859a6209df8dca3d99ad6a890871a1447f4df07 platforms/qcs9100-ride-sx/ufs/contents.xml +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/qcs9100-ride-sx/ufs/gpt_backup0.bin +e8ae8192d202411820f8c6a2a8967a186293d1b7702cd434d67d9509020881bc platforms/qcs9100-ride-sx/ufs/gpt_backup1.bin +b68ccdcaea034c677d617c64e4e92999f6fd5957baceb963ae06b93c0b5d0669 platforms/qcs9100-ride-sx/ufs/gpt_backup2.bin +5dd7c614bc2fbb50ae3e6f9d9a60652d2c53d00555b0a43caaa5ac3430876b1f platforms/qcs9100-ride-sx/ufs/gpt_backup3.bin +b5d9f0172d9a0c42e83756d960a46557e4908b863af99f732869f814fd59d757 platforms/qcs9100-ride-sx/ufs/gpt_backup4.bin +798d3a02b34c19c990f3d1109e341a396029ea8f0a5f77525598c10d2397ef9f platforms/qcs9100-ride-sx/ufs/gpt_backup5.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/qcs9100-ride-sx/ufs/gpt_both0.bin +baebd5164eebc27df4f8a7fbbc5583a451126ce9f6c2cf47ad8b0c91e3f27a69 platforms/qcs9100-ride-sx/ufs/gpt_both1.bin +6ce3750005b15baaf95b499a5eb1c450db801c7c5ee5cca9e5f80657310d4e26 platforms/qcs9100-ride-sx/ufs/gpt_both2.bin +73a42d6931c5614fba43f6270b42d3a8ddc48d3186ba3354e5cd6a12737b2d3d platforms/qcs9100-ride-sx/ufs/gpt_both3.bin +7a602811f0a4759b9884c6b09d06b1f62f9553eeb913353bd0683e20cb460696 platforms/qcs9100-ride-sx/ufs/gpt_both4.bin +f914ea371fb3a351ceebecea2a0af2ba93a27f3b6653be7bf7dc4802b27744ec platforms/qcs9100-ride-sx/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs9100-ride-sx/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs9100-ride-sx/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs9100-ride-sx/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs9100-ride-sx/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs9100-ride-sx/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qcs9100-ride-sx/ufs/gpt_empty5.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/qcs9100-ride-sx/ufs/gpt_main0.bin +3cf3e516a82513eb8666362f9518be6b65564cb1e720a8241c59c6895feb3496 platforms/qcs9100-ride-sx/ufs/gpt_main1.bin +7ae49864788c453c5ce28618b4f6d23f3a679e582386af0b0178c3d4972f2f72 platforms/qcs9100-ride-sx/ufs/gpt_main2.bin +49304982c0def01e39143407010af3da2a8434adc622439ed9b78e2c1b2522cf platforms/qcs9100-ride-sx/ufs/gpt_main3.bin +cc94b6fda4b3d443685a1f63dedc85d834b6aa3ef826f9946264b21b73bae46f platforms/qcs9100-ride-sx/ufs/gpt_main4.bin +cee60cecbb40ec97a2971e0aefe13969a8bc67378c5ad05712071f02f46a7022 platforms/qcs9100-ride-sx/ufs/gpt_main5.bin +f29f82f1a52bca3638674832104f2df826b16de338bb5a5c90023187c609a8da platforms/qcs9100-ride-sx/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/qcs9100-ride-sx/ufs/patch0.xml +b6269add7ddfc0bec68e1780f5b437b7c44a0d8bb266f90e678eae042d72e21b platforms/qcs9100-ride-sx/ufs/patch1.xml +ae392f62c30cd879c8f704bee9b08918008e6a40e5c6f0882228f2f84a8a2739 platforms/qcs9100-ride-sx/ufs/patch2.xml +f7da06354afae918957d84ed12ec71c0a195a02555e709584172da4bba53e685 platforms/qcs9100-ride-sx/ufs/patch3.xml +59e5e6a9bd1f2a9ce42bd5d21f44d40a4849d9035e850a4f946526fab18c4513 platforms/qcs9100-ride-sx/ufs/patch4.xml +fe0061dc155ffddef55745b4b6049e4b06fc4c1fdeb55e4fb3bc96d2978b671a platforms/qcs9100-ride-sx/ufs/patch5.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/qcs9100-ride-sx/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/qcs9100-ride-sx/ufs/rawprogram0_BLANK_GPT.xml +25efea39fb897cc9471c96fd32df9423a6964449161ce225dad635a3648a61e3 platforms/qcs9100-ride-sx/ufs/rawprogram0_WIPE_PARTITIONS.xml +f253ed6f75fc82b2bbb3554eda6a986c90642f239e4ac7e15e2b6a6eb1059dd6 platforms/qcs9100-ride-sx/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/qcs9100-ride-sx/ufs/rawprogram1_BLANK_GPT.xml +dfcd1dad754b0b660d6cc554efebc4f20f9e4bd4c4f3c92834891975b3101ccc platforms/qcs9100-ride-sx/ufs/rawprogram1_WIPE_PARTITIONS.xml +4351278c0535cdd1c12fe7f7feb25256ae87f08a444689d28f0ec99751fa5b74 platforms/qcs9100-ride-sx/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/qcs9100-ride-sx/ufs/rawprogram2_BLANK_GPT.xml +d90ad37e5e89d356dd7da449429ab422907f925cd45db2968b48624220bed6d1 platforms/qcs9100-ride-sx/ufs/rawprogram2_WIPE_PARTITIONS.xml +195a8bad380249295b6de5bba676305280191c03eb38b1d57a48b958b69d20c7 platforms/qcs9100-ride-sx/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/qcs9100-ride-sx/ufs/rawprogram3_BLANK_GPT.xml +b3f7f52c9bc498ecdb79c1d5bb5416ef4b8df5a8f7c972813bd899acc19f721a platforms/qcs9100-ride-sx/ufs/rawprogram3_WIPE_PARTITIONS.xml +810c082996020fb3dc5f4c5558bd372ed590e2b81c8153107ecd1054e2302cdf platforms/qcs9100-ride-sx/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/qcs9100-ride-sx/ufs/rawprogram4_BLANK_GPT.xml +babb49ea2065c45f81a0ff04a83171743e4576c7f2281a1baf72775f28ba743d platforms/qcs9100-ride-sx/ufs/rawprogram4_WIPE_PARTITIONS.xml +01e872c6745bbc06cca073aee751668549f9c990614fa96846e19da88f0ced88 platforms/qcs9100-ride-sx/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/qcs9100-ride-sx/ufs/rawprogram5_BLANK_GPT.xml +0ecee72c804a99f77cbcbbf2e986e880119f4e2161e1a03ddc2e5ceb8a2cd461 platforms/qcs9100-ride-sx/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/qcs9100-ride-sx/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/qcs9100-ride-sx/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/qcs9100-ride-sx/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/qcs9100-ride-sx/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/qcs9100-ride-sx/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/qcs9100-ride-sx/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/qcs9100-ride-sx/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/qcs9100-ride-sx/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/qcs9100-ride-sx/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/qcs9100-ride-sx/ufs/zeros_5sectors.bin +c3bba7e25185dddc4e4d7583564186545a3a8f1bc1b5ebe275058a86a4fcd3ef platforms/qrb2210-rb1/emmc/gpt_backup0.bin +ebfff8f3aeb726d33e5ec25d13d4aaff854c3b189f045c96f73be809b85484c0 platforms/qrb2210-rb1/emmc/gpt_both0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/qrb2210-rb1/emmc/gpt_empty0.bin +c65f565ba146bd661b6cb8082bee9ccf6469c18c5761fd260d0bc5248784e015 platforms/qrb2210-rb1/emmc/gpt_main0.bin +58357ef679546d6aad959449f383f473b0df4828f70d03a5976b1ed0978f0173 platforms/qrb2210-rb1/emmc/partitions.xml +8582c444977a3e9b9a5e31cbe852d45f45b2c60558928582bd00b7a04497a202 platforms/qrb2210-rb1/emmc/patch0.xml +8a70ee0277b82d6fdc91685e906ee8b2b97e94330cfc1be75b305bd907a0317e platforms/qrb2210-rb1/emmc/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/qrb2210-rb1/emmc/rawprogram0_BLANK_GPT.xml +06117a072879fa83a970d6e860b7aa1565639b6f19ae867ea32349dc04ffdccc platforms/qrb2210-rb1/emmc/rawprogram0_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/qrb2210-rb1/emmc/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/qrb2210-rb1/emmc/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/qrb2210-rb1/emmc/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/qrb2210-rb1/emmc/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/qrb2210-rb1/emmc/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/qrb2210-rb1/emmc/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/qrb2210-rb1/emmc/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/qrb2210-rb1/emmc/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/qrb2210-rb1/emmc/zeros_33sectors.bin +2e7944895a944dd713111a4eb7fda514950b55cccabe47a7d1cc0c5932a190e4 platforms/qrb2210-unoq/emmc-16GB-arduino/gpt_backup0.bin +1223834bf2069b8dd5b36e37b41a03707481003de617aa008c2a83398c992dac platforms/qrb2210-unoq/emmc-16GB-arduino/gpt_both0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/qrb2210-unoq/emmc-16GB-arduino/gpt_empty0.bin +7315b179c0f8885c02006aae3385d018adbff98fa23d76c429de295aec440570 platforms/qrb2210-unoq/emmc-16GB-arduino/gpt_main0.bin +4c817cab2a857e7d1389233ff5c3cfe49001d3f69bec76a79e3e0694916e009d platforms/qrb2210-unoq/emmc-16GB-arduino/partitions.xml +f32a73eba21c302ceb463343cd5ed8e2e747c578e9e68744985ec057d4266df5 platforms/qrb2210-unoq/emmc-16GB-arduino/patch0.xml +fe389e30337a1956b6f5ce3e0409e2a5aad02f59e758219ac76b4700d0533573 platforms/qrb2210-unoq/emmc-16GB-arduino/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/qrb2210-unoq/emmc-16GB-arduino/rawprogram0_BLANK_GPT.xml +27be4ca34fa5c452c6133ca0963a46a93f8033c61f1f4bb1f4e8bc4a9681521f platforms/qrb2210-unoq/emmc-16GB-arduino/rawprogram0_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/qrb2210-unoq/emmc-16GB-arduino/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/qrb2210-unoq/emmc-16GB-arduino/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/qrb2210-unoq/emmc-16GB-arduino/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/qrb2210-unoq/emmc-16GB-arduino/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/qrb2210-unoq/emmc-16GB-arduino/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/qrb2210-unoq/emmc-16GB-arduino/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/qrb2210-unoq/emmc-16GB-arduino/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/qrb2210-unoq/emmc-16GB-arduino/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/qrb2210-unoq/emmc-16GB-arduino/zeros_33sectors.bin +a98f5db25938c235b2f2a5f36c3e7cf517e3f79097eefdc6117ff40d9d13e700 platforms/qrb2210-unoq/emmc-16GB/gpt_backup0.bin +6d706b080c12ebb06c9e3e36f36790f9f620dd29d70905fc3e79150420f9777c platforms/qrb2210-unoq/emmc-16GB/gpt_both0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/qrb2210-unoq/emmc-16GB/gpt_empty0.bin +d8c73a8a61d3ff8c37153afc7220ed3997f6cedb38fc74fcb0b00d8cba10e516 platforms/qrb2210-unoq/emmc-16GB/gpt_main0.bin +9a95b4334ee3f08a598208ab96347ebe523df8bd4ac12efc47897bd3f12cb640 platforms/qrb2210-unoq/emmc-16GB/partitions.xml +a7bea79a4b737922ffbc79bd63232515ca1ff7643bd611b81a8b77b93eb6c4b3 platforms/qrb2210-unoq/emmc-16GB/patch0.xml +475631cfad8513bdf143b079212207b34de90b24d9d7ec60f93ac756974526d5 platforms/qrb2210-unoq/emmc-16GB/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/qrb2210-unoq/emmc-16GB/rawprogram0_BLANK_GPT.xml +5e5668662755d83dc7ce60b545f645a8be4f3cdf7872ec9a6a2d36619685b7ac platforms/qrb2210-unoq/emmc-16GB/rawprogram0_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/qrb2210-unoq/emmc-16GB/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/qrb2210-unoq/emmc-16GB/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/qrb2210-unoq/emmc-16GB/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/qrb2210-unoq/emmc-16GB/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/qrb2210-unoq/emmc-16GB/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/qrb2210-unoq/emmc-16GB/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/qrb2210-unoq/emmc-16GB/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/qrb2210-unoq/emmc-16GB/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/qrb2210-unoq/emmc-16GB/zeros_33sectors.bin +6dfd56807fd5d319b88bebd4dd8159b44064bd8f309e56921f06334c91fd6657 platforms/qrb4210-rb2/emmc/gpt_backup0.bin +3ed8e9514d8e3b1fefb9d4292e1dd97375e48b85ab57bf6b2671db40c2da7014 platforms/qrb4210-rb2/emmc/gpt_both0.bin +65b63c1bae6e614a126713b3635886c64e6c61c5b5fd907caca2ab88e55723b4 platforms/qrb4210-rb2/emmc/gpt_empty0.bin +54051fd4eae6f9b504dd8f6b66c2366bcdb76d5ee1bb217f5505d3dbe2319df7 platforms/qrb4210-rb2/emmc/gpt_main0.bin +f5ecb24188f093d4a2bd7d2974a66ce8ae2bd1c193db24fdb40269bd00abc109 platforms/qrb4210-rb2/emmc/partitions.xml +63d74b16d5782611e568e0b61e89a538294ba74b02890ea3a03f28f0938c5b25 platforms/qrb4210-rb2/emmc/patch0.xml +943c89df1320203b4a398442060847fb84a91c67f17ffa50e8f5c8df74994a5f platforms/qrb4210-rb2/emmc/rawprogram0.xml +e1087465464de3b9a56d7ae2eaf6a9f45586e2562cb995bff7f640f6cecd501d platforms/qrb4210-rb2/emmc/rawprogram0_BLANK_GPT.xml +32a07b69aef350d7fb1e3878f05efec4305c0fad9f58da3dfb5d85e27bd15071 platforms/qrb4210-rb2/emmc/rawprogram0_WIPE_PARTITIONS.xml +126184b55af24def33bea5fd4020e401490f4a20379b51a6f2f93a5e98dd49c0 platforms/qrb4210-rb2/emmc/wipe_rawprogram_PHY0.xml +e832958aba95c3f4d40c1c665cb2faef9e607240c148bcf64f3a001c8b6b9110 platforms/qrb4210-rb2/emmc/wipe_rawprogram_PHY1.xml +69e3917dd734c33ed25759c7731d291d862b6b1e99eef52278b003291eb1d0ff platforms/qrb4210-rb2/emmc/wipe_rawprogram_PHY2.xml +d0b4593e2130d3bdf6499b7350be4e73ee6c2c0afc79d493f90872798ca6241c platforms/qrb4210-rb2/emmc/wipe_rawprogram_PHY4.xml +f02ec93f5e05fcb9346d2568518a29fb8728570acb178620a2f1ffe608e806c8 platforms/qrb4210-rb2/emmc/wipe_rawprogram_PHY5.xml +f61da760e2f4c756dcae31caa15c8c10e7de1d4891f52010177e93bb02cc6bff platforms/qrb4210-rb2/emmc/wipe_rawprogram_PHY6.xml +f10f4221dac25b805194c19976f5a3aef26d9fe60179701439dc1379db34d90f platforms/qrb4210-rb2/emmc/wipe_rawprogram_PHY7.xml +076a27c79e5ace2a3d47f9dd2e83e4ff6ea8872b3c2218f66c92b89b55f36560 platforms/qrb4210-rb2/emmc/zeros_1sector.bin +f57511198cd295e9187ab5e6153bd837c4ee91d0217ea593d6b767ca37fa74c2 platforms/qrb4210-rb2/emmc/zeros_33sectors.bin +af2bec6150884b3af1c4f5a16ba2bbb87e854afa6639bd30215eb5ef0c4e6ccc platforms/qrb5165-rb5/ufs/gpt_backup0.bin +5ee1878689c0b5d5a664cb0dc522155a03ca2b85e1cfd252e2be9850e5d3a4d4 platforms/qrb5165-rb5/ufs/gpt_backup1.bin +ae9535b101734c863c04ed3908a1168d6f8476d66aff2ce19ca4802b6f7c35ab platforms/qrb5165-rb5/ufs/gpt_backup2.bin +4d136b3276cc163b622b0e45fc3ceff3307b6ea66fd5d7caaa4be410621c401f platforms/qrb5165-rb5/ufs/gpt_backup3.bin +6d45f390db116c888708497c188fa4b3bbb801e16b2f20949c8d9b60a71bf25a platforms/qrb5165-rb5/ufs/gpt_backup4.bin +5886247bda949bd0d63fcab13c8b41e1dfe80332d4b0c8b66f8d51c0970a00ef platforms/qrb5165-rb5/ufs/gpt_backup5.bin +a49f3c42e22d5c932e6a87638c6dd5b12dde3082f1b93c3a7bb799d0941e060d platforms/qrb5165-rb5/ufs/gpt_both0.bin +53758a42ddc23a7b04e8d495ac15542ce3c77df0b053a0bc37cee6744f81f4e2 platforms/qrb5165-rb5/ufs/gpt_both1.bin +e6f353a94c1c3260c4599cc099367f8c3f1b609d2b283ba71f63b9a7e5d2bd23 platforms/qrb5165-rb5/ufs/gpt_both2.bin +7a8811a60625d7d9abd4ef15638b7dd2c1f2a382e0954e21b9cc5255295c9c34 platforms/qrb5165-rb5/ufs/gpt_both3.bin +6ddd7e8ef812221d510dcd408acec450a73fed42141415368a483ca214ffdb58 platforms/qrb5165-rb5/ufs/gpt_both4.bin +72eb4939ed40369f30728f632891f2d2056bec8684f4ad2e410cc7d0f09e3af3 platforms/qrb5165-rb5/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qrb5165-rb5/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qrb5165-rb5/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qrb5165-rb5/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qrb5165-rb5/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qrb5165-rb5/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/qrb5165-rb5/ufs/gpt_empty5.bin +fa557735d697f7cdd06305227e355da7904fad4fb75b4456bc5035e47516889c platforms/qrb5165-rb5/ufs/gpt_main0.bin +43012a3b03d61db74a4d727390feed4becf28dfc94bd83924e022f72eed4caca platforms/qrb5165-rb5/ufs/gpt_main1.bin +03fdd52433ce6e8a6ce2179929d8c4d9529457b7cdafcf69a0e8a1260ce84f18 platforms/qrb5165-rb5/ufs/gpt_main2.bin +cadac85eca8793d3fd8b5f9d64be091c736fc901ed2e1b1570fc9658d194508f platforms/qrb5165-rb5/ufs/gpt_main3.bin +dfe4a4a5d8f3df36d660ea4516c42049d3e22146de940da3672d6b3bc4b99c77 platforms/qrb5165-rb5/ufs/gpt_main4.bin +f53ba72ba87ddee153f546b7d0e8cdb74515b8df5978acc2e07166c0dfca20cb platforms/qrb5165-rb5/ufs/gpt_main5.bin +59d0339509293411c0cf6ceb20150445a5ea4544330e8fa0be4971673d9f1a35 platforms/qrb5165-rb5/ufs/partitions.xml +7396c0fba0a3d35b22330b342057e7b16112a9477e5a112221446b40e726394d platforms/qrb5165-rb5/ufs/patch0.xml +59583d011aa3b7c446cdc5cddfc0311b94901fb33df7de193294029739fa6f12 platforms/qrb5165-rb5/ufs/patch1.xml +a6bfc37ad3678453e75ec3377429486c4bda460f95aba3c8d3f2c6539ff12233 platforms/qrb5165-rb5/ufs/patch2.xml +c2f10926c2c8e7213161f2f782907bba52178414c4fb4999b00480ebe29e38d0 platforms/qrb5165-rb5/ufs/patch3.xml +7718496634c923975e17d244901c4dfcd9d912b410b11804897a6ce589fbffa5 platforms/qrb5165-rb5/ufs/patch4.xml +c91c7af77d9bc02607b6725a3e3ebe805e4e5e2afc8a7fa931b544b5777cba47 platforms/qrb5165-rb5/ufs/patch5.xml +98c6d43f4d38263fbc8fead1c3716cfb28e1f421ca01a530afee2ba07f65eee8 platforms/qrb5165-rb5/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/qrb5165-rb5/ufs/rawprogram0_BLANK_GPT.xml +8fe4bf3e4dafe372ea1674ffffc03a58f6c6efd35d0e008b8414237491f00928 platforms/qrb5165-rb5/ufs/rawprogram0_WIPE_PARTITIONS.xml +30d42ad39bfd64113df3b4b32faf107c2ebb9dc33ecbb184ec015c5e3c249bcf platforms/qrb5165-rb5/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/qrb5165-rb5/ufs/rawprogram1_BLANK_GPT.xml +aebaba853baf5597e70bf984a6eee3a3067ac99afaf92c2c7583eedce7a2418b platforms/qrb5165-rb5/ufs/rawprogram1_WIPE_PARTITIONS.xml +eaca6220874eb377b8ade74128ffa7d37393ac0082606f0b98cd2be0c57de378 platforms/qrb5165-rb5/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/qrb5165-rb5/ufs/rawprogram2_BLANK_GPT.xml +9a9878145a2e5305a8828508853fd8438da3ba83060cbe0588d82805e025ca30 platforms/qrb5165-rb5/ufs/rawprogram2_WIPE_PARTITIONS.xml +0b9a37ae5a94de9ba6eeba0bc13f897493be181a6a47b4287e3fa26ea1e11c33 platforms/qrb5165-rb5/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/qrb5165-rb5/ufs/rawprogram3_BLANK_GPT.xml +945e043b7d0d3f5243d8254b0702faf5078c5c510f41a6e7edf2204d51d0d832 platforms/qrb5165-rb5/ufs/rawprogram3_WIPE_PARTITIONS.xml +f13a744797602cea73777ae96c66f7c8d4cc23ec0e06c56251a8d01c17709b8b platforms/qrb5165-rb5/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/qrb5165-rb5/ufs/rawprogram4_BLANK_GPT.xml +b2f1df524eb56ad5e3d2c17606e86a724d327d1e44316bec7dea55437f93efce platforms/qrb5165-rb5/ufs/rawprogram4_WIPE_PARTITIONS.xml +c8b764a293937a06b0b6c4017431d3be4cbbfd963e0d8ce3f6e2c57e1a4bf5ed platforms/qrb5165-rb5/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/qrb5165-rb5/ufs/rawprogram5_BLANK_GPT.xml +e5bc91d989ce2c93083f086d4a9d183196982526f1b0374cb7534c25d522ba14 platforms/qrb5165-rb5/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/qrb5165-rb5/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/qrb5165-rb5/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/qrb5165-rb5/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/qrb5165-rb5/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/qrb5165-rb5/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/qrb5165-rb5/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/qrb5165-rb5/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/qrb5165-rb5/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/qrb5165-rb5/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/qrb5165-rb5/ufs/zeros_5sectors.bin +af2bec6150884b3af1c4f5a16ba2bbb87e854afa6639bd30215eb5ef0c4e6ccc platforms/sdm845-db845c/ufs/gpt_backup0.bin +5ee1878689c0b5d5a664cb0dc522155a03ca2b85e1cfd252e2be9850e5d3a4d4 platforms/sdm845-db845c/ufs/gpt_backup1.bin +ae9535b101734c863c04ed3908a1168d6f8476d66aff2ce19ca4802b6f7c35ab platforms/sdm845-db845c/ufs/gpt_backup2.bin +35af29969aa7b446cb170b7890f234fb053d4b951d29df84a46f7c1e055f015e platforms/sdm845-db845c/ufs/gpt_backup3.bin +1cc2e20509b4fc059023e88fc78478426ec69fe7c96d60e76de3965c14a6910b platforms/sdm845-db845c/ufs/gpt_backup4.bin +83ba2327cd936b6942cb4cb269401614c1979c2da0fee6a828b30964450e803d platforms/sdm845-db845c/ufs/gpt_backup5.bin +a49f3c42e22d5c932e6a87638c6dd5b12dde3082f1b93c3a7bb799d0941e060d platforms/sdm845-db845c/ufs/gpt_both0.bin +53758a42ddc23a7b04e8d495ac15542ce3c77df0b053a0bc37cee6744f81f4e2 platforms/sdm845-db845c/ufs/gpt_both1.bin +e6f353a94c1c3260c4599cc099367f8c3f1b609d2b283ba71f63b9a7e5d2bd23 platforms/sdm845-db845c/ufs/gpt_both2.bin +5eb2570cdab6e79812c780cc5e38c1d08a7864e12da30ec26ff216cb48e130f8 platforms/sdm845-db845c/ufs/gpt_both3.bin +5b1f98d8bcafc14d0bcb2da38c4553a0c040b8fd87f77ebf6472c84c7d40defd platforms/sdm845-db845c/ufs/gpt_both4.bin +cf8974af3b3833b012797270120a1975909573a2538be1976a7ac8cad837b65c platforms/sdm845-db845c/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sdm845-db845c/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sdm845-db845c/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sdm845-db845c/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sdm845-db845c/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sdm845-db845c/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sdm845-db845c/ufs/gpt_empty5.bin +fa557735d697f7cdd06305227e355da7904fad4fb75b4456bc5035e47516889c platforms/sdm845-db845c/ufs/gpt_main0.bin +43012a3b03d61db74a4d727390feed4becf28dfc94bd83924e022f72eed4caca platforms/sdm845-db845c/ufs/gpt_main1.bin +03fdd52433ce6e8a6ce2179929d8c4d9529457b7cdafcf69a0e8a1260ce84f18 platforms/sdm845-db845c/ufs/gpt_main2.bin +90f327965237c8e97259d11809a9f2a29f1ab724f4d8eaf2d666941ae105e3d7 platforms/sdm845-db845c/ufs/gpt_main3.bin +b787aacaf406e5ee697ea2dcf53dcd24c3bcaee7fff846a1f61794777fc95315 platforms/sdm845-db845c/ufs/gpt_main4.bin +fc0a2780694fe58bb5848feac592a3966f1c7873a4c5b08fee04fbfbe8a1fabf platforms/sdm845-db845c/ufs/gpt_main5.bin +f3bffc1e529e0eafafd28730c5754bfb95a368576136397fcb1b322408463dce platforms/sdm845-db845c/ufs/partitions.xml +7396c0fba0a3d35b22330b342057e7b16112a9477e5a112221446b40e726394d platforms/sdm845-db845c/ufs/patch0.xml +59583d011aa3b7c446cdc5cddfc0311b94901fb33df7de193294029739fa6f12 platforms/sdm845-db845c/ufs/patch1.xml +a6bfc37ad3678453e75ec3377429486c4bda460f95aba3c8d3f2c6539ff12233 platforms/sdm845-db845c/ufs/patch2.xml +a26ba03c756a173da1c02206bc47d96b7c7aaf5197a31aea96bd00c49ffa38af platforms/sdm845-db845c/ufs/patch3.xml +a58e54cf71f65c6c8ff2c214df53414023b420bdba9523001fcdaf4a4a993cb0 platforms/sdm845-db845c/ufs/patch4.xml +8bef4cc3ead426259be10e98779a9fcfba855f745c7390a76ef8ffb8cb527442 platforms/sdm845-db845c/ufs/patch5.xml +98c6d43f4d38263fbc8fead1c3716cfb28e1f421ca01a530afee2ba07f65eee8 platforms/sdm845-db845c/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/sdm845-db845c/ufs/rawprogram0_BLANK_GPT.xml +4a1abf169ab9fc4e8b19d39099f4d7983cc0d500b7e79a66c43ebea6a310ccb7 platforms/sdm845-db845c/ufs/rawprogram0_WIPE_PARTITIONS.xml +30d42ad39bfd64113df3b4b32faf107c2ebb9dc33ecbb184ec015c5e3c249bcf platforms/sdm845-db845c/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/sdm845-db845c/ufs/rawprogram1_BLANK_GPT.xml +aebaba853baf5597e70bf984a6eee3a3067ac99afaf92c2c7583eedce7a2418b platforms/sdm845-db845c/ufs/rawprogram1_WIPE_PARTITIONS.xml +eaca6220874eb377b8ade74128ffa7d37393ac0082606f0b98cd2be0c57de378 platforms/sdm845-db845c/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/sdm845-db845c/ufs/rawprogram2_BLANK_GPT.xml +9a9878145a2e5305a8828508853fd8438da3ba83060cbe0588d82805e025ca30 platforms/sdm845-db845c/ufs/rawprogram2_WIPE_PARTITIONS.xml +f3b3bad1e9d822cc02b63eb6f4675d30b25e210b759fe81b4d26b8e023052730 platforms/sdm845-db845c/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/sdm845-db845c/ufs/rawprogram3_BLANK_GPT.xml +8c91c2a5a6676389ab34168b42c42920d3ac36dc2a04271db2dfc04edfb0d0c2 platforms/sdm845-db845c/ufs/rawprogram3_WIPE_PARTITIONS.xml +1cfeaf860a366e2b69945eff2e1ec492f956aa00df39ae53339419f8986b3dff platforms/sdm845-db845c/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/sdm845-db845c/ufs/rawprogram4_BLANK_GPT.xml +524bde001c7fad346fe76448fcf90b079bc9870aed0fa3ce0a851c852ff836bf platforms/sdm845-db845c/ufs/rawprogram4_WIPE_PARTITIONS.xml +0a90c3558dd46cfc9222659240fa44b6a3b91e17d6425feeb52c179e6c6370d6 platforms/sdm845-db845c/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/sdm845-db845c/ufs/rawprogram5_BLANK_GPT.xml +0c4f59bb22a9bdff8b3b09569f67848fff60b64b805320bcceecf706cc08d3dc platforms/sdm845-db845c/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/sdm845-db845c/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/sdm845-db845c/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/sdm845-db845c/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/sdm845-db845c/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/sdm845-db845c/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/sdm845-db845c/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/sdm845-db845c/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/sdm845-db845c/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/sdm845-db845c/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/sdm845-db845c/ufs/zeros_5sectors.bin +30e873b1159bf1d405ac04719344560aa1b2c0e3168195a80cb244cf19368606 platforms/sm8750-mtp/ufs/contents.xml +583219d4c5afe0701e8cb68e34e91cb5e3f0562ac6e34ab45cc32739809c4d1f platforms/sm8750-mtp/ufs/gpt_backup0.bin +84c730794304a23d6bdae67de00da9cb5d141ea3dc43d37d232eb46a81e11bb3 platforms/sm8750-mtp/ufs/gpt_backup1.bin +8ff68e0939ed690ca448323921c1e0d513a08afef8c3b52cf3ea557d61773447 platforms/sm8750-mtp/ufs/gpt_backup2.bin +a7156ae105935d7df7cd2d80a36ff78a44475f99b88f3a840838c80dbbdbd135 platforms/sm8750-mtp/ufs/gpt_backup3.bin +d279b866793bee74a97876b8a25f8688e5195f08ac85fa89bcf56bb042ce2e80 platforms/sm8750-mtp/ufs/gpt_backup4.bin +28ab21390216786a40905442338190ed9c22ebbac0b208a4abb0d12ed4017d49 platforms/sm8750-mtp/ufs/gpt_backup5.bin +21e9e65befcc36ecb5f373c224304386113a41f1f765e908db97802dbae5ed0f platforms/sm8750-mtp/ufs/gpt_both0.bin +cc30353a29c10c5274afa5a8231c781d50be3e1099b7ca89a5819f70f8015110 platforms/sm8750-mtp/ufs/gpt_both1.bin +425078f2bd78adbaaf7ff764b1058feb5257baeff9f1b765031c87bb2db27fdd platforms/sm8750-mtp/ufs/gpt_both2.bin +8766a6afc996d9c46ed6182d85eec0927d47f6f47653ed1cbd01ddad3c86fbf2 platforms/sm8750-mtp/ufs/gpt_both3.bin +4449db9aa3e33de57f047d1820dc1974e056813686e5a85691619fb576a2c22b platforms/sm8750-mtp/ufs/gpt_both4.bin +c0fd6e58ea8f571075ce5d6a0e0f7098bb5fe90cf7373f4713f268fd8bb6de88 platforms/sm8750-mtp/ufs/gpt_both5.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sm8750-mtp/ufs/gpt_empty0.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sm8750-mtp/ufs/gpt_empty1.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sm8750-mtp/ufs/gpt_empty2.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sm8750-mtp/ufs/gpt_empty3.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sm8750-mtp/ufs/gpt_empty4.bin +296ad8f9dac8ae490e27fc296e68de9183a83efd638e4f05404c3de700e4cc05 platforms/sm8750-mtp/ufs/gpt_empty5.bin +672eed3b3dba2d1d1d521e078897e7f6412157e91432daff498e798ed381ee4d platforms/sm8750-mtp/ufs/gpt_main0.bin +fd084495388f38c860dcf1df38634ba5d6c6fb6d659929673702e583a9452825 platforms/sm8750-mtp/ufs/gpt_main1.bin +9b01e430d31f5e1da2fabca8a1e821abc95e4cc4aa749892c76708b20f1756ac platforms/sm8750-mtp/ufs/gpt_main2.bin +c534217e0c5290dc7a927226676009100159f3f4d2616edb54765b5d7a7385bf platforms/sm8750-mtp/ufs/gpt_main3.bin +1fd1f6e3daeee4ee9f522adfffecda4bfafce8726447834ac16b8ae16be30189 platforms/sm8750-mtp/ufs/gpt_main4.bin +e5a3cdb7cc54e066e10d1ea65ca57762fcc02e10e2887bfe196f8ab85fcfe327 platforms/sm8750-mtp/ufs/gpt_main5.bin +4f24e207c60007378980b315d433322ccfd44fb6ab882573b153eaa8053c5e5e platforms/sm8750-mtp/ufs/partitions.xml +17e926bf598a781a766319cd1a0e2b84563ef0850d565b83479294be518d160a platforms/sm8750-mtp/ufs/patch0.xml +b31e366e630eef16ecdd74ed9fbcf7eafdb9f86bd240fcbf34fe2599b14a88dc platforms/sm8750-mtp/ufs/patch1.xml +3503dc1337a9d6c2153e48307ff304cffd634f6545fd165f02bd2063bd82ec27 platforms/sm8750-mtp/ufs/patch2.xml +f7da06354afae918957d84ed12ec71c0a195a02555e709584172da4bba53e685 platforms/sm8750-mtp/ufs/patch3.xml +eda0ed3630d12f2af8ce78ad9709d7fd484e54abbacef9ad044bc774c2cec45a platforms/sm8750-mtp/ufs/patch4.xml +b9d0a21bdf4b734000c931acb981a0be8caf477042bf9fed5721b315f8be2df9 platforms/sm8750-mtp/ufs/patch5.xml +fedee9a39cd1b3ed39dcae48fcb8efef6c32a81ef738b95c6eba9312d1668105 platforms/sm8750-mtp/ufs/rawprogram0.xml +bfd6149fca38b0d45a636f87be864562f321e5418b917120f4f350d6f5a11a7e platforms/sm8750-mtp/ufs/rawprogram0_BLANK_GPT.xml +14b80faeb1230f48070444dfb4522575cb221fb8ba94cf3e6a79289691e5eb44 platforms/sm8750-mtp/ufs/rawprogram0_WIPE_PARTITIONS.xml +fa61c0f0a95da128b7f323a64fba3c0b6bf11ed828dcd67e442b619b191b894d platforms/sm8750-mtp/ufs/rawprogram1.xml +698caaf24b821c5aca4e11f6bd86b8190203df9f0794595d5d44d202a293c50d platforms/sm8750-mtp/ufs/rawprogram1_BLANK_GPT.xml +fd15f270d96306d80cf6f867b5933907aaa909eb394db0b1501fefcc050b77bf platforms/sm8750-mtp/ufs/rawprogram1_WIPE_PARTITIONS.xml +50604f48aa40226248828adabb07e3220c3593cb301099c7aa63a8b14f78dbd8 platforms/sm8750-mtp/ufs/rawprogram2.xml +244b029e9ac508d06a315292a6469439257781f7cb475b130a32455054b25446 platforms/sm8750-mtp/ufs/rawprogram2_BLANK_GPT.xml +ad38b2ece9e984335f40971aff692dd6a29586a0126895ffbe189392b460fe93 platforms/sm8750-mtp/ufs/rawprogram2_WIPE_PARTITIONS.xml +fff56507b0e9315070905625ba2ce565dd811443369f13e4168e73969888cca3 platforms/sm8750-mtp/ufs/rawprogram3.xml +19393ca7400346b48ddf58032098c8522387ba61780a68631a926dbec24fc3d8 platforms/sm8750-mtp/ufs/rawprogram3_BLANK_GPT.xml +cbc97a1fe929099d55f37e3addf89905a2d93fcbe3843715d2f7406b04bdac53 platforms/sm8750-mtp/ufs/rawprogram3_WIPE_PARTITIONS.xml +360ce7ad5e30667e211c5ad6a24305e1d39479ab7128629647c9901962f491f4 platforms/sm8750-mtp/ufs/rawprogram4.xml +13e39a421e5f11f0aca36b2447be74b9ee8fb5cf9023bed0d472a087a95c630a platforms/sm8750-mtp/ufs/rawprogram4_BLANK_GPT.xml +13fb7ff1c9be9a57215858f354083fdde4b410b96209e4d3b25dcf0bf96373b8 platforms/sm8750-mtp/ufs/rawprogram4_WIPE_PARTITIONS.xml +dadef69c600ab91da2b41cf4ed02cd185d4452090c15912652d61bf97f9151ae platforms/sm8750-mtp/ufs/rawprogram5.xml +7a526f3da790c95d1f3274deedb9af87e8e2d395bdebefa0cd8a4dc8da3e23ea platforms/sm8750-mtp/ufs/rawprogram5_BLANK_GPT.xml +1a5fd5a11b77412a56279840aa89ae4be9f9384ebe4c30da07327cc7560b6d33 platforms/sm8750-mtp/ufs/rawprogram5_WIPE_PARTITIONS.xml +8f4ad45a45bf96091a1bddc6e9ef9f0c1b6a8b93c4cfc9ee269d9563fdb927bf platforms/sm8750-mtp/ufs/wipe_rawprogram_PHY0.xml +c9f52ac16ce29c8c6ff84bd4d37429fb0ff049a08aedd66bebeb6163805a38e9 platforms/sm8750-mtp/ufs/wipe_rawprogram_PHY1.xml +915acd9e9017bb6103cb0c7264b0df3c294dd4eabb4d099eda9da6df75153810 platforms/sm8750-mtp/ufs/wipe_rawprogram_PHY2.xml +7dc6e2c38c670688d77b5e7b5199d129d4dd3803aa0f9047fe36dd82b270254b platforms/sm8750-mtp/ufs/wipe_rawprogram_PHY4.xml +3db09ee13c9969237acc4027d16eea8763de3b1a61418a46ad9ccf4577f8fd99 platforms/sm8750-mtp/ufs/wipe_rawprogram_PHY5.xml +69fa314f3d9301a2554455416708cb54e0c0b5700cf89a2e59575642979674cd platforms/sm8750-mtp/ufs/wipe_rawprogram_PHY6.xml +6c66987561c898febfc77096da19f3b215a5e689cbca95dc2af23c7529cd20ea platforms/sm8750-mtp/ufs/wipe_rawprogram_PHY7.xml +ad7facb2586fc6e966c004d7d1d16b024f5805ff7cb47c7a85dabd8b48892ca7 platforms/sm8750-mtp/ufs/zeros_1sector.bin +74518f204d46de660dff3ed003e92476bad8c691ba392453fc1c7532cc856018 platforms/sm8750-mtp/ufs/zeros_33sectors.bin +cc61635da46b2c9974335ea37e0b5fd660a5c8a42a89b271fa7ec2ac4b8b26f6 platforms/sm8750-mtp/ufs/zeros_5sectors.bin