diff options
author | 2018-04-09 12:13:55 +0200 | |
---|---|---|
committer | 2018-09-04 15:19:04 +0200 | |
commit | 5ebb55745e59e2e00fd1fc04feeb01b986ee58f0 (patch) | |
tree | e1f83ff7de63ae24518232d691f7fd46e11ec7f9 /conf | |
parent | 9c6df8303da9071d7d5bdd799d5dcd1ac32a3703 (diff) | |
download | meta-qcom-5ebb55745e59e2e00fd1fc04feeb01b986ee58f0.tar.gz meta-qcom-5ebb55745e59e2e00fd1fc04feeb01b986ee58f0.tar.bz2 meta-qcom-5ebb55745e59e2e00fd1fc04feeb01b986ee58f0.zip |
kernel: append DTB to kernel imagesumo-test
Instead of using dtbTool to create a DT image , and include it into the boot
image, we append DTB to the compressed kernel image. the LK bootloader knows how
to retrieve DTB , when they are appeneded to compressed kernel image.
Note:
* it only works with compressed image.
* dtbToo also typically adds msm-ids into the DTB, recent versions of LK exist
that allow a single DTB to be used without the msm-ids, in which case it will
work fine. when using older LK version, it is needed to patch the kernel and
include the msm-ids.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
(cherry picked from commit 4c4994c05053e73eac3622ab6f793db3eb8dbed3)
(cherry picked from commit ae07326b0fc16237ade9d8447b96da445eb7bbf8)
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/include/qcom-apq8016.inc | 1 | ||||
-rw-r--r-- | conf/machine/include/qcom-apq8096.inc | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/conf/machine/include/qcom-apq8016.inc b/conf/machine/include/qcom-apq8016.inc index 06a30a3..801b788 100644 --- a/conf/machine/include/qcom-apq8016.inc +++ b/conf/machine/include/qcom-apq8016.inc @@ -33,4 +33,3 @@ IMAGE_ROOTFS_ALIGNMENT = "4096" QCOM_BOOTIMG_KERNEL_BASE ?= "0x80000000" QCOM_BOOTIMG_PAGE_SIZE ?= "2048" -QCOM_BOOTIMG_BUNDLE_DT ?= "1" diff --git a/conf/machine/include/qcom-apq8096.inc b/conf/machine/include/qcom-apq8096.inc index 83f6a77..b50cf8d 100644 --- a/conf/machine/include/qcom-apq8096.inc +++ b/conf/machine/include/qcom-apq8096.inc @@ -34,4 +34,3 @@ IMAGE_ROOTFS_ALIGNMENT = "4096" QCOM_BOOTIMG_KERNEL_BASE ?= "0x80000000" QCOM_BOOTIMG_PAGE_SIZE ?= "4096" -QCOM_BOOTIMG_BUNDLE_DT ?= "1" |