QCDT: Difference between revisions
Appearance
Migrate from https://github.com/postmarketOS/pmbootstrap/wiki |
fix broken links |
||
Line 1: | Line 1: | ||
The <code>mozilla-flame</code> and other devices have the [[dtb| | The <code>mozilla-flame</code> and other devices have the [[Glossary#dtb|dtb]] appended to the [[Glossary#boot.img|boot.img]].<br /> | ||
To find out if your device boots <code>qcdt</code> <code>boot.img</code> files, run <code>extract-dtb</code> (packaged for pmOS) on a known-working <code>boot.img</code> (e.g. from TWRP or LineageOS). | To find out if your device boots <code>qcdt</code> <code>boot.img</code> files, run <code>extract-dtb</code> (packaged for pmOS) on a known-working <code>boot.img</code> (e.g. from TWRP or LineageOS). | ||
Line 6: | Line 6: | ||
Some approaches that can help debug appended DTB issues: | Some approaches that can help debug appended DTB issues: | ||
* Hook up the [[serial UART | * Hook up the [[serial UART]] and see what kind of debug output the bootloader provides | ||
* Repack the boot image with a working <code>dt.img</code> from another distribution (stock, Lineage, recovery, etc.) | * Repack the boot image with a working <code>dt.img</code> from another distribution (stock, Lineage, recovery, etc.) | ||
Revision as of 01:22, 26 August 2017
The mozilla-flame
and other devices have the dtb appended to the boot.img.
To find out if your device boots qcdt
boot.img
files, run extract-dtb
(packaged for pmOS) on a known-working boot.img
(e.g. from TWRP or LineageOS).
Check PR #356 for example usage of how it is implemented right now, and #323 for the related discussion. In case you are implementing this for another device, please edit this article and put it more in a step-by-step format.
Some approaches that can help debug appended DTB issues:
- Hook up the serial UART and see what kind of debug output the bootloader provides
- Repack the boot image with a working
dt.img
from another distribution (stock, Lineage, recovery, etc.)
Repack Procedure
You need mkbootimg
and unpackbootimg
tools which are already packaged in pmbootstrap.
$ ./pmbootstrap build mkbootimg unpackbootimg $ ./unpackbootimg -i $SOMEDIR/boot.img-$vendor-$name -o pmos $ ./unpackbootimg -i $OTHERDIR/boot.img -o other $ cp other/boot.img-dt pmos/boot.img-$vendor-$name-dt $ ./mkbootimg -o boot.repack.img -r pmos/boot.img-$vendor-$name-
You can also get these from https://github.com/efidroid/build/tree/master/tools