meta-ti.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [master][PATCH] wl18xx-fw: Make it support usrmerge
@ 2022-03-30 10:45 Alessio Igor Bogani
  2022-04-05  3:54 ` [meta-ti] " Denys Dmytriyenko
  0 siblings, 1 reply; 3+ messages in thread
From: Alessio Igor Bogani @ 2022-03-30 10:45 UTC (permalink / raw)
  To: meta-ti; +Cc: Alessio Igor Bogani

Signed-off-by: Alessio Igor Bogani <alessio.bogani@elettra.eu>
---
 .../recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb         | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb b/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb
index 48b500a8..09968993 100644
--- a/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb
+++ b/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb
@@ -19,7 +19,11 @@ do_compile() {
 }
 
 do_install() {
-    oe_runmake 'DEST_DIR=${D}' install
+    if ${@bb.utils.contains('DISTRO_FEATURES','usrmerge','true','false',d)}; then
+        oe_runmake 'DEST_DIR=${D}/usr' install
+    else
+        oe_runmake 'DEST_DIR=${D}' install
+    fi
 }
 
-FILES:${PN} = "/lib/firmware/ti-connectivity/*"
+FILES:${PN} = "${nonarch_base_libdir}/firmware/ti-connectivity/*"
-- 
2.17.1



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

* Re: [meta-ti] [master][PATCH] wl18xx-fw: Make it support usrmerge
  2022-03-30 10:45 [master][PATCH] wl18xx-fw: Make it support usrmerge Alessio Igor Bogani
@ 2022-04-05  3:54 ` Denys Dmytriyenko
  2022-04-05 15:51   ` Ryan Eatmon
  0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2022-04-05  3:54 UTC (permalink / raw)
  To: Alessio Igor Bogani; +Cc: meta-ti

On Wed, Mar 30, 2022 at 12:45:11PM +0200, Alessio Igor Bogani wrote:
> Signed-off-by: Alessio Igor Bogani <alessio.bogani@elettra.eu>

Reviewed-by: Denys Dmytriyenko <denys@konsulko.com>


> ---
>  .../recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb         | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb b/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb
> index 48b500a8..09968993 100644
> --- a/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb
> +++ b/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb
> @@ -19,7 +19,11 @@ do_compile() {
>  }
>  
>  do_install() {
> -    oe_runmake 'DEST_DIR=${D}' install
> +    if ${@bb.utils.contains('DISTRO_FEATURES','usrmerge','true','false',d)}; then
> +        oe_runmake 'DEST_DIR=${D}/usr' install
> +    else
> +        oe_runmake 'DEST_DIR=${D}' install
> +    fi
>  }
>  
> -FILES:${PN} = "/lib/firmware/ti-connectivity/*"
> +FILES:${PN} = "${nonarch_base_libdir}/firmware/ti-connectivity/*"
> -- 
> 2.17.1


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

* Re: [meta-ti] [master][PATCH] wl18xx-fw: Make it support usrmerge
  2022-04-05  3:54 ` [meta-ti] " Denys Dmytriyenko
@ 2022-04-05 15:51   ` Ryan Eatmon
  0 siblings, 0 replies; 3+ messages in thread
From: Ryan Eatmon @ 2022-04-05 15:51 UTC (permalink / raw)
  To: Denys Dmytriyenko, Alessio Igor Bogani; +Cc: meta-ti



On 4/4/2022 22:54, Denys Dmytriyenko wrote:
> On Wed, Mar 30, 2022 at 12:45:11PM +0200, Alessio Igor Bogani wrote:
>> Signed-off-by: Alessio Igor Bogani <alessio.bogani@elettra.eu>
> 
> Reviewed-by: Denys Dmytriyenko <denys@konsulko.com>

Signed-off-by: Ryan Eatmon <reatmon@ti.com>

Applied patch to master.

> 
>> ---
>>   .../recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb         | 8 ++++++--
>>   1 file changed, 6 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb b/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb
>> index 48b500a8..09968993 100644
>> --- a/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb
>> +++ b/meta-ti-extras/recipes-bsp/wl18xx-fw/wl18xx-fw_8.9.0.0.86.bb
>> @@ -19,7 +19,11 @@ do_compile() {
>>   }
>>   
>>   do_install() {
>> -    oe_runmake 'DEST_DIR=${D}' install
>> +    if ${@bb.utils.contains('DISTRO_FEATURES','usrmerge','true','false',d)}; then
>> +        oe_runmake 'DEST_DIR=${D}/usr' install
>> +    else
>> +        oe_runmake 'DEST_DIR=${D}' install
>> +    fi
>>   }
>>   
>> -FILES:${PN} = "/lib/firmware/ti-connectivity/*"
>> +FILES:${PN} = "${nonarch_base_libdir}/firmware/ti-connectivity/*"
>> -- 
>> 2.17.1
>>
>>
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#14590): https://lists.yoctoproject.org/g/meta-ti/message/14590
>> Mute This Topic: https://lists.yoctoproject.org/mt/90128496/6551054
>> Group Owner: meta-ti+owner@lists.yoctoproject.org
>> Unsubscribe: https://lists.yoctoproject.org/g/meta-ti/unsub [reatmon@ti.com]
>> -=-=-=-=-=-=-=-=-=-=-=-
>>

-- 
Ryan Eatmon                reatmon@ti.com
-----------------------------------------
Texas Instruments, Inc.  -  LCPD  -  MGTS


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

end of thread, other threads:[~2022-04-05 17:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-30 10:45 [master][PATCH] wl18xx-fw: Make it support usrmerge Alessio Igor Bogani
2022-04-05  3:54 ` [meta-ti] " Denys Dmytriyenko
2022-04-05 15:51   ` Ryan Eatmon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).