diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2023-05-26 18:36:14 -0500 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-06-01 16:24:07 -1000 |
commit | b32d7da361b475fd7fec019a51fbf93e23a1d406 (patch) | |
tree | 7ffe8dbec5d03148e613281870334b6b8e6d47a8 /meta/classes/kernel.bbclass | |
parent | ab21fd0ec11adb6f6f30c3f4c4a38cdaa1ea4903 (diff) | |
download | poky-b32d7da361b475fd7fec019a51fbf93e23a1d406.tar.gz |
kernel-devicetree: make shell scripts posix compliant
Use the notation suggested by Martin Jansa to avoid a bashism. Also
switch KERNEL_DTBVENDORED to the more common 0/1 notation instead of
true/false.
Fixes: 04ab57d200 (kernel-devicetree: allow specification of dtb
directory, 2023-05-02)
(From OE-Core rev: b7d6fc07462e6fca09d0db7f43a62920250ef053)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Randolph Sapp <rs@ti.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r-- | meta/classes/kernel.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 87dd46e6fa..3d5422b09e 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -211,7 +211,7 @@ KERNEL_RELEASE ?= "${KERNEL_VERSION}" | |||
211 | KERNEL_OUTPUT_DIR ?= "arch/${ARCH}/boot" | 211 | KERNEL_OUTPUT_DIR ?= "arch/${ARCH}/boot" |
212 | KERNEL_IMAGEDEST ?= "boot" | 212 | KERNEL_IMAGEDEST ?= "boot" |
213 | KERNEL_DTBDEST ?= "${KERNEL_IMAGEDEST}" | 213 | KERNEL_DTBDEST ?= "${KERNEL_IMAGEDEST}" |
214 | KERNEL_DTBVENDORED ?= "false" | 214 | KERNEL_DTBVENDORED ?= "0" |
215 | 215 | ||
216 | # | 216 | # |
217 | # configuration | 217 | # configuration |