diff options
author | Ming Liu <liu.ming50@gmail.com> | 2022-09-01 10:57:12 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-09-12 08:41:48 +0100 |
commit | ce82f937d84388d7c6c014b5e6729229a46d1649 (patch) | |
tree | 06e9addb3401d096ca6df770338ae9ae00e0c59c /meta/classes | |
parent | 2a82c3d93a1f3e93c298be3950d80875281830a0 (diff) | |
download | poky-ce82f937d84388d7c6c014b5e6729229a46d1649.tar.gz |
meta: introduce UBOOT_MKIMAGE_KERNEL_TYPE
Sometimes an end user might want to choose another kernel type argument
for uboot-mkimage other than "kernel", for instance: "kernel_noload".
Let's introduce a variable UBOOT_MKIMAGE_KERNEL_TYPE to support that,
and it could be used by BSP layers as well.
(From OE-Core rev: e288686e97de1265eeeaf452141e1473867efb1b)
(From OE-Core rev: a4dfcb15ee2c1349718425eef333f3bc84c2de41)
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 4eb7bbcc2f08b25387a15b7e4a89ef199783c973)
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel-fitimage.bbclass | 2 | ||||
-rw-r--r-- | meta/classes/kernel-uboot.bbclass | 3 | ||||
-rw-r--r-- | meta/classes/kernel-uimage.bbclass | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/meta/classes/kernel-fitimage.bbclass b/meta/classes/kernel-fitimage.bbclass index 56d71ba8fa..7b16633f6f 100644 --- a/meta/classes/kernel-fitimage.bbclass +++ b/meta/classes/kernel-fitimage.bbclass | |||
@@ -148,7 +148,7 @@ fitimage_emit_section_kernel() { | |||
148 | kernel-$2 { | 148 | kernel-$2 { |
149 | description = "Linux kernel"; | 149 | description = "Linux kernel"; |
150 | data = /incbin/("$3"); | 150 | data = /incbin/("$3"); |
151 | type = "kernel"; | 151 | type = "${UBOOT_MKIMAGE_KERNEL_TYPE}"; |
152 | arch = "${UBOOT_ARCH}"; | 152 | arch = "${UBOOT_ARCH}"; |
153 | os = "linux"; | 153 | os = "linux"; |
154 | compression = "$4"; | 154 | compression = "$4"; |
diff --git a/meta/classes/kernel-uboot.bbclass b/meta/classes/kernel-uboot.bbclass index 2facade818..1bc98e042d 100644 --- a/meta/classes/kernel-uboot.bbclass +++ b/meta/classes/kernel-uboot.bbclass | |||
@@ -2,6 +2,9 @@ | |||
2 | FIT_KERNEL_COMP_ALG ?= "gzip" | 2 | FIT_KERNEL_COMP_ALG ?= "gzip" |
3 | FIT_KERNEL_COMP_ALG_EXTENSION ?= ".gz" | 3 | FIT_KERNEL_COMP_ALG_EXTENSION ?= ".gz" |
4 | 4 | ||
5 | # Kernel image type passed to mkimage (i.e. kernel kernel_noload...) | ||
6 | UBOOT_MKIMAGE_KERNEL_TYPE ?= "kernel" | ||
7 | |||
5 | uboot_prep_kimage() { | 8 | uboot_prep_kimage() { |
6 | if [ -e arch/${ARCH}/boot/compressed/vmlinux ]; then | 9 | if [ -e arch/${ARCH}/boot/compressed/vmlinux ]; then |
7 | vmlinux_path="arch/${ARCH}/boot/compressed/vmlinux" | 10 | vmlinux_path="arch/${ARCH}/boot/compressed/vmlinux" |
diff --git a/meta/classes/kernel-uimage.bbclass b/meta/classes/kernel-uimage.bbclass index cedb4fa070..2e661ea916 100644 --- a/meta/classes/kernel-uimage.bbclass +++ b/meta/classes/kernel-uimage.bbclass | |||
@@ -30,6 +30,6 @@ do_uboot_mkimage() { | |||
30 | awk '$3=="${UBOOT_ENTRYSYMBOL}" {print "0x"$1;exit}'` | 30 | awk '$3=="${UBOOT_ENTRYSYMBOL}" {print "0x"$1;exit}'` |
31 | fi | 31 | fi |
32 | 32 | ||
33 | uboot-mkimage -A ${UBOOT_ARCH} -O linux -T kernel -C "${linux_comp}" -a ${UBOOT_LOADADDRESS} -e $ENTRYPOINT -n "${DISTRO_NAME}/${PV}/${MACHINE}" -d linux.bin ${B}/arch/${ARCH}/boot/uImage | 33 | uboot-mkimage -A ${UBOOT_ARCH} -O linux -T ${UBOOT_MKIMAGE_KERNEL_TYPE} -C "${linux_comp}" -a ${UBOOT_LOADADDRESS} -e $ENTRYPOINT -n "${DISTRO_NAME}/${PV}/${MACHINE}" -d linux.bin ${B}/arch/${ARCH}/boot/uImage |
34 | rm -f linux.bin | 34 | rm -f linux.bin |
35 | } | 35 | } |