Skip to content

Instantly share code, notes, and snippets.

@CypherpunkSamurai
Created April 23, 2022 16:17
Show Gist options
  • Select an option

  • Save CypherpunkSamurai/6bea855cd1d92b01a1ddb75715bc902d to your computer and use it in GitHub Desktop.

Select an option

Save CypherpunkSamurai/6bea855cd1d92b01a1ddb75715bc902d to your computer and use it in GitHub Desktop.
Android Boot Img

Android Boot IMG

Backing up boot IMG with adb

Find Boot partition

adb shell
su
# stay away from platform
#find find /dev/block/platform -name boot -print
find /dev/block/bootdevice/by-name/ -name boot -print

Dump it to .img

dd if=/dev/block/bootdevice/by-name/boot of=/sdcard/boot.img
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment