diff options
| author | Anthony Bagwell <aj.bagwell@gmail.com> | 2021-02-15 15:16:06 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-19 11:17:11 +0000 |
| commit | 7cf4daf53e6c5e6c7b6b825eaa58989a48e7e3be (patch) | |
| tree | eb77c0574dae73d95dc63d1f6fb7f4de331bfb52 /meta/classes/kernel-fitimage.bbclass | |
| parent | a9ad53c81a9b87395e590dfb889bd1ef979f7626 (diff) | |
| download | poky-7cf4daf53e6c5e6c7b6b825eaa58989a48e7e3be.tar.gz | |
kernel-fitimage: fix dtbo support for fit images
8a2f4e143 added support for u-boot boot script but missed adding the
extra parameter to fitimage_emit_section_config on the dtbo branch
(From OE-Core rev: 22bac8aea0d5d28cc5a3bf20edf638225cce2f88)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/kernel-fitimage.bbclass')
| -rw-r--r-- | meta/classes/kernel-fitimage.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index 87ed8bd892..2414870817 100644 --- a/meta/classes/kernel-fitimage.bbclass +++ b/meta/classes/kernel-fitimage.bbclass | |||
| @@ -626,7 +626,7 @@ fitimage_assemble() { | |||
| 626 | for DTB in ${DTBS}; do | 626 | for DTB in ${DTBS}; do |
| 627 | dtb_ext=${DTB##*.} | 627 | dtb_ext=${DTB##*.} |
| 628 | if [ "${dtb_ext}" = "dtbo" ]; then | 628 | if [ "${dtb_ext}" = "dtbo" ]; then |
| 629 | fitimage_emit_section_config ${1} "" "${DTB}" "" "" "`expr ${i} = ${dtbcount}`" | 629 | fitimage_emit_section_config ${1} "" "${DTB}" "" "${bootscr_id}" "" "`expr ${i} = ${dtbcount}`" |
| 630 | else | 630 | else |
| 631 | fitimage_emit_section_config ${1} "${kernelcount}" "${DTB}" "${ramdiskcount}" "${bootscr_id}" "${setupcount}" "`expr ${i} = ${dtbcount}`" | 631 | fitimage_emit_section_config ${1} "${kernelcount}" "${DTB}" "${ramdiskcount}" "${bootscr_id}" "${setupcount}" "`expr ${i} = ${dtbcount}`" |
| 632 | fi | 632 | fi |
