Android DTB/DTBO Format
Appearance
On at least some Mediatek-based devices, there is a 64-byte DTB header which can make porting difficult since the kernel does not generate this automatically.
While this appears to be entirely Mediatek-specific at first, it's actually a standardized Android DTB header format.
Format
Length (bytes) | Details |
---|---|
4 | Magic bytes. Always 0xd7b7ab1e. |
4 | Total size. Combination of the header size itself and all of the table entries. |
4 | Header size. Always 0x00000020 in this case. |
4 | Entry size. |
4 | The number of table entries. Always 0x00000001 in this case. |
4 | Offset to the first table entry. Always 0x00000020 in this case. |
4 | Page size. Always 0x00000800 in this case. |
4 | DTBO image version. Always null bytes in this case - the current version is 0. This is where the table header ends, and the next bytes are for the table entry in the DTB header. |
4 | DTB size. Device-specific. |
4 | DTB offset. Always 0x00000040 in this case. |
4 | Device ID. Unused. |
4 | Device revision. Unused. |
16 | Unused. |
See also
The data structure information on the AOSP documentation website