"Android Vendor Blob Extraction гаргаж авах"-ны өөр хувилбарууд
25-р мөр: | 25-р мөр: | ||
Dumpyara is a universal dumper script compatible with almost all OEM zips | Dumpyara is a universal dumper script compatible with almost all OEM zips | ||
− | git clone https://github.com/AndroidDumps/dumpyara | + | git clone https://github.com/AndroidDumps/dumpyara |
− | cd dumpyara | + | cd dumpyara |
If you have Arch Linux or Ubuntu, then simply run, | If you have Arch Linux or Ubuntu, then simply run, | ||
− | bash setup.sh | + | bash setup.sh |
else, you have to poke into that script and match accordingly with the deps for your distro. | else, you have to poke into that script and match accordingly with the deps for your distro. | ||
36-р мөр: | 36-р мөр: | ||
With the setup part done, Let’s get to the dumping part. | With the setup part done, Let’s get to the dumping part. | ||
− | bash dumpyara.sh ./zipname.zip | + | bash dumpyara.sh ./zipname.zip |
Let it run for a while, and your dump should be at the working/zipname folder of dumpyara | Let it run for a while, and your dump should be at the working/zipname folder of dumpyara | ||
42-р мөр: | 42-р мөр: | ||
Once you have the dump, let’s start to extract from it. | Once you have the dump, let’s start to extract from it. | ||
− | git clone https://github.com/LineageOS/android_tools_extract-utils -b lineage-18.1 android/tools/extract-utils | + | git clone https://github.com/LineageOS/android_tools_extract-utils -b lineage-18.1 android/tools/extract-utils |
− | git clone https://github.com/LineageOS/android_prebuilts_extract-tools -b lineage-18.1 android/prebuilts/extract-tools | + | git clone https://github.com/LineageOS/android_prebuilts_extract-tools -b lineage-18.1 android/prebuilts/extract-tools |
cd to the android folder and, | cd to the android folder and, | ||
− | git clone your dt to the usual path like you would while building, like device/brand/codename | + | git clone your dt to the usual path like you would while building, like device/brand/codename |
Clone the common tree also, if it exists | Clone the common tree also, if it exists | ||
53-р мөр: | 53-р мөр: | ||
Check if your extract-files.sh is updated to track tools/extract-utils, if it’s not, or the file itself doesn’t exist, you need to get it from GitHub, it’s almost on every tree. | Check if your extract-files.sh is updated to track tools/extract-utils, if it’s not, or the file itself doesn’t exist, you need to get it from GitHub, it’s almost on every tree. | ||
− | bash extract-files.sh /path/to/dumpyara/working/zipname/ | + | bash extract-files.sh /path/to/dumpyara/working/zipname/ |
Wait and watch it do its thing | Wait and watch it do its thing | ||
59-р мөр: | 59-р мөр: | ||
Once that is done, you just need to go to vendor/brand/codename and, | Once that is done, you just need to go to vendor/brand/codename and, | ||
− | git init, commit and push it up! | + | git init, commit and push it up! |
This should be done for the common tree also which would be vendor/brand/smxx-common | This should be done for the common tree also which would be vendor/brand/smxx-common |
21:22, 15 Аравдугаар сар 2022-ий байдлаарх засвар
Instruction 1
This is the updated instructions, and an update-to-date (as of writing) how-to guide for vendor blob extraction
Unlike the earlier guide, you won’t need the full rom synced. Huge kudos to the guys at LineageOS for making this possible!
What you would need:
Around like 20GB of disk space (just to be safe) Dump or OEM zip whichever is available A Popular GNU/Linux Distro
Where to search if your zip is dumped already?
Go to this link: https://dumps.tadiphone.dev/dumps
Use the search box to search your device name If you find your device repo there, go in, and see its vendor or system build.prop if any prop matches what you need. It’s more of visual exploration for you now.
If the build you have is newer/the device is missing, you can request for it to be dumped here: https://t.me/dumprequests
In the meanwhile, you can also dump it yourself, rather than waiting for it to be dumped.
Download the concerned OEM zip (like MIUI, OneUI, or whatever)
Dumpyara is a universal dumper script compatible with almost all OEM zips
git clone https://github.com/AndroidDumps/dumpyara cd dumpyara
If you have Arch Linux or Ubuntu, then simply run,
bash setup.sh
else, you have to poke into that script and match accordingly with the deps for your distro.
With the setup part done, Let’s get to the dumping part.
bash dumpyara.sh ./zipname.zip
Let it run for a while, and your dump should be at the working/zipname folder of dumpyara
Once you have the dump, let’s start to extract from it.
git clone https://github.com/LineageOS/android_tools_extract-utils -b lineage-18.1 android/tools/extract-utils git clone https://github.com/LineageOS/android_prebuilts_extract-tools -b lineage-18.1 android/prebuilts/extract-tools
cd to the android folder and,
git clone your dt to the usual path like you would while building, like device/brand/codename
Clone the common tree also, if it exists
Check if your extract-files.sh is updated to track tools/extract-utils, if it’s not, or the file itself doesn’t exist, you need to get it from GitHub, it’s almost on every tree.
bash extract-files.sh /path/to/dumpyara/working/zipname/
Wait and watch it do its thing
Once that is done, you just need to go to vendor/brand/codename and,
git init, commit and push it up!
This should be done for the common tree also which would be vendor/brand/smxx-common
Instruction 2
I got asked this question a lot, so I’ll post it here. Its gonna just be steps on how to do it.
⚠️ Note that you need a fully synced rom source for this.
Place the Device Tree with the extract-files.sh inside.
If your device tree doesn’t have an extract-files script, get it from github, its almost on every tree.
Grab the stock rom for your device, MIUI/OOS or OneUI whatever.
Create a new folder named dump and extract it there.
Now see if it has a payload.bin or system.dat.br and vendor.dat.br
If it has a payload.bin, then, your device is A/B, and the job is actually very easy, #
Use this tool and run the python file in it. You will now have img files ready.
You are unlucky and have br files inside. #
So what? We can still extract them, a bit of more work, but yes we can.
Install brotli from your package manager Run the following commands, it will decompress the brotli compression of your images
brotli --decompress system.new.dat.br brotli --decompress vendor.new.dat.br
Now we to convert the dat files to img, run these commands on terminal, to convert it
curl -sLo sdat2img.py https://raw.githubusercontent.com/xpirt/sdat2img/master/sdat2img.py python3 sdat2img.py system.transfer.list system.new.dat python3 sdat2img.py vendor.transfer.list vendor.new.dat vendor.img
Now you would have both the images ready for extracting.
Final Step #
Lets Extract the img files we have!
Create folders for extracting.
mkdir -p system mkdir -p vendor
Install P7-Zip from your package manager
Now the extraction.
7z x system.img -y -osystem 7z x vendor.img -y -ovendor
In your folder, there would be two folders system and vendor, with many files now. Pulling blobs #
The work directory which had the system and vendor folders is assumed to be at ~/dump for now.
cd to the device tree, and run the command
bash extract-files.sh ~/dump
Your vendor blobs would be at vendor/brand/device
Эх сурвалж: