All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory
@ 2023-05-05 16:36 rs
  2023-05-06  9:09 ` Martin Jansa
  0 siblings, 1 reply; 9+ messages in thread
From: rs @ 2023-05-05 16:36 UTC (permalink / raw)
  To: afd, detheridge, reatmon, denis, alexandre.belloni
  Cc: openembedded-core, Randolph Sapp

From: Randolph Sapp <rs@ti.com>

Fedora/Redhat and Arch are somewhat standardized on their dtb directory
structure. Let's add some flags to configure yocto to mimic that
behavior.

Add the following variables to the kernel class:
	- KERNEL_DTBDEST (controls the destination directory for dtbs)
	- KERNEL_DTBVENDORED (controls if vendor subdirectories are to
	  be respected)

Currently KERNEL_DTBDEST is expected to be a subdir of KERNEL_IMAGEDEST
and KERNEL_DTBVENDORED is expected to be "true"/"false". This only
applies to the package directory structure. The deploydir structure is
purposely left untouched for compatibility with existing recipes.

By default this is configured to behave the same as the current recipe
and produce a flat dtb directory at KERNEL_IMAGEDEST.

Signed-off-by: Randolph Sapp <rs@ti.com>
---

Well, suppose I was breaking things by submitting this to kirkstone
first. This is just the master version of the following patchset:
https://lists.openembedded.org/g/openembedded-core/message/180754

I'd love to get that series merged as well if this patch is acceptable.

 meta/classes-recipe/kernel-devicetree.bbclass | 22 ++++++++++++++-----
 meta/classes-recipe/kernel.bbclass            |  2 ++
 2 files changed, 19 insertions(+), 5 deletions(-)

diff --git a/meta/classes-recipe/kernel-devicetree.bbclass b/meta/classes-recipe/kernel-devicetree.bbclass
index 4d0ecb1032..a6c6c5f227 100644
--- a/meta/classes-recipe/kernel-devicetree.bbclass
+++ b/meta/classes-recipe/kernel-devicetree.bbclass
@@ -12,7 +12,12 @@ python () {
             d.appendVar("PACKAGES", " ${KERNEL_PACKAGE_NAME}-image-zimage-bundle")
 }
 
-FILES:${KERNEL_PACKAGE_NAME}-devicetree = "/${KERNEL_IMAGEDEST}/*.dtb /${KERNEL_IMAGEDEST}/*.dtbo"
+FILES:${KERNEL_PACKAGE_NAME}-devicetree = " \
+    /${KERNEL_DTBDEST}/*.dtb \
+    /${KERNEL_DTBDEST}/*.dtbo \
+    /${KERNEL_DTBDEST}/*/*.dtb \
+    /${KERNEL_DTBDEST}/*/*.dtbo \
+"
 FILES:${KERNEL_PACKAGE_NAME}-image-zimage-bundle = "/${KERNEL_IMAGEDEST}/zImage-*.dtb.bin"
 
 # Generate kernel+devicetree bundle
@@ -73,12 +78,16 @@ do_compile:append() {
 }
 
 do_install:append() {
+	install -d ${D}/${KERNEL_DTBDEST}
 	for dtbf in ${KERNEL_DEVICETREE}; do
 		dtb=`normalize_dtb "$dtbf"`
-		dtb_ext=${dtb##*.}
-		dtb_base_name=`basename $dtb .$dtb_ext`
 		dtb_path=`get_real_dtb_path_in_kernel "$dtb"`
-		install -m 0644 $dtb_path ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
+		if [ ${KERNEL_DTBVENDORED} == "false" ]; then
+			dtb_ext=${dtb##*.}
+			dtb_base_name=`basename $dtb .$dtb_ext`
+			dtb=$dtb_base_name.$dtb_ext
+		fi
+		install -Dm 0644 $dtb_path ${D}/${KERNEL_DTBDEST}/$dtb
 	done
 }
 
@@ -88,7 +97,10 @@ do_deploy:append() {
 		dtb_ext=${dtb##*.}
 		dtb_base_name=`basename $dtb .$dtb_ext`
 		install -d $deployDir
-		install -m 0644 ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
+		if [ ${KERNEL_DTBVENDORED} == "false" ]; then
+			dtb=$dtb_base_name.$dtb_ext
+		fi
+		install -m 0644 ${D}/${KERNEL_DTBDEST}/$dtb $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
 		if [ "${KERNEL_IMAGETYPE_SYMLINK}" = "1" ] ; then
 			ln -sf $dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext $deployDir/$dtb_base_name.$dtb_ext
 		fi
diff --git a/meta/classes-recipe/kernel.bbclass b/meta/classes-recipe/kernel.bbclass
index e634eabd49..8f022b234d 100644
--- a/meta/classes-recipe/kernel.bbclass
+++ b/meta/classes-recipe/kernel.bbclass
@@ -215,6 +215,8 @@ KERNEL_RELEASE ?= "${KERNEL_VERSION}"
 # The directory where built kernel lies in the kernel tree
 KERNEL_OUTPUT_DIR ?= "arch/${ARCH}/boot"
 KERNEL_IMAGEDEST ?= "boot"
+KERNEL_DTBDEST ?= "${KERNEL_IMAGEDEST}"
+KERNEL_DTBVENDORED ?= "false"
 
 #
 # configuration
-- 
2.40.1



^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory
  2023-05-05 16:36 [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory rs
@ 2023-05-06  9:09 ` Martin Jansa
  2023-05-07 20:49   ` Peter Kjellerstedt
  0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2023-05-06  9:09 UTC (permalink / raw)
  To: rs; +Cc: afd, detheridge, reatmon, denis, alexandre.belloni, openembedded-core

[-- Attachment #1: Type: text/plain, Size: 3298 bytes --]

On Fri, May 5, 2023 at 6:38 PM Randolph Sapp via lists.openembedded.org <rs=
ti.com@lists.openembedded.org> wrote:

> From: Randolph Sapp <rs@ti.com>
>
> Fedora/Redhat and Arch are somewhat standardized on their dtb directory
> structure. Let's add some flags to configure yocto to mimic that
> behavior.
>
> Add the following variables to the kernel class:
>         - KERNEL_DTBDEST (controls the destination directory for dtbs)
>         - KERNEL_DTBVENDORED (controls if vendor subdirectories are to
>           be respected)
>
> Currently KERNEL_DTBDEST is expected to be a subdir of KERNEL_IMAGEDEST
> and KERNEL_DTBVENDORED is expected to be "true"/"false". This only
> applies to the package directory structure. The deploydir structure is
> purposely left untouched for compatibility with existing recipes.
>
> By default this is configured to behave the same as the current recipe
> and produce a flat dtb directory at KERNEL_IMAGEDEST.
>
> Signed-off-by: Randolph Sapp <rs@ti.com>
> ---
>
> Well, suppose I was breaking things by submitting this to kirkstone
> first. This is just the master version of the following patchset:
> https://lists.openembedded.org/g/openembedded-core/message/180754
>
> I'd love to get that series merged as well if this patch is acceptable.
>
>  meta/classes-recipe/kernel-devicetree.bbclass | 22 ++++++++++++++-----
>  meta/classes-recipe/kernel.bbclass            |  2 ++
>  2 files changed, 19 insertions(+), 5 deletions(-)
>
> diff --git a/meta/classes-recipe/kernel-devicetree.bbclass
> b/meta/classes-recipe/kernel-devicetree.bbclass
> index 4d0ecb1032..a6c6c5f227 100644
> --- a/meta/classes-recipe/kernel-devicetree.bbclass
> +++ b/meta/classes-recipe/kernel-devicetree.bbclass
> ...



> -               dtb_base_name=`basename $dtb .$dtb_ext`
>                 dtb_path=`get_real_dtb_path_in_kernel "$dtb"`
> -               install -m 0644 $dtb_path
> ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
> +               if [ ${KERNEL_DTBVENDORED} == "false" ]; then
>

dash doesn't like this:

 /bin/dash -c "if [ false == "false" ]; then echo foo; fi"

add quotes or use single '='.

+                       dtb_ext=${dtb##*.}
> +                       dtb_base_name=`basename $dtb .$dtb_ext`
> +                       dtb=$dtb_base_name.$dtb_ext
> +               fi
> +               install -Dm 0644 $dtb_path ${D}/${KERNEL_DTBDEST}/$dtb
>         done
>  }
>
> @@ -88,7 +97,10 @@ do_deploy:append() {
>                 dtb_ext=${dtb##*.}
>                 dtb_base_name=`basename $dtb .$dtb_ext`
>                 install -d $deployDir
> -               install -m 0644
> ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
> $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
> +               if [ ${KERNEL_DTBVENDORED} == "false" ]; then
>

Same here


> +                       dtb=$dtb_base_name.$dtb_ext
> +               fi
> +               install -m 0644 ${D}/${KERNEL_DTBDEST}/$dtb
> $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
>                 if [ "${KERNEL_IMAGETYPE_SYMLINK}" = "1" ] ; then
>                         ln -sf $dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
> $deployDir/$dtb_base_name.$dtb_ext
>                 fi
>

[-- Attachment #2: Type: text/html, Size: 4762 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory
  2023-05-06  9:09 ` Martin Jansa
