What is boot.img file in android?

前端 未结 1 674
余生分开走
余生分开走 2021-01-31 03:51

I am building the android source code and getting new system.img . I try to flash the new system.img on a device and I see that I need another file called boot.img. What is this

1条回答
  •  -上瘾入骨i
    2021-01-31 03:58

    boot.img contains the kernel and ramdisk, critical files necessary to load the device before the filesystem can be mounted. You have to generate the boot.img yourself using mkbootimg, a tool provided by AOSP.

    All the details you need are available at this xda-developers thread.

    This google discussion thread may also be useful

    0 讨论(0)
提交回复
热议问题