* [PATCH 1/3] matrix-gui-crypto-demos: Fix syntax
@ 2013-06-06 21:47 Franklin S. Cooper Jr
2013-06-06 21:47 ` [PATCH 2/3] wl1271-demo: Fix BT CLI error Franklin S. Cooper Jr
2013-06-06 21:47 ` [PATCH 3/3] wl12xx-firmware: Update to Wilink 6 version of wl1271-nvs.bin Franklin S. Cooper Jr
0 siblings, 2 replies; 7+ messages in thread
From: Franklin S. Cooper Jr @ 2013-06-06 21:47 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
* Fix RDEPENDS append syntax mistake.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../matrix/matrix-gui-crypto-demos_2.0.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb
index e87a773..328d503 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-crypto-demos_2.0.bb
@@ -4,7 +4,7 @@ LICENSE = "CC-BY-SA"
require matrix-gui-apps-git.inc
-PR = "${INC_PR}.4"
+PR = "${INC_PR}.5"
PACKAGE_ARCH = "${MACHINE_ARCH}"
@@ -16,4 +16,4 @@ FILES_${PN} += "${MATRIX_BASE_DIR}/*"
# Make sure crypto submenu and app images has been installed. Also make sure openssl is available
RDEPENDS_${PN} += "matrix-gui-apps-images matrix-gui-submenus-cryptos openssl"
-RDEPENDS_${PN}_ti33x_append = " ti-crypto-examples"
+RDEPENDS_${PN}_append_ti33x = " ti-crypto-examples"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/3] wl1271-demo: Fix BT CLI error
2013-06-06 21:47 [PATCH 1/3] matrix-gui-crypto-demos: Fix syntax Franklin S. Cooper Jr
@ 2013-06-06 21:47 ` Franklin S. Cooper Jr
2013-06-06 21:47 ` [PATCH 3/3] wl12xx-firmware: Update to Wilink 6 version of wl1271-nvs.bin Franklin S. Cooper Jr
1 sibling, 0 replies; 7+ messages in thread
From: Franklin S. Cooper Jr @ 2013-06-06 21:47 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
* After running Bluetooth GUI application Bluetooth CLI fails due to incorrect
initialization.
* Add patch that fixes this problem.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../wl1271-demo/0001-Add-additional-hci0-up.patch | 54 ++++++++++++++++++++
.../wl12xx-demo/wl1271-demo_git.bb | 6 ++-
2 files changed, 58 insertions(+), 2 deletions(-)
create mode 100644 meta-arago-extras/recipes-connectivity/wl12xx-demo/wl1271-demo/0001-Add-additional-hci0-up.patch
diff --git a/meta-arago-extras/recipes-connectivity/wl12xx-demo/wl1271-demo/0001-Add-additional-hci0-up.patch b/meta-arago-extras/recipes-connectivity/wl12xx-demo/wl1271-demo/0001-Add-additional-hci0-up.patch
new file mode 100644
index 0000000..67603dc
--- /dev/null
+++ b/meta-arago-extras/recipes-connectivity/wl12xx-demo/wl1271-demo/0001-Add-additional-hci0-up.patch
@@ -0,0 +1,54 @@
+From 3dd9df41002dd57af0c6ad8e4f6d36156b5bd2e0 Mon Sep 17 00:00:00 2001
+From: Franklin S. Cooper Jr <fcooper@ti.com>
+Date: Fri, 31 May 2013 14:05:29 -0500
+Subject: [PATCH] Add additional hci0 up
+
+* After running the Bluetooth GUI BT CLI wasn't initialized properly.
+* Adding hciconfig hci0 up statement fixes this problem.
+
+Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
+---
+ script/am1808/BT_Init.sh | 1 +
+ script/am335x/BT_Init.sh | 1 +
+ script/omap3evm/BT_Init.sh | 1 +
+ 3 files changed, 3 insertions(+), 0 deletions(-)
+
+diff --git a/script/am1808/BT_Init.sh b/script/am1808/BT_Init.sh
+index 1645cbf..5620dc5 100755
+--- a/script/am1808/BT_Init.sh
++++ b/script/am1808/BT_Init.sh
+@@ -22,6 +22,7 @@ modprobe gpio_en
+ sleep 2
+ hciattach /dev/ttyS1 texas 2000000 &
+ sleep 10
++hciconfig hci0 up
+ hciconfig hci0 piscan &> /dev/null
+ agent --path /org/bluez/agent 0000 &> /dev/null &
+ sleep 2
+diff --git a/script/am335x/BT_Init.sh b/script/am335x/BT_Init.sh
+index 0e6f714..873cc30 100755
+--- a/script/am335x/BT_Init.sh
++++ b/script/am335x/BT_Init.sh
+@@ -25,6 +25,7 @@ modprobe gpio_en
+ sleep 2
+ hciattach /dev/ttyO1 texas 3000000 &
+ sleep 5
++hciconfig hci0 up
+ hciconfig hci0 piscan &> /dev/null
+ agent --path /org/bluez/agent 0000 &> /dev/null &
+ sleep 2
+diff --git a/script/omap3evm/BT_Init.sh b/script/omap3evm/BT_Init.sh
+index 0e6f714..873cc30 100755
+--- a/script/omap3evm/BT_Init.sh
++++ b/script/omap3evm/BT_Init.sh
+@@ -25,6 +25,7 @@ modprobe gpio_en
+ sleep 2
+ hciattach /dev/ttyO1 texas 3000000 &
+ sleep 5
++hciconfig hci0 up
+ hciconfig hci0 piscan &> /dev/null
+ agent --path /org/bluez/agent 0000 &> /dev/null &
+ sleep 2
+--
+1.7.0.4
+
diff --git a/meta-arago-extras/recipes-connectivity/wl12xx-demo/wl1271-demo_git.bb b/meta-arago-extras/recipes-connectivity/wl12xx-demo/wl1271-demo_git.bb
index 88965a3..bd728a4 100644
--- a/meta-arago-extras/recipes-connectivity/wl12xx-demo/wl1271-demo_git.bb
+++ b/meta-arago-extras/recipes-connectivity/wl12xx-demo/wl1271-demo_git.bb
@@ -9,14 +9,16 @@ RDEPENDS_${PN} += "bluez4 openobex ussp-push obexftp bluez-hcidump obex-client"
PACKAGE_ARCH = "${MACHINE_ARCH}"
PACKAGE_STRIP = "no"
-PR = "r4+gitr${SRCPV}"
+PR = "r5+gitr${SRCPV}"
BRANCH = "wl12xx"
SRCREV = "7736f86b8c157ffc3e2a0b9e55a97c093faae14e"
COMPATIBLE_MACHINE = "am37x-evm|am180x-evm|da850-omapl138-evm|am335x-evm"
-SRC_URI = "git://github.com/TI-ECS/wl1271-bluetooth.git;protocol=git;branch=${BRANCH}"
+SRC_URI = "git://github.com/TI-ECS/wl1271-bluetooth.git;protocol=git;branch=${BRANCH} \
+ file://0001-Add-additional-hci0-up.patch \
+"
S = "${WORKDIR}/git"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 3/3] wl12xx-firmware: Update to Wilink 6 version of wl1271-nvs.bin
2013-06-06 21:47 [PATCH 1/3] matrix-gui-crypto-demos: Fix syntax Franklin S. Cooper Jr
2013-06-06 21:47 ` [PATCH 2/3] wl1271-demo: Fix BT CLI error Franklin S. Cooper Jr
@ 2013-06-06 21:47 ` Franklin S. Cooper Jr
2013-06-07 18:49 ` Denys Dmytriyenko
1 sibling, 1 reply; 7+ messages in thread
From: Franklin S. Cooper Jr @ 2013-06-06 21:47 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
* The version of the wl1271-nvs.bin included in the current repository was meant
for Wilink 7 not Wilink 6.
* This caused firmware errors which caused Wilink 6 not to work on any boards
that don't rerun a calibration script.
* Use the Wilink 6 version of the nvs file to use a version supported by Wilink
6 so by default wireless will work.
Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
---
.../wl1271-nvs.bin-wilink6 | Bin 0 -> 912 bytes
.../wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb | 7 ++++++-
2 files changed, 6 insertions(+), 1 deletions(-)
create mode 100644 meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6
diff --git a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6 b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6
new file mode 100644
index 0000000000000000000000000000000000000000..bb6ff93e585cbc92e1270a3a01779d0614616441
GIT binary patch
literal 912
zcmZR~4PgKR#zHU!VnP7pOvbNJCKJPte=uQe^tV53Y#dx%Jp6*9;?i;|3|b5Z4CV}W
z3@!|Q4517$4Dk$!46zIm*tCv{0Yl)=-+%xA1ET;4n3$M|2ofe?Y>HMf1I=IpnZ(2j
zl4oRO;AD{y;9&Uv{`q~70KYvdp8-uCq=w<mHwGSwAAcA)1U~#=;1U6gQAU(AHZaJ_
qE2*h#O35p!s;Z00$|<O*2H*jpU|?bp6%`c}73GuDrOf&vrW*iCk}^R6
literal 0
HcmV?d00001
diff --git a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
index 2232e1c..96b15e0 100644
--- a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
+++ b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=ba590e1d103f891d0151609046aef9e8"
PACKAGE_ARCH = "all"
-PR = "r3+gitr${SRCPV}"
+PR = "r4+gitr${SRCPV}"
# This recipe provides the latest firmware files for wl12xx.
# Therefore, use the contents of this recipe instead of the contents
@@ -16,6 +16,7 @@ RPROVIDES_${PN} = "linux-firmware-wl12xx"
SRCREV = "c8d6b8e6ddf81091e1b1c99ebfb6751cc62b2c63"
SRC_URI = "git://github.com/TI-OpenLink/ti-utils.git;protocol=git \
file://Makefile \
+ file://wl1271-nvs.bin-wilink6 \
"
S = "${WORKDIR}/git/hw/firmware"
@@ -26,6 +27,10 @@ do_compile() {
do_install() {
cp ${WORKDIR}/Makefile ${S}
+ # Remove Wilink 7 version
+ rm ${S}/wl1271-nvs.bin
+ # Copy and use Wilink 6 version
+ cp ${WORKDIR}/wl1271-nvs.bin-wilink6 ${S}/wl1271-nvs.bin
oe_runmake 'DEST_DIR=${D}' install
}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 3/3] wl12xx-firmware: Update to Wilink 6 version of wl1271-nvs.bin
2013-06-06 21:47 ` [PATCH 3/3] wl12xx-firmware: Update to Wilink 6 version of wl1271-nvs.bin Franklin S. Cooper Jr
@ 2013-06-07 18:49 ` Denys Dmytriyenko
2013-06-13 17:50 ` Denys Dmytriyenko
0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2013-06-07 18:49 UTC (permalink / raw)
To: Franklin S. Cooper Jr; +Cc: meta-arago
On Thu, Jun 06, 2013 at 04:47:48PM -0500, Franklin S. Cooper Jr wrote:
> * The version of the wl1271-nvs.bin included in the current repository was meant
> for Wilink 7 not Wilink 6.
> * This caused firmware errors which caused Wilink 6 not to work on any boards
> that don't rerun a calibration script.
> * Use the Wilink 6 version of the nvs file to use a version supported by Wilink
> 6 so by default wireless will work.
Any chance to get this resolved in the upstream TI-OpenLink repository,
instead of dumping a binary here in the metadata?
> Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> ---
> .../wl1271-nvs.bin-wilink6 | Bin 0 -> 912 bytes
> .../wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb | 7 ++++++-
> 2 files changed, 6 insertions(+), 1 deletions(-)
> create mode 100644 meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6
>
> diff --git a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6 b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6
> new file mode 100644
> index 0000000000000000000000000000000000000000..bb6ff93e585cbc92e1270a3a01779d0614616441
> GIT binary patch
> literal 912
> zcmZR~4PgKR#zHU!VnP7pOvbNJCKJPte=uQe^tV53Y#dx%Jp6*9;?i;|3|b5Z4CV}W
> z3@!|Q4517$4Dk$!46zIm*tCv{0Yl)=-+%xA1ET;4n3$M|2ofe?Y>HMf1I=IpnZ(2j
> zl4oRO;AD{y;9&Uv{`q~70KYvdp8-uCq=w<mHwGSwAAcA)1U~#=;1U6gQAU(AHZaJ_
> qE2*h#O35p!s;Z00$|<O*2H*jpU|?bp6%`c}73GuDrOf&vrW*iCk}^R6
>
> literal 0
> HcmV?d00001
>
> diff --git a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
> index 2232e1c..96b15e0 100644
> --- a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
> +++ b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
> @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=ba590e1d103f891d0151609046aef9e8"
>
> PACKAGE_ARCH = "all"
>
> -PR = "r3+gitr${SRCPV}"
> +PR = "r4+gitr${SRCPV}"
>
> # This recipe provides the latest firmware files for wl12xx.
> # Therefore, use the contents of this recipe instead of the contents
> @@ -16,6 +16,7 @@ RPROVIDES_${PN} = "linux-firmware-wl12xx"
> SRCREV = "c8d6b8e6ddf81091e1b1c99ebfb6751cc62b2c63"
> SRC_URI = "git://github.com/TI-OpenLink/ti-utils.git;protocol=git \
> file://Makefile \
> + file://wl1271-nvs.bin-wilink6 \
> "
>
> S = "${WORKDIR}/git/hw/firmware"
> @@ -26,6 +27,10 @@ do_compile() {
>
> do_install() {
> cp ${WORKDIR}/Makefile ${S}
> + # Remove Wilink 7 version
> + rm ${S}/wl1271-nvs.bin
> + # Copy and use Wilink 6 version
> + cp ${WORKDIR}/wl1271-nvs.bin-wilink6 ${S}/wl1271-nvs.bin
> oe_runmake 'DEST_DIR=${D}' install
> }
>
> --
> 1.7.0.4
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 3/3] wl12xx-firmware: Update to Wilink 6 version of wl1271-nvs.bin
2013-06-07 18:49 ` Denys Dmytriyenko
@ 2013-06-13 17:50 ` Denys Dmytriyenko
2013-07-02 16:13 ` Denys Dmytriyenko
0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2013-06-13 17:50 UTC (permalink / raw)
To: Franklin S. Cooper Jr; +Cc: meta-arago
ping
On Fri, Jun 07, 2013 at 02:49:12PM -0400, Denys Dmytriyenko wrote:
> On Thu, Jun 06, 2013 at 04:47:48PM -0500, Franklin S. Cooper Jr wrote:
> > * The version of the wl1271-nvs.bin included in the current repository was meant
> > for Wilink 7 not Wilink 6.
> > * This caused firmware errors which caused Wilink 6 not to work on any boards
> > that don't rerun a calibration script.
> > * Use the Wilink 6 version of the nvs file to use a version supported by Wilink
> > 6 so by default wireless will work.
>
> Any chance to get this resolved in the upstream TI-OpenLink repository,
> instead of dumping a binary here in the metadata?
>
>
> > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > ---
> > .../wl1271-nvs.bin-wilink6 | Bin 0 -> 912 bytes
> > .../wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb | 7 ++++++-
> > 2 files changed, 6 insertions(+), 1 deletions(-)
> > create mode 100644 meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6
> >
> > diff --git a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6 b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6
> > new file mode 100644
> > index 0000000000000000000000000000000000000000..bb6ff93e585cbc92e1270a3a01779d0614616441
> > GIT binary patch
> > literal 912
> > zcmZR~4PgKR#zHU!VnP7pOvbNJCKJPte=uQe^tV53Y#dx%Jp6*9;?i;|3|b5Z4CV}W
> > z3@!|Q4517$4Dk$!46zIm*tCv{0Yl)=-+%xA1ET;4n3$M|2ofe?Y>HMf1I=IpnZ(2j
> > zl4oRO;AD{y;9&Uv{`q~70KYvdp8-uCq=w<mHwGSwAAcA)1U~#=;1U6gQAU(AHZaJ_
> > qE2*h#O35p!s;Z00$|<O*2H*jpU|?bp6%`c}73GuDrOf&vrW*iCk}^R6
> >
> > literal 0
> > HcmV?d00001
> >
> > diff --git a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
> > index 2232e1c..96b15e0 100644
> > --- a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
> > +++ b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
> > @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=ba590e1d103f891d0151609046aef9e8"
> >
> > PACKAGE_ARCH = "all"
> >
> > -PR = "r3+gitr${SRCPV}"
> > +PR = "r4+gitr${SRCPV}"
> >
> > # This recipe provides the latest firmware files for wl12xx.
> > # Therefore, use the contents of this recipe instead of the contents
> > @@ -16,6 +16,7 @@ RPROVIDES_${PN} = "linux-firmware-wl12xx"
> > SRCREV = "c8d6b8e6ddf81091e1b1c99ebfb6751cc62b2c63"
> > SRC_URI = "git://github.com/TI-OpenLink/ti-utils.git;protocol=git \
> > file://Makefile \
> > + file://wl1271-nvs.bin-wilink6 \
> > "
> >
> > S = "${WORKDIR}/git/hw/firmware"
> > @@ -26,6 +27,10 @@ do_compile() {
> >
> > do_install() {
> > cp ${WORKDIR}/Makefile ${S}
> > + # Remove Wilink 7 version
> > + rm ${S}/wl1271-nvs.bin
> > + # Copy and use Wilink 6 version
> > + cp ${WORKDIR}/wl1271-nvs.bin-wilink6 ${S}/wl1271-nvs.bin
> > oe_runmake 'DEST_DIR=${D}' install
> > }
> >
> > --
> > 1.7.0.4
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 3/3] wl12xx-firmware: Update to Wilink 6 version of wl1271-nvs.bin
2013-06-13 17:50 ` Denys Dmytriyenko
@ 2013-07-02 16:13 ` Denys Dmytriyenko
2013-07-02 16:26 ` Cooper Jr., Franklin
0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2013-07-02 16:13 UTC (permalink / raw)
To: Franklin S. Cooper Jr; +Cc: meta-arago
Franklin,
ping^2 - do you want to address this?
On Thu, Jun 13, 2013 at 01:50:44PM -0400, Denys Dmytriyenko wrote:
> ping
>
> On Fri, Jun 07, 2013 at 02:49:12PM -0400, Denys Dmytriyenko wrote:
> > On Thu, Jun 06, 2013 at 04:47:48PM -0500, Franklin S. Cooper Jr wrote:
> > > * The version of the wl1271-nvs.bin included in the current repository was meant
> > > for Wilink 7 not Wilink 6.
> > > * This caused firmware errors which caused Wilink 6 not to work on any boards
> > > that don't rerun a calibration script.
> > > * Use the Wilink 6 version of the nvs file to use a version supported by Wilink
> > > 6 so by default wireless will work.
> >
> > Any chance to get this resolved in the upstream TI-OpenLink repository,
> > instead of dumping a binary here in the metadata?
> >
> >
> > > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > > ---
> > > .../wl1271-nvs.bin-wilink6 | Bin 0 -> 912 bytes
> > > .../wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb | 7 ++++++-
> > > 2 files changed, 6 insertions(+), 1 deletions(-)
> > > create mode 100644 meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6
> > >
> > > diff --git a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6 b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.sp4.01/wl1271-nvs.bin-wilink6
> > > new file mode 100644
> > > index 0000000000000000000000000000000000000000..bb6ff93e585cbc92e1270a3a01779d0614616441
> > > GIT binary patch
> > > literal 912
> > > zcmZR~4PgKR#zHU!VnP7pOvbNJCKJPte=uQe^tV53Y#dx%Jp6*9;?i;|3|b5Z4CV}W
> > > z3@!|Q4517$4Dk$!46zIm*tCv{0Yl)=-+%xA1ET;4n3$M|2ofe?Y>HMf1I=IpnZ(2j
> > > zl4oRO;AD{y;9&Uv{`q~70KYvdp8-uCq=w<mHwGSwAAcA)1U~#=;1U6gQAU(AHZaJ_
> > > qE2*h#O35p!s;Z00$|<O*2H*jpU|?bp6%`c}73GuDrOf&vrW*iCk}^R6
> > >
> > > literal 0
> > > HcmV?d00001
> > >
> > > diff --git a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
> > > index 2232e1c..96b15e0 100644
> > > --- a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
> > > +++ b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb
> > > @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=ba590e1d103f891d0151609046aef9e8"
> > >
> > > PACKAGE_ARCH = "all"
> > >
> > > -PR = "r3+gitr${SRCPV}"
> > > +PR = "r4+gitr${SRCPV}"
> > >
> > > # This recipe provides the latest firmware files for wl12xx.
> > > # Therefore, use the contents of this recipe instead of the contents
> > > @@ -16,6 +16,7 @@ RPROVIDES_${PN} = "linux-firmware-wl12xx"
> > > SRCREV = "c8d6b8e6ddf81091e1b1c99ebfb6751cc62b2c63"
> > > SRC_URI = "git://github.com/TI-OpenLink/ti-utils.git;protocol=git \
> > > file://Makefile \
> > > + file://wl1271-nvs.bin-wilink6 \
> > > "
> > >
> > > S = "${WORKDIR}/git/hw/firmware"
> > > @@ -26,6 +27,10 @@ do_compile() {
> > >
> > > do_install() {
> > > cp ${WORKDIR}/Makefile ${S}
> > > + # Remove Wilink 7 version
> > > + rm ${S}/wl1271-nvs.bin
> > > + # Copy and use Wilink 6 version
> > > + cp ${WORKDIR}/wl1271-nvs.bin-wilink6 ${S}/wl1271-nvs.bin
> > > oe_runmake 'DEST_DIR=${D}' install
> > > }
> > >
> > > --
> > > 1.7.0.4
> > >
> > > _______________________________________________
> > > meta-arago mailing list
> > > meta-arago@arago-project.org
> > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 3/3] wl12xx-firmware: Update to Wilink 6 version of wl1271-nvs.bin
2013-07-02 16:13 ` Denys Dmytriyenko
@ 2013-07-02 16:26 ` Cooper Jr., Franklin
0 siblings, 0 replies; 7+ messages in thread
From: Cooper Jr., Franklin @ 2013-07-02 16:26 UTC (permalink / raw)
To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org
I do. Haven't talked to the team yet but I would like to see if we can figure out a better way to handle this.
> -----Original Message-----
> From: Dmytriyenko, Denys
> Sent: Tuesday, July 02, 2013 11:13 AM
> To: Cooper Jr., Franklin
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [PATCH 3/3] wl12xx-firmware: Update to Wilink 6
> version of wl1271-nvs.bin
>
> Franklin,
>
> ping^2 - do you want to address this?
>
>
> On Thu, Jun 13, 2013 at 01:50:44PM -0400, Denys Dmytriyenko wrote:
> > ping
> >
> > On Fri, Jun 07, 2013 at 02:49:12PM -0400, Denys Dmytriyenko wrote:
> > > On Thu, Jun 06, 2013 at 04:47:48PM -0500, Franklin S. Cooper Jr wrote:
> > > > * The version of the wl1271-nvs.bin included in the current repository was
> meant
> > > > for Wilink 7 not Wilink 6.
> > > > * This caused firmware errors which caused Wilink 6 not to work on any
> boards
> > > > that don't rerun a calibration script.
> > > > * Use the Wilink 6 version of the nvs file to use a version supported by
> Wilink
> > > > 6 so by default wireless will work.
> > >
> > > Any chance to get this resolved in the upstream TI-OpenLink
> > > repository, instead of dumping a binary here in the metadata?
> > >
> > >
> > > > Signed-off-by: Franklin S. Cooper Jr <fcooper@ti.com>
> > > > ---
> > > > .../wl1271-nvs.bin-wilink6 | Bin 0 -> 912 bytes
> > > > .../wl12xx-firmware/wl12xx-firmware_r5.sp4.01.bb | 7 ++++++-
> > > > 2 files changed, 6 insertions(+), 1 deletions(-) create mode
> > > > 100644
> > > > meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5.s
> > > > p4.01/wl1271-nvs.bin-wilink6
> > > >
> > > > diff --git
> > > > a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5
> > > > .sp4.01/wl1271-nvs.bin-wilink6
> > > > b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware-r5
> > > > .sp4.01/wl1271-nvs.bin-wilink6
> > > > new file mode 100644
> > > > index
> > > >
> 0000000000000000000000000000000000000000..bb6ff93e585cbc92e1270
> a3a
> > > > 01779d0614616441
> > > > GIT binary patch
> > > > literal 912
> > > >
> zcmZR~4PgKR#zHU!VnP7pOvbNJCKJPte=uQe^tV53Y#dx%Jp6*9;?i;|3|b5Z4CV}
> W
> > > > z3@!|Q4517$4Dk$!46zIm*tCv{0Yl)=-
> +%xA1ET;4n3$M|2ofe?Y>HMf1I=IpnZ(2j
> > > > zl4oRO;AD{y;9&Uv{`q~70KYvdp8-
> uCq=w<mHwGSwAAcA)1U~#=;1U6gQAU(AHZaJ_
> > > > qE2*h#O35p!s;Z00$|<O*2H*jpU|?bp6%`c}73GuDrOf&vrW*iCk}^R6
> > > >
> > > > literal 0
> > > > HcmV?d00001
> > > >
> > > > diff --git
> > > > a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5
> > > > .sp4.01.bb
> > > > b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5
> > > > .sp4.01.bb
> > > > index 2232e1c..96b15e0 100644
> > > > ---
> > > > a/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmware_r5
> > > > .sp4.01.bb
> > > > +++ b/meta-arago-extras/recipes-bsp/wl12xx-firmware/wl12xx-firmwar
> > > > +++ e_r5.sp4.01.bb
> > > > @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM =
> "file://LICENCE;md5=ba590e1d103f891d0151609046aef9e8"
> > > >
> > > > PACKAGE_ARCH = "all"
> > > >
> > > > -PR = "r3+gitr${SRCPV}"
> > > > +PR = "r4+gitr${SRCPV}"
> > > >
> > > > # This recipe provides the latest firmware files for wl12xx.
> > > > # Therefore, use the contents of this recipe instead of the
> > > > contents @@ -16,6 +16,7 @@ RPROVIDES_${PN} = "linux-firmware-
> wl12xx"
> > > > SRCREV = "c8d6b8e6ddf81091e1b1c99ebfb6751cc62b2c63"
> > > > SRC_URI = "git://github.com/TI-OpenLink/ti-utils.git;protocol=git \
> > > > file://Makefile \
> > > > + file://wl1271-nvs.bin-wilink6 \
> > > > "
> > > >
> > > > S = "${WORKDIR}/git/hw/firmware"
> > > > @@ -26,6 +27,10 @@ do_compile() {
> > > >
> > > > do_install() {
> > > > cp ${WORKDIR}/Makefile ${S}
> > > > + # Remove Wilink 7 version
> > > > + rm ${S}/wl1271-nvs.bin
> > > > + # Copy and use Wilink 6 version
> > > > + cp ${WORKDIR}/wl1271-nvs.bin-wilink6 ${S}/wl1271-nvs.bin
> > > > oe_runmake 'DEST_DIR=${D}' install }
> > > >
> > > > --
> > > > 1.7.0.4
> > > >
> > > > _______________________________________________
> > > > meta-arago mailing list
> > > > meta-arago@arago-project.org
> > > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > > _______________________________________________
> > > meta-arago mailing list
> > > meta-arago@arago-project.org
> > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-07-02 16:26 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-06 21:47 [PATCH 1/3] matrix-gui-crypto-demos: Fix syntax Franklin S. Cooper Jr
2013-06-06 21:47 ` [PATCH 2/3] wl1271-demo: Fix BT CLI error Franklin S. Cooper Jr
2013-06-06 21:47 ` [PATCH 3/3] wl12xx-firmware: Update to Wilink 6 version of wl1271-nvs.bin Franklin S. Cooper Jr
2013-06-07 18:49 ` Denys Dmytriyenko
2013-06-13 17:50 ` Denys Dmytriyenko
2013-07-02 16:13 ` Denys Dmytriyenko
2013-07-02 16:26 ` Cooper Jr., Franklin
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.