@ 2023-05-07 20:49   ` Peter Kjellerstedt
  2023-05-07 22:19     ` Martin Jansa
  0 siblings, 1 reply; 9+ messages in thread
From: Peter Kjellerstedt @ 2023-05-07 20:49 UTC (permalink / raw)
  To: Martin Jansa, rs
  Cc: afd, detheridge, reatmon, denis, alexandre.belloni, openembedded-core

[-- Attachment #1: Type: text/plain, Size: 4275 bytes --]

[ Outlook does not support commenting inline for HTML mails, thus I’m top posting…]

The problem is `==`, which is a bashism. POSIX shells (like dash) only support `=`. When it comes to quoting, you typically want to quote shell variables in tests in case they are empty. OTOH, static strings without whitespace or other special characters do not need quoting. So the correct way to write the if statements is:

               if [ "${KERNEL_DTBVENDORED}" = false ]; then

(In this case it is actually a bitbake variable being quoted, but unless you can guarantee it is not empty, the same rule applies.)

//Peter

From: openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org> On Behalf Of Martin Jansa
Sent: den 6 maj 2023 11:10
To: rs@ti.com
Cc: afd@ti.com; detheridge@ti.com; reatmon@ti.com; denis@denix.org; alexandre.belloni@bootlin.com; openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory

On Fri, May 5, 2023 at 6:38 PM Randolph Sapp via lists.openembedded.org<http://lists.openembedded.org> <rs=ti.com@lists.openembedded.org<mailto:ti.com@lists.openembedded.org>> wrote:
From: Randolph Sapp <rs@ti.com<mailto:rs@ti.com>>

Fedora/Redhat and Arch are somewhat standardized on their dtb directory
structure. Let's add some flags to configure yocto to mimic that
behavior.

Add the following variables to the kernel class:
        - KERNEL_DTBDEST (controls the destination directory for dtbs)
        - KERNEL_DTBVENDORED (controls if vendor subdirectories are to
          be respected)

Currently KERNEL_DTBDEST is expected to be a subdir of KERNEL_IMAGEDEST
and KERNEL_DTBVENDORED is expected to be "true"/"false". This only
applies to the package directory structure. The deploydir structure is
purposely left untouched for compatibility with existing recipes.

By default this is configured to behave the same as the current recipe
and produce a flat dtb directory at KERNEL_IMAGEDEST.

Signed-off-by: Randolph Sapp <rs@ti.com<mailto:rs@ti.com>>
---

Well, suppose I was breaking things by submitting this to kirkstone
first. This is just the master version of the following patchset:
https://lists.openembedded.org/g/openembedded-core/message/180754

I'd love to get that series merged as well if this patch is acceptable.

 meta/classes-recipe/kernel-devicetree.bbclass | 22 ++++++++++++++-----
 meta/classes-recipe/kernel.bbclass            |  2 ++
 2 files changed, 19 insertions(+), 5 deletions(-)

diff --git a/meta/classes-recipe/kernel-devicetree.bbclass b/meta/classes-recipe/kernel-devicetree.bbclass
index 4d0ecb1032..a6c6c5f227 100644
--- a/meta/classes-recipe/kernel-devicetree.bbclass
+++ b/meta/classes-recipe/kernel-devicetree.bbclass
...

-               dtb_base_name=`basename $dtb .$dtb_ext`
                dtb_path=`get_real_dtb_path_in_kernel "$dtb"`
-               install -m 0644 $dtb_path ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
+               if [ ${KERNEL_DTBVENDORED} == "false" ]; then

dash doesn't like this:

 /bin/dash -c "if [ false == "false" ]; then echo foo; fi"

add quotes or use single '='.

+                       dtb_ext=${dtb##*.}
+                       dtb_base_name=`basename $dtb .$dtb_ext`
+                       dtb=$dtb_base_name.$dtb_ext
+               fi
+               install -Dm 0644 $dtb_path ${D}/${KERNEL_DTBDEST}/$dtb
        done
 }

@@ -88,7 +97,10 @@ do_deploy:append() {
                dtb_ext=${dtb##*.}
                dtb_base_name=`basename $dtb .$dtb_ext`
                install -d $deployDir
-               install -m 0644 ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
+               if [ ${KERNEL_DTBVENDORED} == "false" ]; then

Same here

+                       dtb=$dtb_base_name.$dtb_ext
+               fi
+               install -m 0644 ${D}/${KERNEL_DTBDEST}/$dtb $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
                if [ "${KERNEL_IMAGETYPE_SYMLINK}" = "1" ] ; then
                        ln -sf $dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext $deployDir/$dtb_base_name.$dtb_ext
                fi

[-- Attachment #2: Type: text/html, Size: 10513 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory
  2023-05-07 20:49   ` Peter Kjellerstedt
@ 2023-05-07 22:19     ` Martin Jansa
  2023-05-08  6:13       ` Peter Kjellerstedt
  0 siblings, 1 reply; 9+ messages in thread
From: Martin Jansa @ 2023-05-07 22:19 UTC (permalink / raw)
  To: Peter Kjellerstedt
  Cc: rs, afd, detheridge, reatmon, denis, alexandre.belloni,
	openembedded-core

[-- Attachment #1: Type: text/plain, Size: 4869 bytes --]

or
if "${@'true' if oe.types.boolean(d.getVar('KERNEL_DTBVENDORED')) else
'false'}"; then
to avoid test as well (like systemd recipes is using) and I did here as
well in:
https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master&id=e2a6da5202a6671113758f9746ddbd8141a75757

On Sun, May 7, 2023 at 10:49 PM Peter Kjellerstedt <
peter.kjellerstedt@axis.com> wrote:

> [ Outlook does not support commenting inline for HTML mails, thus I’m top
> posting…]
>
>
>
> The problem is `==`, which is a bashism. POSIX shells (like dash) only
> support `=`. When it comes to quoting, you typically want to quote shell
> variables in tests in case they are empty. OTOH, static strings without
> whitespace or other special characters do not need quoting. So the correct
> way to write the if statements is:
>
>
>
>                if [ "${KERNEL_DTBVENDORED}" = false ]; then
>
>
>
> (In this case it is actually a bitbake variable being quoted, but unless
> you can guarantee it is not empty, the same rule applies.)
>
>
>
> //Peter
>
>
>
> *From:* openembedded-core@lists.openembedded.org <
> openembedded-core@lists.openembedded.org> *On Behalf Of *Martin Jansa
> *Sent:* den 6 maj 2023 11:10
> *To:* rs@ti.com
> *Cc:* afd@ti.com; detheridge@ti.com; reatmon@ti.com; denis@denix.org;
> alexandre.belloni@bootlin.com; openembedded-core@lists.openembedded.org
> *Subject:* Re: [OE-core][PATCH] kernel-devicetree: allow specification of
> dtb directory
>
>
>
> On Fri, May 5, 2023 at 6:38 PM Randolph Sapp via lists.openembedded.org
> <rs=ti.com@lists.openembedded.org> wrote:
>
> From: Randolph Sapp <rs@ti.com>
>
> Fedora/Redhat and Arch are somewhat standardized on their dtb directory
> structure. Let's add some flags to configure yocto to mimic that
> behavior.
>
> Add the following variables to the kernel class:
>         - KERNEL_DTBDEST (controls the destination directory for dtbs)
>         - KERNEL_DTBVENDORED (controls if vendor subdirectories are to
>           be respected)
>
> Currently KERNEL_DTBDEST is expected to be a subdir of KERNEL_IMAGEDEST
> and KERNEL_DTBVENDORED is expected to be "true"/"false". This only
> applies to the package directory structure. The deploydir structure is
> purposely left untouched for compatibility with existing recipes.
>
> By default this is configured to behave the same as the current recipe
> and produce a flat dtb directory at KERNEL_IMAGEDEST.
>
> Signed-off-by: Randolph Sapp <rs@ti.com>
> ---
>
> Well, suppose I was breaking things by submitting this to kirkstone
> first. This is just the master version of the following patchset:
> https://lists.openembedded.org/g/openembedded-core/message/180754
>
> I'd love to get that series merged as well if this patch is acceptable.
>
>  meta/classes-recipe/kernel-devicetree.bbclass | 22 ++++++++++++++-----
>  meta/classes-recipe/kernel.bbclass            |  2 ++
>  2 files changed, 19 insertions(+), 5 deletions(-)
>
> diff --git a/meta/classes-recipe/kernel-devicetree.bbclass
> b/meta/classes-recipe/kernel-devicetree.bbclass
> index 4d0ecb1032..a6c6c5f227 100644
> --- a/meta/classes-recipe/kernel-devicetree.bbclass
> +++ b/meta/classes-recipe/kernel-devicetree.bbclass
> ...
>
>
>
> -               dtb_base_name=`basename $dtb .$dtb_ext`
>                 dtb_path=`get_real_dtb_path_in_kernel "$dtb"`
> -               install -m 0644 $dtb_path
> ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
> +               if [ ${KERNEL_DTBVENDORED} == "false" ]; then
>
>
>
> dash doesn't like this:
>
>
>
>  /bin/dash -c "if [ false == "false" ]; then echo foo; fi"
>
>
>
> add quotes or use single '='.
>
>
>
> +                       dtb_ext=${dtb##*.}
> +                       dtb_base_name=`basename $dtb .$dtb_ext`
> +                       dtb=$dtb_base_name.$dtb_ext
> +               fi
> +               install -Dm 0644 $dtb_path ${D}/${KERNEL_DTBDEST}/$dtb
>         done
>  }
>
> @@ -88,7 +97,10 @@ do_deploy:append() {
>                 dtb_ext=${dtb##*.}
>                 dtb_base_name=`basename $dtb .$dtb_ext`
>                 install -d $deployDir
> -               install -m 0644
> ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
> $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
> +               if [ ${KERNEL_DTBVENDORED} == "false" ]; then
>
>
>
> Same here
>
>
>
> +                       dtb=$dtb_base_name.$dtb_ext
> +               fi
> +               install -m 0644 ${D}/${KERNEL_DTBDEST}/$dtb
> $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
>                 if [ "${KERNEL_IMAGETYPE_SYMLINK}" = "1" ] ; then
>                         ln -sf $dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
> $deployDir/$dtb_base_name.$dtb_ext
>                 fi
>
>

[-- Attachment #2: Type: text/html, Size: 9742 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* RE: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory
  2023-05-07 22:19     ` Martin Jansa
@ 2023-05-08  6:13       ` Peter Kjellerstedt
  2023-05-08 18:13         ` [EXTERNAL] " Randolph Sapp
  0 siblings, 1 reply; 9+ messages in thread
From: Peter Kjellerstedt @ 2023-05-08  6:13 UTC (permalink / raw)
  To: Martin Jansa
  Cc: rs, afd, detheridge, reatmon, denis, alexandre.belloni,
	openembedded-core

[-- Attachment #1: Type: text/plain, Size: 5517 bytes --]

That is most certainly a good alternative.

//Peter

From: Martin Jansa <martin.jansa@gmail.com>
Sent: den 8 maj 2023 00:20
To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Cc: rs@ti.com; afd@ti.com; detheridge@ti.com; reatmon@ti.com; denis@denix.org; alexandre.belloni@bootlin.com; openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory

or
if "${@'true' if oe.types.boolean(d.getVar('KERNEL_DTBVENDORED')) else 'false'}<mailto:$%7b@'true'%20if%20oe.types.boolean(d.getVar('KERNEL_DTBVENDORED'))%20else%20'false'%7d>"; then
to avoid test as well (like systemd recipes is using) and I did here as well in:
https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master&id=e2a6da5202a6671113758f9746ddbd8141a75757

On Sun, May 7, 2023 at 10:49 PM Peter Kjellerstedt <peter.kjellerstedt@axis.com<mailto:peter.kjellerstedt@axis.com>> wrote:
[ Outlook does not support commenting inline for HTML mails, thus I’m top posting…]

The problem is `==`, which is a bashism. POSIX shells (like dash) only support `=`. When it comes to quoting, you typically want to quote shell variables in tests in case they are empty. OTOH, static strings without whitespace or other special characters do not need quoting. So the correct way to write the if statements is:

               if [ "${KERNEL_DTBVENDORED}" = false ]; then

(In this case it is actually a bitbake variable being quoted, but unless you can guarantee it is not empty, the same rule applies.)

//Peter

From: openembedded-core@lists.openembedded.org<mailto:openembedded-core@lists.openembedded.org> <openembedded-core@lists.openembedded.org<mailto:openembedded-core@lists.openembedded.org>> On Behalf Of Martin Jansa
Sent: den 6 maj 2023 11:10
To: rs@ti.com<mailto:rs@ti.com>
Cc: afd@ti.com<mailto:afd@ti.com>; detheridge@ti.com<mailto:detheridge@ti.com>; reatmon@ti.com<mailto:reatmon@ti.com>; denis@denix.org<mailto:denis@denix.org>; alexandre.belloni@bootlin.com<mailto:alexandre.belloni@bootlin.com>; openembedded-core@lists.openembedded.org<mailto:openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory

On Fri, May 5, 2023 at 6:38 PM Randolph Sapp via lists.openembedded.org<http://lists.openembedded.org> <rs=ti.com@lists.openembedded.org<mailto:ti.com@lists.openembedded.org>> wrote:
From: Randolph Sapp <rs@ti.com<mailto:rs@ti.com>>

Fedora/Redhat and Arch are somewhat standardized on their dtb directory
structure. Let's add some flags to configure yocto to mimic that
behavior.

Add the following variables to the kernel class:
        - KERNEL_DTBDEST (controls the destination directory for dtbs)
        - KERNEL_DTBVENDORED (controls if vendor subdirectories are to
          be respected)

Currently KERNEL_DTBDEST is expected to be a subdir of KERNEL_IMAGEDEST
and KERNEL_DTBVENDORED is expected to be "true"/"false". This only
applies to the package directory structure. The deploydir structure is
purposely left untouched for compatibility with existing recipes.

By default this is configured to behave the same as the current recipe
and produce a flat dtb directory at KERNEL_IMAGEDEST.

Signed-off-by: Randolph Sapp <rs@ti.com<mailto:rs@ti.com>>
---

Well, suppose I was breaking things by submitting this to kirkstone
first. This is just the master version of the following patchset:
https://lists.openembedded.org/g/openembedded-core/message/180754

I'd love to get that series merged as well if this patch is acceptable.

 meta/classes-recipe/kernel-devicetree.bbclass | 22 ++++++++++++++-----
 meta/classes-recipe/kernel.bbclass            |  2 ++
 2 files changed, 19 insertions(+), 5 deletions(-)

diff --git a/meta/classes-recipe/kernel-devicetree.bbclass b/meta/classes-recipe/kernel-devicetree.bbclass
index 4d0ecb1032..a6c6c5f227 100644
--- a/meta/classes-recipe/kernel-devicetree.bbclass
+++ b/meta/classes-recipe/kernel-devicetree.bbclass
...

-               dtb_base_name=`basename $dtb .$dtb_ext`
                dtb_path=`get_real_dtb_path_in_kernel "$dtb"`
-               install -m 0644 $dtb_path ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
+               if [ ${KERNEL_DTBVENDORED} == "false" ]; then

dash doesn't like this:

 /bin/dash -c "if [ false == "false" ]; then echo foo; fi"

add quotes or use single '='.

+                       dtb_ext=${dtb##*.}
+                       dtb_base_name=`basename $dtb .$dtb_ext`
+                       dtb=$dtb_base_name.$dtb_ext
+               fi
+               install -Dm 0644 $dtb_path ${D}/${KERNEL_DTBDEST}/$dtb
        done
 }

@@ -88,7 +97,10 @@ do_deploy:append() {
                dtb_ext=${dtb##*.}
                dtb_base_name=`basename $dtb .$dtb_ext`
                install -d $deployDir
-               install -m 0644 ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
+               if [ ${KERNEL_DTBVENDORED} == "false" ]; then

Same here

+                       dtb=$dtb_base_name.$dtb_ext
+               fi
+               install -m 0644 ${D}/${KERNEL_DTBDEST}/$dtb $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
                if [ "${KERNEL_IMAGETYPE_SYMLINK}" = "1" ] ; then
                        ln -sf $dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext $deployDir/$dtb_base_name.$dtb_ext
                fi

[-- Attachment #2: Type: text/html, Size: 15118 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [EXTERNAL] RE: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory
  2023-05-08  6:13       ` Peter Kjellerstedt
@ 2023-05-08 18:13         ` Randolph Sapp
  2023-05-08 18:18           ` Denys Dmytriyenko
       [not found]           ` <175D3DFC66A1C041.2502@lists.openembedded.org>
  0 siblings, 2 replies; 9+ messages in thread
From: Randolph Sapp @ 2023-05-08 18:13 UTC (permalink / raw)
  To: Peter Kjellerstedt, Martin Jansa
  Cc: afd, detheridge, reatmon, denis, alexandre.belloni, openembedded-core

On 5/8/23 01:13, Peter Kjellerstedt wrote:
> That is most certainly a good alternative.
> 
> //Peter
> 
> *From:*Martin Jansa <martin.jansa@gmail.com>
> *Sent:* den 8 maj 2023 00:20
> *To:* Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> *Cc:* rs@ti.com; afd@ti.com; detheridge@ti.com; reatmon@ti.com; 
> denis@denix.org; alexandre.belloni@bootlin.com; 
> openembedded-core@lists.openembedded.org
> *Subject:* Re: [OE-core][PATCH] kernel-devicetree: allow specification 
> of dtb directory
> 
> or
> 
> if "${@'true' if oe.types.boolean(d.getVar('KERNEL_DTBVENDORED')) else 
> 'false'} 
> <mailto:$%7b@'true'%20if%20oe.types.boolean(d.getVar('KERNEL_DTBVENDORED'))%20else%20'false'%7d>"; then
> 
> to avoid test as well (like systemd recipes is using) and I did here as 
> well in:
> 
> https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master&id=e2a6da5202a6671113758f9746ddbd8141a75757 <https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master&id=e2a6da5202a6671113758f9746ddbd8141a75757>
> 
> On Sun, May 7, 2023 at 10:49 PM Peter Kjellerstedt 
> <peter.kjellerstedt@axis.com <mailto:peter.kjellerstedt@axis.com>> wrote:
> 
>     [ Outlook does not support commenting inline for HTML mails, thus
>     I’m top posting…]
> 
>     The problem is `==`, which is a bashism. POSIX shells (like dash)
>     only support `=`. When it comes to quoting, you typically want to
>     quote shell variables in tests in case they are empty. OTOH, static
>     strings without whitespace or other special characters do not need
>     quoting. So the correct way to write the if statements is:
> 
>                     if [ "${KERNEL_DTBVENDORED}" = false ]; then
> 
>     (In this case it is actually a bitbake variable being quoted, but
>     unless you can guarantee it is not empty, the same rule applies.)
> 
>     //Peter
> 
>     *From:*openembedded-core@lists.openembedded.org
>     <mailto:openembedded-core@lists.openembedded.org>
>     <openembedded-core@lists.openembedded.org
>     <mailto:openembedded-core@lists.openembedded.org>> *On Behalf Of
>     *Martin Jansa
>     *Sent:* den 6 maj 2023 11:10
>     *To:* rs@ti.com <mailto:rs@ti.com>
>     *Cc:* afd@ti.com <mailto:afd@ti.com>; detheridge@ti.com
>     <mailto:detheridge@ti.com>; reatmon@ti.com <mailto:reatmon@ti.com>;
>     denis@denix.org <mailto:denis@denix.org>;
>     alexandre.belloni@bootlin.com
>     <mailto:alexandre.belloni@bootlin.com>;
>     openembedded-core@lists.openembedded.org
>     <mailto:openembedded-core@lists.openembedded.org>
>     *Subject:* Re: [OE-core][PATCH] kernel-devicetree: allow
>     specification of dtb directory
> 
>     On Fri, May 5, 2023 at 6:38 PM Randolph Sapp via
>     lists.openembedded.org <http://lists.openembedded.org>
>     <rs=ti.com@lists.openembedded.org
>     <mailto:ti.com@lists.openembedded.org>> wrote:
> 
>         From: Randolph Sapp <rs@ti.com <mailto:rs@ti.com>>
> 
>         Fedora/Redhat and Arch are somewhat standardized on their dtb
>         directory
>         structure. Let's add some flags to configure yocto to mimic that
>         behavior.
> 
>         Add the following variables to the kernel class:
>                  - KERNEL_DTBDEST (controls the destination directory
>         for dtbs)
>                  - KERNEL_DTBVENDORED (controls if vendor subdirectories
>         are to
>                    be respected)
> 
>         Currently KERNEL_DTBDEST is expected to be a subdir of
>         KERNEL_IMAGEDEST
>         and KERNEL_DTBVENDORED is expected to be "true"/"false". This only
>         applies to the package directory structure. The deploydir
>         structure is
>         purposely left untouched for compatibility with existing recipes.
> 
>         By default this is configured to behave the same as the current
>         recipe
>         and produce a flat dtb directory at KERNEL_IMAGEDEST.
> 
>         Signed-off-by: Randolph Sapp <rs@ti.com <mailto:rs@ti.com>>
>         ---
> 
>         Well, suppose I was breaking things by submitting this to kirkstone
>         first. This is just the master version of the following patchset:
>         https://lists.openembedded.org/g/openembedded-core/message/180754 <https://lists.openembedded.org/g/openembedded-core/message/180754>
> 
>         I'd love to get that series merged as well if this patch is
>         acceptable.
> 
>           meta/classes-recipe/kernel-devicetree.bbclass | 22
>         ++++++++++++++-----
>           meta/classes-recipe/kernel.bbclass            |  2 ++
>           2 files changed, 19 insertions(+), 5 deletions(-)
> 
>         diff --git a/meta/classes-recipe/kernel-devicetree.bbclass
>         b/meta/classes-recipe/kernel-devicetree.bbclass
>         index 4d0ecb1032..a6c6c5f227 100644
>         --- a/meta/classes-recipe/kernel-devicetree.bbclass
>         +++ b/meta/classes-recipe/kernel-devicetree.bbclass
>         ...
> 
>         -               dtb_base_name=`basename $dtb .$dtb_ext`
>                          dtb_path=`get_real_dtb_path_in_kernel "$dtb"`
>         -               install -m 0644 $dtb_path
>         ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
>         +               if [ ${KERNEL_DTBVENDORED} == "false" ]; then
> 
>     dash doesn't like this:
> 
>       /bin/dash -c "if [ false == "false" ]; then echo foo; fi"
> 
>     add quotes or use single '='.
> 
>         +                       dtb_ext=${dtb##*.}
>         +                       dtb_base_name=`basename $dtb .$dtb_ext`
>         +                       dtb=$dtb_base_name.$dtb_ext
>         +               fi
>         +               install -Dm 0644 $dtb_path
>         ${D}/${KERNEL_DTBDEST}/$dtb
>                  done
>           }
> 
>         @@ -88,7 +97,10 @@ do_deploy:append() {
>                          dtb_ext=${dtb##*.}
>                          dtb_base_name=`basename $dtb .$dtb_ext`
>                          install -d $deployDir
>         -               install -m 0644
>         ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
>         $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
>         +               if [ ${KERNEL_DTBVENDORED} == "false" ]; then
> 
>     Same here
> 
>         +                       dtb=$dtb_base_name.$dtb_ext
>         +               fi
>         +               install -m 0644 ${D}/${KERNEL_DTBDEST}/$dtb
>         $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
>                          if [ "${KERNEL_IMAGETYPE_SYMLINK}" = "1" ] ; then
>                                  ln -sf
>         $dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
>         $deployDir/$dtb_base_name.$dtb_ext
>                          fi
> 

Ah, my bad. I need to figure out a way to get shellcheck to run on bash 
blocks in bb recipes. Would save everyone some time. I'll submit a V2 
with your modifications Martin!


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [EXTERNAL] RE: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory
  2023-05-08 18:13         ` [EXTERNAL] " Randolph Sapp
@ 2023-05-08 18:18           ` Denys Dmytriyenko
       [not found]           ` <175D3DFC66A1C041.2502@lists.openembedded.org>
  1 sibling, 0 replies; 9+ messages in thread
From: Denys Dmytriyenko @ 2023-05-08 18:18 UTC (permalink / raw)
  To: Randolph Sapp
  Cc: Peter Kjellerstedt, Martin Jansa, afd, detheridge, reatmon,
	alexandre.belloni, openembedded-core

On Mon, May 08, 2023 at 01:13:58PM -0500, Randolph Sapp wrote:
> On 5/8/23 01:13, Peter Kjellerstedt wrote:
> >That is most certainly a good alternative.
> >
> >//Peter
> >
> >*From:*Martin Jansa <martin.jansa@gmail.com>
> >*Sent:* den 8 maj 2023 00:20
> >*To:* Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> >*Cc:* rs@ti.com; afd@ti.com; detheridge@ti.com; reatmon@ti.com;
> >denis@denix.org; alexandre.belloni@bootlin.com;
> >openembedded-core@lists.openembedded.org
> >*Subject:* Re: [OE-core][PATCH] kernel-devicetree: allow
> >specification of dtb directory
> >
> >or
> >
> >if "${@'true' if oe.types.boolean(d.getVar('KERNEL_DTBVENDORED'))
> >else 'false'} <mailto:$%7b@'true'%20if%20oe.types.boolean(d.getVar('KERNEL_DTBVENDORED'))%20else%20'false'%7d>";
> >then
> >
> >to avoid test as well (like systemd recipes is using) and I did
> >here as well in:
> >
> >https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master&id=e2a6da5202a6671113758f9746ddbd8141a75757 <https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master&id=e2a6da5202a6671113758f9746ddbd8141a75757>
> >
> >On Sun, May 7, 2023 at 10:49 PM Peter Kjellerstedt
> ><peter.kjellerstedt@axis.com <mailto:peter.kjellerstedt@axis.com>>
> >wrote:
> >
> >    [ Outlook does not support commenting inline for HTML mails, thus
> >    I’m top posting…]
> >
> >    The problem is `==`, which is a bashism. POSIX shells (like dash)
> >    only support `=`. When it comes to quoting, you typically want to
> >    quote shell variables in tests in case they are empty. OTOH, static
> >    strings without whitespace or other special characters do not need
> >    quoting. So the correct way to write the if statements is:
> >
> >                    if [ "${KERNEL_DTBVENDORED}" = false ]; then
> >
> >    (In this case it is actually a bitbake variable being quoted, but
> >    unless you can guarantee it is not empty, the same rule applies.)
> >
> >    //Peter
> >
> >    *From:*openembedded-core@lists.openembedded.org
> >    <mailto:openembedded-core@lists.openembedded.org>
> >    <openembedded-core@lists.openembedded.org
> >    <mailto:openembedded-core@lists.openembedded.org>> *On Behalf Of
> >    *Martin Jansa
> >    *Sent:* den 6 maj 2023 11:10
> >    *To:* rs@ti.com <mailto:rs@ti.com>
> >    *Cc:* afd@ti.com <mailto:afd@ti.com>; detheridge@ti.com
> >    <mailto:detheridge@ti.com>; reatmon@ti.com <mailto:reatmon@ti.com>;
> >    denis@denix.org <mailto:denis@denix.org>;
> >    alexandre.belloni@bootlin.com
> >    <mailto:alexandre.belloni@bootlin.com>;
> >    openembedded-core@lists.openembedded.org
> >    <mailto:openembedded-core@lists.openembedded.org>
> >    *Subject:* Re: [OE-core][PATCH] kernel-devicetree: allow
> >    specification of dtb directory
> >
> >    On Fri, May 5, 2023 at 6:38 PM Randolph Sapp via
> >    lists.openembedded.org <http://lists.openembedded.org>
> >    <rs=ti.com@lists.openembedded.org
> >    <mailto:ti.com@lists.openembedded.org>> wrote:
> >
> >        From: Randolph Sapp <rs@ti.com <mailto:rs@ti.com>>
> >
> >        Fedora/Redhat and Arch are somewhat standardized on their dtb
> >        directory
> >        structure. Let's add some flags to configure yocto to mimic that
> >        behavior.
> >
> >        Add the following variables to the kernel class:
> >                 - KERNEL_DTBDEST (controls the destination directory
> >        for dtbs)
> >                 - KERNEL_DTBVENDORED (controls if vendor subdirectories
> >        are to
> >                   be respected)
> >
> >        Currently KERNEL_DTBDEST is expected to be a subdir of
> >        KERNEL_IMAGEDEST
> >        and KERNEL_DTBVENDORED is expected to be "true"/"false". This only
> >        applies to the package directory structure. The deploydir
> >        structure is
> >        purposely left untouched for compatibility with existing recipes.
> >
> >        By default this is configured to behave the same as the current
> >        recipe
> >        and produce a flat dtb directory at KERNEL_IMAGEDEST.
> >
> >        Signed-off-by: Randolph Sapp <rs@ti.com <mailto:rs@ti.com>>
> >        ---
> >
> >        Well, suppose I was breaking things by submitting this to kirkstone
> >        first. This is just the master version of the following patchset:
> >        https://lists.openembedded.org/g/openembedded-core/message/180754 <https://lists.openembedded.org/g/openembedded-core/message/180754>
> >
> >        I'd love to get that series merged as well if this patch is
> >        acceptable.
> >
> >          meta/classes-recipe/kernel-devicetree.bbclass | 22
> >        ++++++++++++++-----
> >          meta/classes-recipe/kernel.bbclass            |  2 ++
> >          2 files changed, 19 insertions(+), 5 deletions(-)
> >
> >        diff --git a/meta/classes-recipe/kernel-devicetree.bbclass
> >        b/meta/classes-recipe/kernel-devicetree.bbclass
> >        index 4d0ecb1032..a6c6c5f227 100644
> >        --- a/meta/classes-recipe/kernel-devicetree.bbclass
> >        +++ b/meta/classes-recipe/kernel-devicetree.bbclass
> >        ...
> >
> >        -               dtb_base_name=`basename $dtb .$dtb_ext`
> >                         dtb_path=`get_real_dtb_path_in_kernel "$dtb"`
> >        -               install -m 0644 $dtb_path
> >        ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
> >        +               if [ ${KERNEL_DTBVENDORED} == "false" ]; then
> >
> >    dash doesn't like this:
> >
> >      /bin/dash -c "if [ false == "false" ]; then echo foo; fi"
> >
> >    add quotes or use single '='.
> >
> >        +                       dtb_ext=${dtb##*.}
> >        +                       dtb_base_name=`basename $dtb .$dtb_ext`
> >        +                       dtb=$dtb_base_name.$dtb_ext
> >        +               fi
> >        +               install -Dm 0644 $dtb_path
> >        ${D}/${KERNEL_DTBDEST}/$dtb
> >                 done
> >          }
> >
> >        @@ -88,7 +97,10 @@ do_deploy:append() {
> >                         dtb_ext=${dtb##*.}
> >                         dtb_base_name=`basename $dtb .$dtb_ext`
> >                         install -d $deployDir
> >        -               install -m 0644
> >        ${D}/${KERNEL_IMAGEDEST}/$dtb_base_name.$dtb_ext
> >        $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
> >        +               if [ ${KERNEL_DTBVENDORED} == "false" ]; then
> >
> >    Same here
> >
> >        +                       dtb=$dtb_base_name.$dtb_ext
> >        +               fi
> >        +               install -m 0644 ${D}/${KERNEL_DTBDEST}/$dtb
> >        $deployDir/$dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
> >                         if [ "${KERNEL_IMAGETYPE_SYMLINK}" = "1" ] ; then
> >                                 ln -sf
> >        $dtb_base_name-${KERNEL_DTB_NAME}.$dtb_ext
> >        $deployDir/$dtb_base_name.$dtb_ext
> >                         fi
> >
> 
> Ah, my bad. I need to figure out a way to get shellcheck to run on
> bash blocks in bb recipes. Would save everyone some time. I'll
> submit a V2 with your modifications Martin!

No V2 - it already got merged into master. Moreover, due to this oversight, it 
defaults to "vendored" DT install in some builds, where bash is not the system 
shell...

We should merge Martin's fix from his contrib tree ASAP.

-- 
Denys


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory
       [not found]           ` <175D3DFC66A1C041.2502@lists.openembedded.org>
@ 2023-05-08 18:32             ` Denys Dmytriyenko
  2023-05-08 18:42               ` [EXTERNAL] " Randolph Sapp
  0 siblings, 1 reply; 9+ messages in thread
From: Denys Dmytriyenko @ 2023-05-08 18:32 UTC (permalink / raw)
  To: Randolph Sapp
  Cc: Peter Kjellerstedt, Martin Jansa, afd, detheridge, reatmon,
	alexandre.belloni, openembedded-core

On Mon, May 08, 2023 at 02:18:57PM -0400, Denys Dmytriyenko wrote:
> On Mon, May 08, 2023 at 01:13:58PM -0500, Randolph Sapp wrote:
> > On 5/8/23 01:13, Peter Kjellerstedt wrote:
> > >That is most certainly a good alternative.
> > >
> > >//Peter
> > >
> > >*From:*Martin Jansa <martin.jansa@gmail.com>
> > >*Sent:* den 8 maj 2023 00:20
> > >*To:* Peter Kjellerstedt <peter.kjellerstedt@axis.com>
> > >*Cc:* rs@ti.com; afd@ti.com; detheridge@ti.com; reatmon@ti.com;
> > >denis@denix.org; alexandre.belloni@bootlin.com;
> > >openembedded-core@lists.openembedded.org
> > >*Subject:* Re: [OE-core][PATCH] kernel-devicetree: allow
> > >specification of dtb directory
> > >
> > >or
> > >
> > >if "${@'true' if oe.types.boolean(d.getVar('KERNEL_DTBVENDORED'))
> > >else 'false'} <mailto:$%7b@'true'%20if%20oe.types.boolean(d.getVar('KERNEL_DTBVENDORED'))%20else%20'false'%7d>";
> > >then
> > >
> > >to avoid test as well (like systemd recipes is using) and I did
> > >here as well in:
> > >
> > >https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master&id=e2a6da5202a6671113758f9746ddbd8141a75757 <https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master&id=e2a6da5202a6671113758f9746ddbd8141a75757>
> > >
> > >On Sun, May 7, 2023 at 10:49 PM Peter Kjellerstedt
> > ><peter.kjellerstedt@axis.com <mailto:peter.kjellerstedt@axis.com>>
> > >wrote:
> > >
> > >    [ Outlook does not support commenting inline for HTML mails, thus
> > >    I’m top posting…]
> > >
> > >    The problem is `==`, which is a bashism. POSIX shells (like dash)
> > >    only support `=`. When it comes to quoting, you typically want to
> > >    quote shell variables in tests in case they are empty. OTOH, static
> > >    strings without whitespace or other special characters do not need
> > >    quoting. So the correct way to write the if statements is:
> > >
> > >                    if [ "${KERNEL_DTBVENDORED}" = false ]; then
> > >
> > >    (In this case it is actually a bitbake variable being quoted, but
> > >    unless you can guarantee it is not empty, the same rule applies.)
> > >
> > >    //Peter

<snip>


> > Ah, my bad. I need to figure out a way to get shellcheck to run on
> > bash blocks in bb recipes. Would save everyone some time. I'll
> > submit a V2 with your modifications Martin!
> 
> No V2 - it already got merged into master. Moreover, due to this oversight, it 
> defaults to "vendored" DT install in some builds, where bash is not the system 
> shell...
> 
> We should merge Martin's fix from his contrib tree ASAP.

BTW, there are other nuisances with this change:

https://patchwork.yoctoproject.org/project/ti/patch/20230508181551.2404141-1-denis@denix.org/

Not sure how common the use of third level in KERNEL_DTBDEST dir structure is, 
maybe we should add a third level generic glob to OE-Core to be safe...

-- 
Denys


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [EXTERNAL] Re: [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory
  2023-05-08 18:32             ` Denys Dmytriyenko
@ 2023-05-08 18:42               ` Randolph Sapp
  0 siblings, 0 replies; 9+ messages in thread
From: Randolph Sapp @ 2023-05-08 18:42 UTC (permalink / raw)
  To: Denys Dmytriyenko
  Cc: Peter Kjellerstedt, Martin Jansa, afd, detheridge, reatmon,
	alexandre.belloni, openembedded-core

On 5/8/23 13:32, Denys Dmytriyenko wrote:
> On Mon, May 08, 2023 at 02:18:57PM -0400, Denys Dmytriyenko wrote:
>> On Mon, May 08, 2023 at 01:13:58PM -0500, Randolph Sapp wrote:
>>> On 5/8/23 01:13, Peter Kjellerstedt wrote:
>>>> That is most certainly a good alternative.
>>>>
>>>> //Peter
>>>>
>>>> *From:*Martin Jansa <martin.jansa@gmail.com>
>>>> *Sent:* den 8 maj 2023 00:20
>>>> *To:* Peter Kjellerstedt <peter.kjellerstedt@axis.com>
>>>> *Cc:* rs@ti.com; afd@ti.com; detheridge@ti.com; reatmon@ti.com;
>>>> denis@denix.org; alexandre.belloni@bootlin.com;
>>>> openembedded-core@lists.openembedded.org
>>>> *Subject:* Re: [OE-core][PATCH] kernel-devicetree: allow
>>>> specification of dtb directory
>>>>
>>>> or
>>>>
>>>> if "${@'true' if oe.types.boolean(d.getVar('KERNEL_DTBVENDORED'))
>>>> else 'false'} <mailto:$%7b@'true'%20if%20oe.types.boolean(d.getVar('KERNEL_DTBVENDORED'))%20else%20'false'%7d>";
>>>> then
>>>>
>>>> to avoid test as well (like systemd recipes is using) and I did
>>>> here as well in:
>>>>
>>>> https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master&id=e2a6da5202a6671113758f9746ddbd8141a75757 <https://git.openembedded.org/openembedded-core-contrib/commit/?h=jansa/master&id=e2a6da5202a6671113758f9746ddbd8141a75757>
>>>>
>>>> On Sun, May 7, 2023 at 10:49 PM Peter Kjellerstedt
>>>> <peter.kjellerstedt@axis.com <mailto:peter.kjellerstedt@axis.com>>
>>>> wrote:
>>>>
>>>>     [ Outlook does not support commenting inline for HTML mails, thus
>>>>     I’m top posting…]
>>>>
>>>>     The problem is `==`, which is a bashism. POSIX shells (like dash)
>>>>     only support `=`. When it comes to quoting, you typically want to
>>>>     quote shell variables in tests in case they are empty. OTOH, static
>>>>     strings without whitespace or other special characters do not need
>>>>     quoting. So the correct way to write the if statements is:
>>>>
>>>>                     if [ "${KERNEL_DTBVENDORED}" = false ]; then
>>>>
>>>>     (In this case it is actually a bitbake variable being quoted, but
>>>>     unless you can guarantee it is not empty, the same rule applies.)
>>>>
>>>>     //Peter
> 
> <snip>
> 
> 
>>> Ah, my bad. I need to figure out a way to get shellcheck to run on
>>> bash blocks in bb recipes. Would save everyone some time. I'll
>>> submit a V2 with your modifications Martin!
>>
>> No V2 - it already got merged into master. Moreover, due to this oversight, it
>> defaults to "vendored" DT install in some builds, where bash is not the system
>> shell...
>>
>> We should merge Martin's fix from his contrib tree ASAP.
> 
> BTW, there are other nuisances with this change:
> 
> https://patchwork.yoctoproject.org/project/ti/patch/20230508181551.2404141-1-denis@denix.org/
> 
> Not sure how common the use of third level in KERNEL_DTBDEST dir structure is,
> maybe we should add a third level generic glob to OE-Core to be safe...
> 

May just be a better idea to have a python / bash function to find all 
related files recursively. Technically there is no set depth to the 
kernel dtb structure. They just tend to idle around 2/3.


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-05-08 18:43 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-05 16:36 [OE-core][PATCH] kernel-devicetree: allow specification of dtb directory rs
2023-05-06  9:09 ` Martin Jansa
2023-05-07 20:49   ` Peter Kjellerstedt
2023-05-07 22:19     ` Martin Jansa
2023-05-08  6:13       ` Peter Kjellerstedt
2023-05-08 18:13         ` [EXTERNAL] " Randolph Sapp
2023-05-08 18:18           ` Denys Dmytriyenko
     [not found]           ` <175D3DFC66A1C041.2502@lists.openembedded.org>
2023-05-08 18:32             ` Denys Dmytriyenko
2023-05-08 18:42               ` [EXTERNAL] " Randolph Sapp

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.