All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-fsl-arm][PATCH 0/2] Fix firmware-imx installation
@ 2016-09-09 19:37 Daiane Angolini
  2016-09-09 19:37 ` [meta-fsl-arm][PATCH 1/2] firmware-imx: Fix the installation directory Daiane Angolini
  2016-09-09 19:37 ` [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation Daiane Angolini
  0 siblings, 2 replies; 6+ messages in thread
From: Daiane Angolini @ 2016-09-09 19:37 UTC (permalink / raw)
  To: meta-freescale

This patchset fixes the installation of firmware-imx-brcm files into rootfs.

I have tested it using imx7s-warp7 (1DX) and imx7d-sabresd (ZP) by only
loading the firmware and expecting to see a wlan0 interface.

I assumed only this test is enough to make sure the firmware file for
different partnumbers provided is correct.

I appreciate any review or suggestion on how to handle this installation
differently.

I'm resending the patch from Marco as it was not merged yet and I depend on it.

Daiane Angolini (1):
  firmware-imx: Rename files on installation

Marco Franchi (1):
  firmware-imx: Fix the installation directory

 recipes-bsp/firmware-imx/firmware-imx.inc | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

-- 
2.7.4



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

* [meta-fsl-arm][PATCH 1/2] firmware-imx: Fix the installation directory
  2016-09-09 19:37 [meta-fsl-arm][PATCH 0/2] Fix firmware-imx installation Daiane Angolini
@ 2016-09-09 19:37 ` Daiane Angolini
  2016-09-09 19:37 ` [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation Daiane Angolini
  1 sibling, 0 replies; 6+ messages in thread
From: Daiane Angolini @ 2016-09-09 19:37 UTC (permalink / raw)
  To: meta-freescale; +Cc: Marco Franchi

From: Marco Franchi <marco.franchi@nxp.com>

The default Kernel defconfig points the bcm repository, but the recipes
was creating a brcm repository.

Signed-off-by: Marco Franchi <marco.franchi@nxp.com>
---
 recipes-bsp/firmware-imx/firmware-imx.inc | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/recipes-bsp/firmware-imx/firmware-imx.inc b/recipes-bsp/firmware-imx/firmware-imx.inc
index 2f82791..90218c9 100644
--- a/recipes-bsp/firmware-imx/firmware-imx.inc
+++ b/recipes-bsp/firmware-imx/firmware-imx.inc
@@ -16,29 +16,29 @@ inherit fsl-eula-unpack
 
 do_install() {
     install -d ${D}${base_libdir}/firmware/imx
-    install -d ${D}${base_libdir}/firmware/brcm
+    install -d ${D}${base_libdir}/firmware/bcm
     install -d ${D}${sysconfdir}/firmware
 
     cp -rfv firmware/* ${D}${base_libdir}/firmware/
 
     #1BW_BCM43340
-    cp -rfv git/brcm/1BW_BCM43340/*.bin ${D}${base_libdir}/firmware/brcm
-    cp -rfv git/brcm/1BW_BCM43340/*.cal ${D}${base_libdir}/firmware/brcm
+    cp -rfv git/brcm/1BW_BCM43340/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/1BW_BCM43340/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/1BW_BCM43340/*.hcd ${D}${sysconfdir}/firmware/
 
     #1DX_BCM4343W
-    cp -rfv git/brcm/1DX_BCM4343W/*.bin ${D}${base_libdir}/firmware/brcm
-    cp -rfv git/brcm/1DX_BCM4343W/*.cal ${D}${base_libdir}/firmware/brcm
+    cp -rfv git/brcm/1DX_BCM4343W/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/1DX_BCM4343W/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/1DX_BCM4343W/*.hcd ${D}${sysconfdir}/firmware/
 
     #SN8000_BCM43362
-    cp -rfv git/brcm/SN8000_BCM43362/*.bin ${D}${base_libdir}/firmware/brcm
-    cp -rfv git/brcm/SN8000_BCM43362/*.cal ${D}${base_libdir}/firmware/brcm
+    cp -rfv git/brcm/SN8000_BCM43362/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/SN8000_BCM43362/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/1DX_BCM4343W/*.hcd ${D}${sysconfdir}/firmware/
 
     #ZP_BCM4339
-    cp -rfv git/brcm/ZP_BCM4339/*.bin ${D}${base_libdir}/firmware/brcm
-    cp -rfv git/brcm/ZP_BCM4339/*.cal ${D}${base_libdir}/firmware/brcm
+    cp -rfv git/brcm/ZP_BCM4339/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/ZP_BCM4339/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/ZP_BCM4339/*.hcd ${D}${sysconfdir}/firmware/
 
     mv ${D}${base_libdir}/firmware/epdc/ ${D}${base_libdir}/firmware/imx/epdc/
@@ -74,6 +74,6 @@ PACKAGES_DYNAMIC = "${PN}-vpu-* ${PN}-sdma-*"
 PACKAGES =+ "${PN}-epdc ${PN}-brcm"
 
 FILES_${PN}-epdc = "${base_libdir}/firmware/imx/epdc/"
-FILES_${PN}-brcm = "${base_libdir}/firmware/brcm/*.bin ${base_libdir}/firmware/brcm/*.cal ${sysconfdir}/firmware/"
+FILES_${PN}-brcm = "${base_libdir}/firmware/bcm/*.bin ${base_libdir}/firmware/bcm/*.cal ${sysconfdir}/firmware/"
 
 PACKAGE_ARCH = "${MACHINE_SOCARCH}"
-- 
2.7.4



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

* [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation
  2016-09-09 19:37 [meta-fsl-arm][PATCH 0/2] Fix firmware-imx installation Daiane Angolini
  2016-09-09 19:37 ` [meta-fsl-arm][PATCH 1/2] firmware-imx: Fix the installation directory Daiane Angolini
@ 2016-09-09 19:37 ` Daiane Angolini
  2016-09-12  7:33   ` Jun Zhu
  1 sibling, 1 reply; 6+ messages in thread
From: Daiane Angolini @ 2016-09-09 19:37 UTC (permalink / raw)
  To: meta-freescale

The package provides the same filename for every partnumber. This patch
copy that file using a different filename so they can coexist.

Signed-off-by: Daiane Angolini <daiane.angolini@nxp.com>
---
 recipes-bsp/firmware-imx/firmware-imx.inc | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/recipes-bsp/firmware-imx/firmware-imx.inc b/recipes-bsp/firmware-imx/firmware-imx.inc
index 90218c9..182678e 100644
--- a/recipes-bsp/firmware-imx/firmware-imx.inc
+++ b/recipes-bsp/firmware-imx/firmware-imx.inc
@@ -22,22 +22,24 @@ do_install() {
     cp -rfv firmware/* ${D}${base_libdir}/firmware/
 
     #1BW_BCM43340
-    cp -rfv git/brcm/1BW_BCM43340/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/1BW_BCM43340/fw_bcmdhd.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.1BW.bin
     cp -rfv git/brcm/1BW_BCM43340/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/1BW_BCM43340/*.hcd ${D}${sysconfdir}/firmware/
 
     #1DX_BCM4343W
-    cp -rfv git/brcm/1DX_BCM4343W/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/1DX_BCM4343W/fw_bcmdhd.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.1DX.bin
     cp -rfv git/brcm/1DX_BCM4343W/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/1DX_BCM4343W/*.hcd ${D}${sysconfdir}/firmware/
 
     #SN8000_BCM43362
-    cp -rfv git/brcm/SN8000_BCM43362/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/SN8000_BCM43362/fw_bcmdhd_apsta.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd_apsta.SN8000.bin
+    cp -rfv git/brcm/SN8000_BCM43362/fw_bcmdhd.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.SN8000.bin
     cp -rfv git/brcm/SN8000_BCM43362/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/1DX_BCM4343W/*.hcd ${D}${sysconfdir}/firmware/
 
     #ZP_BCM4339
-    cp -rfv git/brcm/ZP_BCM4339/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/ZP_BCM4339/fw_bcmdhd_apsta.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd_apsta.ZP.bin
+    cp -rfv git/brcm/ZP_BCM4339/fw_bcmdhd.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.ZP.bin
     cp -rfv git/brcm/ZP_BCM4339/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/ZP_BCM4339/*.hcd ${D}${sysconfdir}/firmware/
 
-- 
2.7.4



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

* Re: [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation
  2016-09-09 19:37 ` [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation Daiane Angolini
@ 2016-09-12  7:33   ` Jun Zhu
  2016-09-12 12:17     ` Daiane Angolini
  0 siblings, 1 reply; 6+ messages in thread
From: Jun Zhu @ 2016-09-12  7:33 UTC (permalink / raw)
  To: Daiane Angolini, meta-freescale

Hi, Daiane,

According to the i.MX formal kernel, the Maruta module firmware/calibration files have the default path and name:
- The path should be /lib/firmware/bcm/<Module_name>/
- The firmware file name should be fw_bcmdhd.bin and fw_bcmdhd_apsta.bin

If change the path name and file name, the driver may not fail to be loaded.

BR,
Jun Zhu


-----Original Message-----
From: meta-freescale-bounces@yoctoproject.org [mailto:meta-freescale-bounces@yoctoproject.org] On Behalf Of Daiane Angolini
Sent: Saturday, September 10, 2016 3:37 AM
To: meta-freescale@yoctoproject.org
Subject: [meta-freescale] [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation

The package provides the same filename for every partnumber. This patch copy that file using a different filename so they can coexist.

Signed-off-by: Daiane Angolini <daiane.angolini@nxp.com>
---
 recipes-bsp/firmware-imx/firmware-imx.inc | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/recipes-bsp/firmware-imx/firmware-imx.inc b/recipes-bsp/firmware-imx/firmware-imx.inc
index 90218c9..182678e 100644
--- a/recipes-bsp/firmware-imx/firmware-imx.inc
+++ b/recipes-bsp/firmware-imx/firmware-imx.inc
@@ -22,22 +22,24 @@ do_install() {
     cp -rfv firmware/* ${D}${base_libdir}/firmware/
 
     #1BW_BCM43340
-    cp -rfv git/brcm/1BW_BCM43340/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/1BW_BCM43340/fw_bcmdhd.bin 
+ ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.1BW.bin
     cp -rfv git/brcm/1BW_BCM43340/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/1BW_BCM43340/*.hcd ${D}${sysconfdir}/firmware/
 
     #1DX_BCM4343W
-    cp -rfv git/brcm/1DX_BCM4343W/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/1DX_BCM4343W/fw_bcmdhd.bin 
+ ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.1DX.bin
     cp -rfv git/brcm/1DX_BCM4343W/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/1DX_BCM4343W/*.hcd ${D}${sysconfdir}/firmware/
 
     #SN8000_BCM43362
-    cp -rfv git/brcm/SN8000_BCM43362/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/SN8000_BCM43362/fw_bcmdhd_apsta.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd_apsta.SN8000.bin
+    cp -rfv git/brcm/SN8000_BCM43362/fw_bcmdhd.bin 
+ ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.SN8000.bin
     cp -rfv git/brcm/SN8000_BCM43362/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/1DX_BCM4343W/*.hcd ${D}${sysconfdir}/firmware/
 
     #ZP_BCM4339
-    cp -rfv git/brcm/ZP_BCM4339/*.bin ${D}${base_libdir}/firmware/bcm
+    cp -rfv git/brcm/ZP_BCM4339/fw_bcmdhd_apsta.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd_apsta.ZP.bin
+    cp -rfv git/brcm/ZP_BCM4339/fw_bcmdhd.bin 
+ ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.ZP.bin
     cp -rfv git/brcm/ZP_BCM4339/*.cal ${D}${base_libdir}/firmware/bcm
     cp -rfv git/brcm/ZP_BCM4339/*.hcd ${D}${sysconfdir}/firmware/
 
--
2.7.4

--
_______________________________________________
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


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

* Re: [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation
  2016-09-12  7:33   ` Jun Zhu
@ 2016-09-12 12:17     ` Daiane Angolini
  2016-09-13  7:28       ` Jun Zhu
  0 siblings, 1 reply; 6+ messages in thread
From: Daiane Angolini @ 2016-09-12 12:17 UTC (permalink / raw)
  To: Jun Zhu; +Cc: meta-freescale

On Mon, Sep 12, 2016 at 4:33 AM, Jun Zhu <junzhu@nxp.com> wrote:
> Hi, Daiane,
>
> According to the i.MX formal kernel, the Maruta module firmware/calibration files have the default path and name:
> - The path should be /lib/firmware/bcm/<Module_name>/
> - The firmware file name should be fw_bcmdhd.bin and fw_bcmdhd_apsta.bin

Does it mean you prefer to have the firmware installed inside a
directory with the module_name? I am personally unsure on what I
prefer.

The NXP formal kernel configuration can only work for ZP module [1],
and I have changed it locally to be able to test it on warp7 machine.

Anyway, I can rework the patch.

Do you think I should create the <Module_name> inside the sysconfdir
and follow the same template on installing the files under /etc? Or
can it follow a different template? (imx_v7_defconfig does not state
the /etc file names)

Regards,
Daiane

[1] http://git.freescale.com/git/cgit.cgi/imx/linux-2.6-imx.git/tree/arch/arm/configs/imx_v7_defconfig?h=imx_4.1.15_1.0.0_ga#n149
>
> If change the path name and file name, the driver may not fail to be loaded.
>
> BR,
> Jun Zhu
>
>
> -----Original Message-----
> From: meta-freescale-bounces@yoctoproject.org [mailto:meta-freescale-bounces@yoctoproject.org] On Behalf Of Daiane Angolini
> Sent: Saturday, September 10, 2016 3:37 AM
> To: meta-freescale@yoctoproject.org
> Subject: [meta-freescale] [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation
>
> The package provides the same filename for every partnumber. This patch copy that file using a different filename so they can coexist.
>
> Signed-off-by: Daiane Angolini <daiane.angolini@nxp.com>
> ---
>  recipes-bsp/firmware-imx/firmware-imx.inc | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/recipes-bsp/firmware-imx/firmware-imx.inc b/recipes-bsp/firmware-imx/firmware-imx.inc
> index 90218c9..182678e 100644
> --- a/recipes-bsp/firmware-imx/firmware-imx.inc
> +++ b/recipes-bsp/firmware-imx/firmware-imx.inc
> @@ -22,22 +22,24 @@ do_install() {
>      cp -rfv firmware/* ${D}${base_libdir}/firmware/
>
>      #1BW_BCM43340
> -    cp -rfv git/brcm/1BW_BCM43340/*.bin ${D}${base_libdir}/firmware/bcm
> +    cp -rfv git/brcm/1BW_BCM43340/fw_bcmdhd.bin
> + ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.1BW.bin
>      cp -rfv git/brcm/1BW_BCM43340/*.cal ${D}${base_libdir}/firmware/bcm
>      cp -rfv git/brcm/1BW_BCM43340/*.hcd ${D}${sysconfdir}/firmware/
>
>      #1DX_BCM4343W
> -    cp -rfv git/brcm/1DX_BCM4343W/*.bin ${D}${base_libdir}/firmware/bcm
> +    cp -rfv git/brcm/1DX_BCM4343W/fw_bcmdhd.bin
> + ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.1DX.bin
>      cp -rfv git/brcm/1DX_BCM4343W/*.cal ${D}${base_libdir}/firmware/bcm
>      cp -rfv git/brcm/1DX_BCM4343W/*.hcd ${D}${sysconfdir}/firmware/
>
>      #SN8000_BCM43362
> -    cp -rfv git/brcm/SN8000_BCM43362/*.bin ${D}${base_libdir}/firmware/bcm
> +    cp -rfv git/brcm/SN8000_BCM43362/fw_bcmdhd_apsta.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd_apsta.SN8000.bin
> +    cp -rfv git/brcm/SN8000_BCM43362/fw_bcmdhd.bin
> + ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.SN8000.bin
>      cp -rfv git/brcm/SN8000_BCM43362/*.cal ${D}${base_libdir}/firmware/bcm
>      cp -rfv git/brcm/1DX_BCM4343W/*.hcd ${D}${sysconfdir}/firmware/
>
>      #ZP_BCM4339
> -    cp -rfv git/brcm/ZP_BCM4339/*.bin ${D}${base_libdir}/firmware/bcm
> +    cp -rfv git/brcm/ZP_BCM4339/fw_bcmdhd_apsta.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd_apsta.ZP.bin
> +    cp -rfv git/brcm/ZP_BCM4339/fw_bcmdhd.bin
> + ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.ZP.bin
>      cp -rfv git/brcm/ZP_BCM4339/*.cal ${D}${base_libdir}/firmware/bcm
>      cp -rfv git/brcm/ZP_BCM4339/*.hcd ${D}${sysconfdir}/firmware/
>
> --
> 2.7.4
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale


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

* Re: [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation
  2016-09-12 12:17     ` Daiane Angolini
@ 2016-09-13  7:28       ` Jun Zhu
  0 siblings, 0 replies; 6+ messages in thread
From: Jun Zhu @ 2016-09-13  7:28 UTC (permalink / raw)
  To: Daiane Angolini; +Cc: meta-freescale

Hi, Daiane,
It is no need to create <Module_name> inside the sysconfdir. Will send u in another email for the internal link for reference.

BR,
Jun Zhu

-----Original Message-----
From: angolini@gmail.com [mailto:angolini@gmail.com] On Behalf Of Daiane Angolini
Sent: Monday, September 12, 2016 8:17 PM
To: Jun Zhu <junzhu@nxp.com>
Cc: Daiane Angolini <daiane.angolini@nxp.com>; meta-freescale@yoctoproject.org
Subject: Re: [meta-freescale] [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation

On Mon, Sep 12, 2016 at 4:33 AM, Jun Zhu <junzhu@nxp.com> wrote:
> Hi, Daiane,
>
> According to the i.MX formal kernel, the Maruta module firmware/calibration files have the default path and name:
> - The path should be /lib/firmware/bcm/<Module_name>/
> - The firmware file name should be fw_bcmdhd.bin and 
> fw_bcmdhd_apsta.bin

Does it mean you prefer to have the firmware installed inside a directory with the module_name? I am personally unsure on what I prefer.

The NXP formal kernel configuration can only work for ZP module [1], and I have changed it locally to be able to test it on warp7 machine.

Anyway, I can rework the patch.

Do you think I should create the <Module_name> inside the sysconfdir and follow the same template on installing the files under /etc? Or can it follow a different template? (imx_v7_defconfig does not state the /etc file names)

Regards,
Daiane

[1] http://git.freescale.com/git/cgit.cgi/imx/linux-2.6-imx.git/tree/arch/arm/configs/imx_v7_defconfig?h=imx_4.1.15_1.0.0_ga#n149
>
> If change the path name and file name, the driver may not fail to be loaded.
>
> BR,
> Jun Zhu
>
>
> -----Original Message-----
> From: meta-freescale-bounces@yoctoproject.org 
> [mailto:meta-freescale-bounces@yoctoproject.org] On Behalf Of Daiane 
> Angolini
> Sent: Saturday, September 10, 2016 3:37 AM
> To: meta-freescale@yoctoproject.org
> Subject: [meta-freescale] [meta-fsl-arm][PATCH 2/2] firmware-imx: 
> Rename files on installation
>
> The package provides the same filename for every partnumber. This patch copy that file using a different filename so they can coexist.
>
> Signed-off-by: Daiane Angolini <daiane.angolini@nxp.com>
> ---
>  recipes-bsp/firmware-imx/firmware-imx.inc | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/recipes-bsp/firmware-imx/firmware-imx.inc 
> b/recipes-bsp/firmware-imx/firmware-imx.inc
> index 90218c9..182678e 100644
> --- a/recipes-bsp/firmware-imx/firmware-imx.inc
> +++ b/recipes-bsp/firmware-imx/firmware-imx.inc
> @@ -22,22 +22,24 @@ do_install() {
>      cp -rfv firmware/* ${D}${base_libdir}/firmware/
>
>      #1BW_BCM43340
> -    cp -rfv git/brcm/1BW_BCM43340/*.bin ${D}${base_libdir}/firmware/bcm
> +    cp -rfv git/brcm/1BW_BCM43340/fw_bcmdhd.bin
> + ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.1BW.bin
>      cp -rfv git/brcm/1BW_BCM43340/*.cal ${D}${base_libdir}/firmware/bcm
>      cp -rfv git/brcm/1BW_BCM43340/*.hcd ${D}${sysconfdir}/firmware/
>
>      #1DX_BCM4343W
> -    cp -rfv git/brcm/1DX_BCM4343W/*.bin ${D}${base_libdir}/firmware/bcm
> +    cp -rfv git/brcm/1DX_BCM4343W/fw_bcmdhd.bin
> + ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.1DX.bin
>      cp -rfv git/brcm/1DX_BCM4343W/*.cal ${D}${base_libdir}/firmware/bcm
>      cp -rfv git/brcm/1DX_BCM4343W/*.hcd ${D}${sysconfdir}/firmware/
>
>      #SN8000_BCM43362
> -    cp -rfv git/brcm/SN8000_BCM43362/*.bin ${D}${base_libdir}/firmware/bcm
> +    cp -rfv git/brcm/SN8000_BCM43362/fw_bcmdhd_apsta.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd_apsta.SN8000.bin
> +    cp -rfv git/brcm/SN8000_BCM43362/fw_bcmdhd.bin
> + ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.SN8000.bin
>      cp -rfv git/brcm/SN8000_BCM43362/*.cal ${D}${base_libdir}/firmware/bcm
>      cp -rfv git/brcm/1DX_BCM4343W/*.hcd ${D}${sysconfdir}/firmware/
>
>      #ZP_BCM4339
> -    cp -rfv git/brcm/ZP_BCM4339/*.bin ${D}${base_libdir}/firmware/bcm
> +    cp -rfv git/brcm/ZP_BCM4339/fw_bcmdhd_apsta.bin ${D}${base_libdir}/firmware/bcm/fw_bcmdhd_apsta.ZP.bin
> +    cp -rfv git/brcm/ZP_BCM4339/fw_bcmdhd.bin 
> + ${D}${base_libdir}/firmware/bcm/fw_bcmdhd.ZP.bin
>      cp -rfv git/brcm/ZP_BCM4339/*.cal ${D}${base_libdir}/firmware/bcm
>      cp -rfv git/brcm/ZP_BCM4339/*.hcd ${D}${sysconfdir}/firmware/
>
> --
> 2.7.4
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale

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

end of thread, other threads:[~2016-09-13 12:03 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-09 19:37 [meta-fsl-arm][PATCH 0/2] Fix firmware-imx installation Daiane Angolini
2016-09-09 19:37 ` [meta-fsl-arm][PATCH 1/2] firmware-imx: Fix the installation directory Daiane Angolini
2016-09-09 19:37 ` [meta-fsl-arm][PATCH 2/2] firmware-imx: Rename files on installation Daiane Angolini
2016-09-12  7:33   ` Jun Zhu
2016-09-12 12:17     ` Daiane Angolini
2016-09-13  7:28       ` Jun Zhu

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.