* The makefile currently unnecessary copies everything when only the firmware files are needed on the target. * Update the patch to only copy the bare minimal which also avoids make install errors due to the patches directory being copied.
Signed-off-by: Franklin S. Cooper Jr <[email protected]> --- .../0001-Add-Makefile-for-SDK.patch | 13 ++++++------- .../wl18xx-firmware/wl18xx-firmware_r8.a8.10.bb | 2 +- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/0001-Add-Makefile-for-SDK.patch b/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/0001-Add-Makefile-for-SDK.patch index a7011b0..6d44eb1 100644 --- a/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/0001-Add-Makefile-for-SDK.patch +++ b/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware/0001-Add-Makefile-for-SDK.patch @@ -1,4 +1,4 @@ -From 5f21057d483ba622a4de7075348548540c82a480 Mon Sep 17 00:00:00 2001 +From f4968600db760ff46d400c258ed1729d14c70f16 Mon Sep 17 00:00:00 2001 From: Franklin S. Cooper Jr <[email protected]> Date: Wed, 5 Feb 2014 21:03:08 -0600 Subject: [PATCH] Add Makefile for SDK @@ -7,16 +7,16 @@ Subject: [PATCH] Add Makefile for SDK Signed-off-by: Franklin S. Cooper Jr <[email protected]> --- - Makefile | 12 ++++++++++++ - 1 files changed, 12 insertions(+), 0 deletions(-) + Makefile | 11 +++++++++++ + 1 files changed, 11 insertions(+), 0 deletions(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 -index 0000000..62f4783 +index 0000000..1340c98 --- /dev/null +++ b/Makefile -@@ -0,0 +1,12 @@ +@@ -0,0 +1,11 @@ +# Installs the the ti-connectiviy wlan firmware files into the root file system + +install: @@ -26,8 +26,7 @@ index 0000000..62f4783 + exit 1; \ + fi + install -d $(DEST_DIR)/lib/firmware/ti-connectivity -+ cp -RpP * $(DEST_DIR)/lib/firmware/ti-connectivity/ -+ rm -f $(DEST_DIR)/lib/firmware/ti-connectivity/Makefile ++ cp *.bin $(DEST_DIR)/lib/firmware/ti-connectivity/ + -- 1.7.0.4 diff --git a/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware_r8.a8.10.bb b/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware_r8.a8.10.bb index 6d559f6..5db1c99 100644 --- a/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware_r8.a8.10.bb +++ b/meta-arago-extras/recipes-bsp/wl18xx-firmware/wl18xx-firmware_r8.a8.10.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=4977a0fe767ee17765ae63c435a32a9e" PACKAGE_ARCH = "all" -PR = "r2+gitr${SRCPV}" +PR = "r3+gitr${SRCPV}" PROVIDES += "wl12xx-firmware" RPROVIDES_${PN} += "wl12xx-firmware" -- 1.7.0.4 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
