* [PATCH v3 1/9] wlconf: configuration utility for wilink8 wireless driver @ 2013-04-21 6:08 Eyal Reizer 2013-04-23 8:58 ` Reizer, Eyal 0 siblings, 1 reply; 8+ messages in thread From: Eyal Reizer @ 2013-04-21 6:08 UTC (permalink / raw) To: meta-arago Add a recipe for building and installing the wlconf configuration utility for TI Wilink8 family of chips. Signed-off-by: Eyal Reizer <eyalr@ti.com> --- Changes in v2: * Rename to use an actual release name instead of _git * Line indentation fixes Changes in v3: * Drop the PV assignment .../recipes-connectivity/wlconf/wlconf_r8.a6.01.bb | 36 ++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 meta-arago-extras/recipes-connectivity/wlconf/wlconf_r8.a6.01.bb diff --git a/meta-arago-extras/recipes-connectivity/wlconf/wlconf_r8.a6.01.bb b/meta-arago-extras/recipes-connectivity/wlconf/wlconf_r8.a6.01.bb new file mode 100644 index 0000000..ade2e84 --- /dev/null +++ b/meta-arago-extras/recipes-connectivity/wlconf/wlconf_r8.a6.01.bb @@ -0,0 +1,36 @@ +DESCRIPTION = "Configuration utility for TI wireless drivers" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85c90328e3a9438" + +PR ="r1" +PR_append = "+gitr${SRCREV}" + +SRCREV = "ol_r8.a6.01" +SRC_URI = "git://github.com/TI-OpenLink/18xx-ti-utils.git" + +S = "${WORKDIR}/git/wlconf" + +EXTRA_OEMAKE = "CC=${TARGET_PREFIX}gcc" + +do_install() { + install -d ${D}${bindir} + install -d ${D}${bindir}/wlconf/ + install -d ${D}${bindir}/wlconf/official_inis + + install -m 0755 wlconf ${D}${bindir}/wlconf/ + install -m 0755 dictionary.txt ${D}${bindir}/wlconf/ + install -m 0755 struct.bin ${D}${bindir}/wlconf/ + install -m 0755 wl18xx-conf-default.bin ${D}${bindir}/wlconf/ + install -m 0755 README ${D}${bindir}/wlconf/ + install -m 0755 example.conf ${D}${bindir}/wlconf/ + install -m 0755 example.ini ${D}${bindir}/wlconf/ + install -m 0755 ${S}/official_inis/* + ${D}${bindir}/wlconf/official_inis/ +} + +FILES_${PN} += " \ + ${bindir}/wlconf \ + ${bindir}/wlconf/official_inis \ +" + +FILES_${PN}-dbg += "${bindir}/wlconf/.debug" -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v3 1/9] wlconf: configuration utility for wilink8 wireless driver 2013-04-21 6:08 [PATCH v3 1/9] wlconf: configuration utility for wilink8 wireless driver Eyal Reizer @ 2013-04-23 8:58 ` Reizer, Eyal 2013-04-23 19:35 ` Denys Dmytriyenko 0 siblings, 1 reply; 8+ messages in thread From: Reizer, Eyal @ 2013-04-23 8:58 UTC (permalink / raw) To: meta-arago@arago-project.org Ping on this set of wilink8 related patches. Regards, Eyal > -----Original Message----- > From: Reizer, Eyal > Sent: Sunday, April 21, 2013 9:09 AM > To: meta-arago@arago-project.org > Cc: Reizer, Eyal > Subject: [PATCH v3 1/9] wlconf: configuration utility for wilink8 > wireless driver > > Add a recipe for building and installing the wlconf configuration > utility for TI Wilink8 family of chips. > > Signed-off-by: Eyal Reizer <eyalr@ti.com> > --- > Changes in v2: > * Rename to use an actual release name instead of _git > * Line indentation fixes > Changes in v3: > * Drop the PV assignment > > .../recipes-connectivity/wlconf/wlconf_r8.a6.01.bb | 36 > ++++++++++++++++++++ > 1 file changed, 36 insertions(+) > create mode 100644 meta-arago-extras/recipes- > connectivity/wlconf/wlconf_r8.a6.01.bb > > diff --git a/meta-arago-extras/recipes- > connectivity/wlconf/wlconf_r8.a6.01.bb b/meta-arago-extras/recipes- > connectivity/wlconf/wlconf_r8.a6.01.bb > new file mode 100644 > index 0000000..ade2e84 > --- /dev/null > +++ b/meta-arago-extras/recipes-connectivity/wlconf/wlconf_r8.a6.01.bb > @@ -0,0 +1,36 @@ > +DESCRIPTION = "Configuration utility for TI wireless drivers" > +LICENSE = "GPLv2" > +LIC_FILES_CHKSUM = > "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85c90328e3a9 > 438" > + > +PR ="r1" > +PR_append = "+gitr${SRCREV}" > + > +SRCREV = "ol_r8.a6.01" > +SRC_URI = "git://github.com/TI-OpenLink/18xx-ti-utils.git" > + > +S = "${WORKDIR}/git/wlconf" > + > +EXTRA_OEMAKE = "CC=${TARGET_PREFIX}gcc" > + > +do_install() { > + install -d ${D}${bindir} > + install -d ${D}${bindir}/wlconf/ > + install -d ${D}${bindir}/wlconf/official_inis > + > + install -m 0755 wlconf ${D}${bindir}/wlconf/ > + install -m 0755 dictionary.txt ${D}${bindir}/wlconf/ > + install -m 0755 struct.bin ${D}${bindir}/wlconf/ > + install -m 0755 wl18xx-conf-default.bin ${D}${bindir}/wlconf/ > + install -m 0755 README ${D}${bindir}/wlconf/ > + install -m 0755 example.conf ${D}${bindir}/wlconf/ > + install -m 0755 example.ini ${D}${bindir}/wlconf/ > + install -m 0755 ${S}/official_inis/* > + ${D}${bindir}/wlconf/official_inis/ > +} > + > +FILES_${PN} += " \ > + ${bindir}/wlconf \ > + ${bindir}/wlconf/official_inis \ > +" > + > +FILES_${PN}-dbg += "${bindir}/wlconf/.debug" > -- > 1.7.9.5 ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 1/9] wlconf: configuration utility for wilink8 wireless driver 2013-04-23 8:58 ` Reizer, Eyal @ 2013-04-23 19:35 ` Denys Dmytriyenko 2013-04-24 7:05 ` Reizer, Eyal 2013-04-30 6:14 ` Reizer, Eyal 0 siblings, 2 replies; 8+ messages in thread From: Denys Dmytriyenko @ 2013-04-23 19:35 UTC (permalink / raw) To: Reizer, Eyal; +Cc: meta-arago@arago-project.org Eyal, Not yet - it failed to apply wpa-supplicant patch when I tried yesterday. I may need to massage the patches, once I have time... -- Denys On Tue, Apr 23, 2013 at 08:58:33AM +0000, Reizer, Eyal wrote: > Ping on this set of wilink8 related patches. > > Regards, > Eyal > > > -----Original Message----- > > From: Reizer, Eyal > > Sent: Sunday, April 21, 2013 9:09 AM > > To: meta-arago@arago-project.org > > Cc: Reizer, Eyal > > Subject: [PATCH v3 1/9] wlconf: configuration utility for wilink8 > > wireless driver > > > > Add a recipe for building and installing the wlconf configuration > > utility for TI Wilink8 family of chips. > > > > Signed-off-by: Eyal Reizer <eyalr@ti.com> > > --- > > Changes in v2: > > * Rename to use an actual release name instead of _git > > * Line indentation fixes > > Changes in v3: > > * Drop the PV assignment > > > > .../recipes-connectivity/wlconf/wlconf_r8.a6.01.bb | 36 > > ++++++++++++++++++++ > > 1 file changed, 36 insertions(+) > > create mode 100644 meta-arago-extras/recipes- > > connectivity/wlconf/wlconf_r8.a6.01.bb > > > > diff --git a/meta-arago-extras/recipes- > > connectivity/wlconf/wlconf_r8.a6.01.bb b/meta-arago-extras/recipes- > > connectivity/wlconf/wlconf_r8.a6.01.bb > > new file mode 100644 > > index 0000000..ade2e84 > > --- /dev/null > > +++ b/meta-arago-extras/recipes-connectivity/wlconf/wlconf_r8.a6.01.bb > > @@ -0,0 +1,36 @@ > > +DESCRIPTION = "Configuration utility for TI wireless drivers" > > +LICENSE = "GPLv2" > > +LIC_FILES_CHKSUM = > > "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85c90328e3a9 > > 438" > > + > > +PR ="r1" > > +PR_append = "+gitr${SRCREV}" > > + > > +SRCREV = "ol_r8.a6.01" > > +SRC_URI = "git://github.com/TI-OpenLink/18xx-ti-utils.git" > > + > > +S = "${WORKDIR}/git/wlconf" > > + > > +EXTRA_OEMAKE = "CC=${TARGET_PREFIX}gcc" > > + > > +do_install() { > > + install -d ${D}${bindir} > > + install -d ${D}${bindir}/wlconf/ > > + install -d ${D}${bindir}/wlconf/official_inis > > + > > + install -m 0755 wlconf ${D}${bindir}/wlconf/ > > + install -m 0755 dictionary.txt ${D}${bindir}/wlconf/ > > + install -m 0755 struct.bin ${D}${bindir}/wlconf/ > > + install -m 0755 wl18xx-conf-default.bin ${D}${bindir}/wlconf/ > > + install -m 0755 README ${D}${bindir}/wlconf/ > > + install -m 0755 example.conf ${D}${bindir}/wlconf/ > > + install -m 0755 example.ini ${D}${bindir}/wlconf/ > > + install -m 0755 ${S}/official_inis/* > > + ${D}${bindir}/wlconf/official_inis/ > > +} > > + > > +FILES_${PN} += " \ > > + ${bindir}/wlconf \ > > + ${bindir}/wlconf/official_inis \ > > +" > > + > > +FILES_${PN}-dbg += "${bindir}/wlconf/.debug" > > -- > > 1.7.9.5 > > _______________________________________________ > meta-arago mailing list > meta-arago@arago-project.org > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 1/9] wlconf: configuration utility for wilink8 wireless driver 2013-04-23 19:35 ` Denys Dmytriyenko @ 2013-04-24 7:05 ` Reizer, Eyal 2013-04-30 6:14 ` Reizer, Eyal 1 sibling, 0 replies; 8+ messages in thread From: Reizer, Eyal @ 2013-04-24 7:05 UTC (permalink / raw) To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org Denys, Thanks for the update. Please let me know in case you need my help. Best Regards, Eyal > -----Original Message----- > From: Dmytriyenko, Denys > Sent: Tuesday, April 23, 2013 10:35 PM > To: Reizer, Eyal > Cc: meta-arago@arago-project.org > Subject: Re: [meta-arago] [PATCH v3 1/9] wlconf: configuration utility > for wilink8 wireless driver > > Eyal, > > Not yet - it failed to apply wpa-supplicant patch when I tried > yesterday. I may need to massage the patches, once I have time... > > -- > Denys > > > On Tue, Apr 23, 2013 at 08:58:33AM +0000, Reizer, Eyal wrote: > > Ping on this set of wilink8 related patches. > > > > Regards, > > Eyal > > > > > -----Original Message----- > > > From: Reizer, Eyal > > > Sent: Sunday, April 21, 2013 9:09 AM > > > To: meta-arago@arago-project.org > > > Cc: Reizer, Eyal > > > Subject: [PATCH v3 1/9] wlconf: configuration utility for wilink8 > > > wireless driver > > > > > > Add a recipe for building and installing the wlconf configuration > > > utility for TI Wilink8 family of chips. > > > > > > Signed-off-by: Eyal Reizer <eyalr@ti.com> > > > --- > > > Changes in v2: > > > * Rename to use an actual release name instead of _git > > > * Line indentation fixes > > > Changes in v3: > > > * Drop the PV assignment > > > > > > .../recipes-connectivity/wlconf/wlconf_r8.a6.01.bb | 36 > > > ++++++++++++++++++++ > > > 1 file changed, 36 insertions(+) > > > create mode 100644 meta-arago-extras/recipes- > > > connectivity/wlconf/wlconf_r8.a6.01.bb > > > > > > diff --git a/meta-arago-extras/recipes- > > > connectivity/wlconf/wlconf_r8.a6.01.bb b/meta-arago-extras/recipes- > > > connectivity/wlconf/wlconf_r8.a6.01.bb > > > new file mode 100644 > > > index 0000000..ade2e84 > > > --- /dev/null > > > +++ b/meta-arago-extras/recipes- > connectivity/wlconf/wlconf_r8.a6.01.bb > > > @@ -0,0 +1,36 @@ > > > +DESCRIPTION = "Configuration utility for TI wireless drivers" > > > +LICENSE = "GPLv2" > > > +LIC_FILES_CHKSUM = > > > > "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85c90328e3a9 > > > 438" > > > + > > > +PR ="r1" > > > +PR_append = "+gitr${SRCREV}" > > > + > > > +SRCREV = "ol_r8.a6.01" > > > +SRC_URI = "git://github.com/TI-OpenLink/18xx-ti-utils.git" > > > + > > > +S = "${WORKDIR}/git/wlconf" > > > + > > > +EXTRA_OEMAKE = "CC=${TARGET_PREFIX}gcc" > > > + > > > +do_install() { > > > + install -d ${D}${bindir} > > > + install -d ${D}${bindir}/wlconf/ > > > + install -d ${D}${bindir}/wlconf/official_inis > > > + > > > + install -m 0755 wlconf ${D}${bindir}/wlconf/ > > > + install -m 0755 dictionary.txt ${D}${bindir}/wlconf/ > > > + install -m 0755 struct.bin ${D}${bindir}/wlconf/ > > > + install -m 0755 wl18xx-conf-default.bin ${D}${bindir}/wlconf/ > > > + install -m 0755 README ${D}${bindir}/wlconf/ > > > + install -m 0755 example.conf ${D}${bindir}/wlconf/ > > > + install -m 0755 example.ini ${D}${bindir}/wlconf/ > > > + install -m 0755 ${S}/official_inis/* > > > + ${D}${bindir}/wlconf/official_inis/ > > > +} > > > + > > > +FILES_${PN} += " \ > > > + ${bindir}/wlconf \ > > > + ${bindir}/wlconf/official_inis \ > > > +" > > > + > > > +FILES_${PN}-dbg += "${bindir}/wlconf/.debug" > > > -- > > > 1.7.9.5 > > > > _______________________________________________ > > meta-arago mailing list > > meta-arago@arago-project.org > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 1/9] wlconf: configuration utility for wilink8 wireless driver 2013-04-23 19:35 ` Denys Dmytriyenko 2013-04-24 7:05 ` Reizer, Eyal @ 2013-04-30 6:14 ` Reizer, Eyal 2013-04-30 12:20 ` Cooper Jr., Franklin 1 sibling, 1 reply; 8+ messages in thread From: Reizer, Eyal @ 2013-04-30 6:14 UTC (permalink / raw) To: Dmytriyenko, Denys Cc: meta-arago@arago-project.org, Zarmi, Ilan, Sasover, Inon Hi Denys, Ping again on this set of wilink8 recipes. Best Regards, Eyal Reizer > -----Original Message----- > From: Reizer, Eyal > Sent: Wednesday, April 24, 2013 10:06 AM > To: Dmytriyenko, Denys > Cc: meta-arago@arago-project.org > Subject: RE: [meta-arago] [PATCH v3 1/9] wlconf: configuration utility > for wilink8 wireless driver > > Denys, > > Thanks for the update. > Please let me know in case you need my help. > > Best Regards, > Eyal > > > -----Original Message----- > > From: Dmytriyenko, Denys > > Sent: Tuesday, April 23, 2013 10:35 PM > > To: Reizer, Eyal > > Cc: meta-arago@arago-project.org > > Subject: Re: [meta-arago] [PATCH v3 1/9] wlconf: configuration > utility > > for wilink8 wireless driver > > > > Eyal, > > > > Not yet - it failed to apply wpa-supplicant patch when I tried > > yesterday. I may need to massage the patches, once I have time... > > > > -- > > Denys > > > > > > On Tue, Apr 23, 2013 at 08:58:33AM +0000, Reizer, Eyal wrote: > > > Ping on this set of wilink8 related patches. > > > > > > Regards, > > > Eyal > > > > > > > -----Original Message----- > > > > From: Reizer, Eyal > > > > Sent: Sunday, April 21, 2013 9:09 AM > > > > To: meta-arago@arago-project.org > > > > Cc: Reizer, Eyal > > > > Subject: [PATCH v3 1/9] wlconf: configuration utility for wilink8 > > > > wireless driver > > > > > > > > Add a recipe for building and installing the wlconf configuration > > > > utility for TI Wilink8 family of chips. > > > > > > > > Signed-off-by: Eyal Reizer <eyalr@ti.com> > > > > --- > > > > Changes in v2: > > > > * Rename to use an actual release name instead of _git > > > > * Line indentation fixes > > > > Changes in v3: > > > > * Drop the PV assignment > > > > > > > > .../recipes-connectivity/wlconf/wlconf_r8.a6.01.bb | 36 > > > > ++++++++++++++++++++ > > > > 1 file changed, 36 insertions(+) > > > > create mode 100644 meta-arago-extras/recipes- > > > > connectivity/wlconf/wlconf_r8.a6.01.bb > > > > > > > > diff --git a/meta-arago-extras/recipes- > > > > connectivity/wlconf/wlconf_r8.a6.01.bb > > > > b/meta-arago-extras/recipes- > > > > connectivity/wlconf/wlconf_r8.a6.01.bb > > > > new file mode 100644 > > > > index 0000000..ade2e84 > > > > --- /dev/null > > > > +++ b/meta-arago-extras/recipes- > > connectivity/wlconf/wlconf_r8.a6.01.bb > > > > @@ -0,0 +1,36 @@ > > > > +DESCRIPTION = "Configuration utility for TI wireless drivers" > > > > +LICENSE = "GPLv2" > > > > +LIC_FILES_CHKSUM = > > > > > > > "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85c90328e3a > > 9 > > > > 438" > > > > + > > > > +PR ="r1" > > > > +PR_append = "+gitr${SRCREV}" > > > > + > > > > +SRCREV = "ol_r8.a6.01" > > > > +SRC_URI = "git://github.com/TI-OpenLink/18xx-ti-utils.git" > > > > + > > > > +S = "${WORKDIR}/git/wlconf" > > > > + > > > > +EXTRA_OEMAKE = "CC=${TARGET_PREFIX}gcc" > > > > + > > > > +do_install() { > > > > + install -d ${D}${bindir} > > > > + install -d ${D}${bindir}/wlconf/ > > > > + install -d ${D}${bindir}/wlconf/official_inis > > > > + > > > > + install -m 0755 wlconf ${D}${bindir}/wlconf/ > > > > + install -m 0755 dictionary.txt ${D}${bindir}/wlconf/ > > > > + install -m 0755 struct.bin ${D}${bindir}/wlconf/ > > > > + install -m 0755 wl18xx-conf-default.bin > ${D}${bindir}/wlconf/ > > > > + install -m 0755 README ${D}${bindir}/wlconf/ > > > > + install -m 0755 example.conf ${D}${bindir}/wlconf/ > > > > + install -m 0755 example.ini ${D}${bindir}/wlconf/ > > > > + install -m 0755 ${S}/official_inis/* > > > > + ${D}${bindir}/wlconf/official_inis/ > > > > +} > > > > + > > > > +FILES_${PN} += " \ > > > > + ${bindir}/wlconf \ > > > > + ${bindir}/wlconf/official_inis \ " > > > > + > > > > +FILES_${PN}-dbg += "${bindir}/wlconf/.debug" > > > > -- > > > > 1.7.9.5 > > > > > > _______________________________________________ > > > meta-arago mailing list > > > meta-arago@arago-project.org > > > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 1/9] wlconf: configuration utility for wilink8 wireless driver 2013-04-30 6:14 ` Reizer, Eyal @ 2013-04-30 12:20 ` Cooper Jr., Franklin 2013-04-30 13:50 ` Denys Dmytriyenko 0 siblings, 1 reply; 8+ messages in thread From: Cooper Jr., Franklin @ 2013-04-30 12:20 UTC (permalink / raw) To: Reizer, Eyal; +Cc: meta-arago@arago-project.org, Zarmi, Ilan, Sasover, Inon Your patch set was committed April 24th. On Apr 30, 2013, at 1:14 AM, "Reizer, Eyal" <eyalr@ti.com> wrote: > Hi Denys, > > Ping again on this set of wilink8 recipes. > > Best Regards, > Eyal Reizer > >> -----Original Message----- >> From: Reizer, Eyal >> Sent: Wednesday, April 24, 2013 10:06 AM >> To: Dmytriyenko, Denys >> Cc: meta-arago@arago-project.org >> Subject: RE: [meta-arago] [PATCH v3 1/9] wlconf: configuration utility >> for wilink8 wireless driver >> >> Denys, >> >> Thanks for the update. >> Please let me know in case you need my help. >> >> Best Regards, >> Eyal >> >>> -----Original Message----- >>> From: Dmytriyenko, Denys >>> Sent: Tuesday, April 23, 2013 10:35 PM >>> To: Reizer, Eyal >>> Cc: meta-arago@arago-project.org >>> Subject: Re: [meta-arago] [PATCH v3 1/9] wlconf: configuration >> utility >>> for wilink8 wireless driver >>> >>> Eyal, >>> >>> Not yet - it failed to apply wpa-supplicant patch when I tried >>> yesterday. I may need to massage the patches, once I have time... >>> >>> -- >>> Denys >>> >>> >>> On Tue, Apr 23, 2013 at 08:58:33AM +0000, Reizer, Eyal wrote: >>>> Ping on this set of wilink8 related patches. >>>> >>>> Regards, >>>> Eyal >>>> >>>>> -----Original Message----- >>>>> From: Reizer, Eyal >>>>> Sent: Sunday, April 21, 2013 9:09 AM >>>>> To: meta-arago@arago-project.org >>>>> Cc: Reizer, Eyal >>>>> Subject: [PATCH v3 1/9] wlconf: configuration utility for wilink8 >>>>> wireless driver >>>>> >>>>> Add a recipe for building and installing the wlconf configuration >>>>> utility for TI Wilink8 family of chips. >>>>> >>>>> Signed-off-by: Eyal Reizer <eyalr@ti.com> >>>>> --- >>>>> Changes in v2: >>>>> * Rename to use an actual release name instead of _git >>>>> * Line indentation fixes >>>>> Changes in v3: >>>>> * Drop the PV assignment >>>>> >>>>> .../recipes-connectivity/wlconf/wlconf_r8.a6.01.bb | 36 >>>>> ++++++++++++++++++++ >>>>> 1 file changed, 36 insertions(+) >>>>> create mode 100644 meta-arago-extras/recipes- >>>>> connectivity/wlconf/wlconf_r8.a6.01.bb >>>>> >>>>> diff --git a/meta-arago-extras/recipes- >>>>> connectivity/wlconf/wlconf_r8.a6.01.bb >>>>> b/meta-arago-extras/recipes- >>>>> connectivity/wlconf/wlconf_r8.a6.01.bb >>>>> new file mode 100644 >>>>> index 0000000..ade2e84 >>>>> --- /dev/null >>>>> +++ b/meta-arago-extras/recipes- >>> connectivity/wlconf/wlconf_r8.a6.01.bb >>>>> @@ -0,0 +1,36 @@ >>>>> +DESCRIPTION = "Configuration utility for TI wireless drivers" >>>>> +LICENSE = "GPLv2" >>>>> +LIC_FILES_CHKSUM = >> "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85c90328e3a >>> 9 >>>>> 438" >>>>> + >>>>> +PR ="r1" >>>>> +PR_append = "+gitr${SRCREV}" >>>>> + >>>>> +SRCREV = "ol_r8.a6.01" >>>>> +SRC_URI = "git://github.com/TI-OpenLink/18xx-ti-utils.git" >>>>> + >>>>> +S = "${WORKDIR}/git/wlconf" >>>>> + >>>>> +EXTRA_OEMAKE = "CC=${TARGET_PREFIX}gcc" >>>>> + >>>>> +do_install() { >>>>> + install -d ${D}${bindir} >>>>> + install -d ${D}${bindir}/wlconf/ >>>>> + install -d ${D}${bindir}/wlconf/official_inis >>>>> + >>>>> + install -m 0755 wlconf ${D}${bindir}/wlconf/ >>>>> + install -m 0755 dictionary.txt ${D}${bindir}/wlconf/ >>>>> + install -m 0755 struct.bin ${D}${bindir}/wlconf/ >>>>> + install -m 0755 wl18xx-conf-default.bin >> ${D}${bindir}/wlconf/ >>>>> + install -m 0755 README ${D}${bindir}/wlconf/ >>>>> + install -m 0755 example.conf ${D}${bindir}/wlconf/ >>>>> + install -m 0755 example.ini ${D}${bindir}/wlconf/ >>>>> + install -m 0755 ${S}/official_inis/* >>>>> + ${D}${bindir}/wlconf/official_inis/ >>>>> +} >>>>> + >>>>> +FILES_${PN} += " \ >>>>> + ${bindir}/wlconf \ >>>>> + ${bindir}/wlconf/official_inis \ " >>>>> + >>>>> +FILES_${PN}-dbg += "${bindir}/wlconf/.debug" >>>>> -- >>>>> 1.7.9.5 >>>> >>>> _______________________________________________ >>>> 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] 8+ messages in thread
* Re: [PATCH v3 1/9] wlconf: configuration utility for wilink8 wireless driver 2013-04-30 12:20 ` Cooper Jr., Franklin @ 2013-04-30 13:50 ` Denys Dmytriyenko 2013-04-30 14:02 ` Reizer, Eyal 0 siblings, 1 reply; 8+ messages in thread From: Denys Dmytriyenko @ 2013-04-30 13:50 UTC (permalink / raw) To: Cooper Jr., Franklin Cc: meta-arago@arago-project.org, Zarmi, Ilan, Sasover, Inon Correct. http://arago-project.org/git/?p=meta-arago.git;a=commit;h=556c5accab0fdadb74b8302aa1893eab9e7097a8 -- Denys On Tue, Apr 30, 2013 at 08:20:24AM -0400, Cooper Jr., Franklin wrote: > Your patch set was committed April 24th. > > On Apr 30, 2013, at 1:14 AM, "Reizer, Eyal" <eyalr@ti.com> wrote: > > > Hi Denys, > > > > Ping again on this set of wilink8 recipes. > > > > Best Regards, > > Eyal Reizer > > > >> -----Original Message----- > >> From: Reizer, Eyal > >> Sent: Wednesday, April 24, 2013 10:06 AM > >> To: Dmytriyenko, Denys > >> Cc: meta-arago@arago-project.org > >> Subject: RE: [meta-arago] [PATCH v3 1/9] wlconf: configuration utility > >> for wilink8 wireless driver > >> > >> Denys, > >> > >> Thanks for the update. > >> Please let me know in case you need my help. > >> > >> Best Regards, > >> Eyal > >> > >>> -----Original Message----- > >>> From: Dmytriyenko, Denys > >>> Sent: Tuesday, April 23, 2013 10:35 PM > >>> To: Reizer, Eyal > >>> Cc: meta-arago@arago-project.org > >>> Subject: Re: [meta-arago] [PATCH v3 1/9] wlconf: configuration > >> utility > >>> for wilink8 wireless driver > >>> > >>> Eyal, > >>> > >>> Not yet - it failed to apply wpa-supplicant patch when I tried > >>> yesterday. I may need to massage the patches, once I have time... > >>> > >>> -- > >>> Denys > >>> > >>> > >>> On Tue, Apr 23, 2013 at 08:58:33AM +0000, Reizer, Eyal wrote: > >>>> Ping on this set of wilink8 related patches. > >>>> > >>>> Regards, > >>>> Eyal > >>>> > >>>>> -----Original Message----- > >>>>> From: Reizer, Eyal > >>>>> Sent: Sunday, April 21, 2013 9:09 AM > >>>>> To: meta-arago@arago-project.org > >>>>> Cc: Reizer, Eyal > >>>>> Subject: [PATCH v3 1/9] wlconf: configuration utility for wilink8 > >>>>> wireless driver > >>>>> > >>>>> Add a recipe for building and installing the wlconf configuration > >>>>> utility for TI Wilink8 family of chips. > >>>>> > >>>>> Signed-off-by: Eyal Reizer <eyalr@ti.com> > >>>>> --- > >>>>> Changes in v2: > >>>>> * Rename to use an actual release name instead of _git > >>>>> * Line indentation fixes > >>>>> Changes in v3: > >>>>> * Drop the PV assignment > >>>>> > >>>>> .../recipes-connectivity/wlconf/wlconf_r8.a6.01.bb | 36 > >>>>> ++++++++++++++++++++ > >>>>> 1 file changed, 36 insertions(+) > >>>>> create mode 100644 meta-arago-extras/recipes- > >>>>> connectivity/wlconf/wlconf_r8.a6.01.bb > >>>>> > >>>>> diff --git a/meta-arago-extras/recipes- > >>>>> connectivity/wlconf/wlconf_r8.a6.01.bb > >>>>> b/meta-arago-extras/recipes- > >>>>> connectivity/wlconf/wlconf_r8.a6.01.bb > >>>>> new file mode 100644 > >>>>> index 0000000..ade2e84 > >>>>> --- /dev/null > >>>>> +++ b/meta-arago-extras/recipes- > >>> connectivity/wlconf/wlconf_r8.a6.01.bb > >>>>> @@ -0,0 +1,36 @@ > >>>>> +DESCRIPTION = "Configuration utility for TI wireless drivers" > >>>>> +LICENSE = "GPLv2" > >>>>> +LIC_FILES_CHKSUM = > >> "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85c90328e3a > >>> 9 > >>>>> 438" > >>>>> + > >>>>> +PR ="r1" > >>>>> +PR_append = "+gitr${SRCREV}" > >>>>> + > >>>>> +SRCREV = "ol_r8.a6.01" > >>>>> +SRC_URI = "git://github.com/TI-OpenLink/18xx-ti-utils.git" > >>>>> + > >>>>> +S = "${WORKDIR}/git/wlconf" > >>>>> + > >>>>> +EXTRA_OEMAKE = "CC=${TARGET_PREFIX}gcc" > >>>>> + > >>>>> +do_install() { > >>>>> + install -d ${D}${bindir} > >>>>> + install -d ${D}${bindir}/wlconf/ > >>>>> + install -d ${D}${bindir}/wlconf/official_inis > >>>>> + > >>>>> + install -m 0755 wlconf ${D}${bindir}/wlconf/ > >>>>> + install -m 0755 dictionary.txt ${D}${bindir}/wlconf/ > >>>>> + install -m 0755 struct.bin ${D}${bindir}/wlconf/ > >>>>> + install -m 0755 wl18xx-conf-default.bin > >> ${D}${bindir}/wlconf/ > >>>>> + install -m 0755 README ${D}${bindir}/wlconf/ > >>>>> + install -m 0755 example.conf ${D}${bindir}/wlconf/ > >>>>> + install -m 0755 example.ini ${D}${bindir}/wlconf/ > >>>>> + install -m 0755 ${S}/official_inis/* > >>>>> + ${D}${bindir}/wlconf/official_inis/ > >>>>> +} > >>>>> + > >>>>> +FILES_${PN} += " \ > >>>>> + ${bindir}/wlconf \ > >>>>> + ${bindir}/wlconf/official_inis \ " > >>>>> + > >>>>> +FILES_${PN}-dbg += "${bindir}/wlconf/.debug" > >>>>> -- > >>>>> 1.7.9.5 > >>>> > >>>> _______________________________________________ > >>>> 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] 8+ messages in thread
* Re: [PATCH v3 1/9] wlconf: configuration utility for wilink8 wireless driver 2013-04-30 13:50 ` Denys Dmytriyenko @ 2013-04-30 14:02 ` Reizer, Eyal 0 siblings, 0 replies; 8+ messages in thread From: Reizer, Eyal @ 2013-04-30 14:02 UTC (permalink / raw) To: Dmytriyenko, Denys, Cooper Jr., Franklin Cc: meta-arago@arago-project.org, Zarmi, Ilan, Sasover, Inon Hi Denys, Thanks! Regards, Eyal > -----Original Message----- > From: Dmytriyenko, Denys > Sent: Tuesday, April 30, 2013 4:50 PM > To: Cooper Jr., Franklin > Cc: Reizer, Eyal; meta-arago@arago-project.org; Zarmi, Ilan; Sasover, > Inon > Subject: Re: [meta-arago] [PATCH v3 1/9] wlconf: configuration utility > for wilink8 wireless driver > > Correct. > http://arago-project.org/git/?p=meta- > arago.git;a=commit;h=556c5accab0fdadb74b8302aa1893eab9e7097a8 > > -- > Denys > > On Tue, Apr 30, 2013 at 08:20:24AM -0400, Cooper Jr., Franklin wrote: > > Your patch set was committed April 24th. > > > > On Apr 30, 2013, at 1:14 AM, "Reizer, Eyal" <eyalr@ti.com> wrote: > > > > > Hi Denys, > > > > > > Ping again on this set of wilink8 recipes. > > > > > > Best Regards, > > > Eyal Reizer > > > > > >> -----Original Message----- > > >> From: Reizer, Eyal > > >> Sent: Wednesday, April 24, 2013 10:06 AM > > >> To: Dmytriyenko, Denys > > >> Cc: meta-arago@arago-project.org > > >> Subject: RE: [meta-arago] [PATCH v3 1/9] wlconf: configuration > > >> utility for wilink8 wireless driver > > >> > > >> Denys, > > >> > > >> Thanks for the update. > > >> Please let me know in case you need my help. > > >> > > >> Best Regards, > > >> Eyal > > >> > > >>> -----Original Message----- > > >>> From: Dmytriyenko, Denys > > >>> Sent: Tuesday, April 23, 2013 10:35 PM > > >>> To: Reizer, Eyal > > >>> Cc: meta-arago@arago-project.org > > >>> Subject: Re: [meta-arago] [PATCH v3 1/9] wlconf: configuration > > >> utility > > >>> for wilink8 wireless driver > > >>> > > >>> Eyal, > > >>> > > >>> Not yet - it failed to apply wpa-supplicant patch when I tried > > >>> yesterday. I may need to massage the patches, once I have time... > > >>> > > >>> -- > > >>> Denys > > >>> > > >>> > > >>> On Tue, Apr 23, 2013 at 08:58:33AM +0000, Reizer, Eyal wrote: > > >>>> Ping on this set of wilink8 related patches. > > >>>> > > >>>> Regards, > > >>>> Eyal > > >>>> > > >>>>> -----Original Message----- > > >>>>> From: Reizer, Eyal > > >>>>> Sent: Sunday, April 21, 2013 9:09 AM > > >>>>> To: meta-arago@arago-project.org > > >>>>> Cc: Reizer, Eyal > > >>>>> Subject: [PATCH v3 1/9] wlconf: configuration utility for > > >>>>> wilink8 wireless driver > > >>>>> > > >>>>> Add a recipe for building and installing the wlconf > > >>>>> configuration utility for TI Wilink8 family of chips. > > >>>>> > > >>>>> Signed-off-by: Eyal Reizer <eyalr@ti.com> > > >>>>> --- > > >>>>> Changes in v2: > > >>>>> * Rename to use an actual release name instead of _git > > >>>>> * Line indentation fixes > > >>>>> Changes in v3: > > >>>>> * Drop the PV assignment > > >>>>> > > >>>>> .../recipes-connectivity/wlconf/wlconf_r8.a6.01.bb | 36 > > >>>>> ++++++++++++++++++++ > > >>>>> 1 file changed, 36 insertions(+) create mode 100644 > > >>>>> meta-arago-extras/recipes- > > >>>>> connectivity/wlconf/wlconf_r8.a6.01.bb > > >>>>> > > >>>>> diff --git a/meta-arago-extras/recipes- > > >>>>> connectivity/wlconf/wlconf_r8.a6.01.bb > > >>>>> b/meta-arago-extras/recipes- > > >>>>> connectivity/wlconf/wlconf_r8.a6.01.bb > > >>>>> new file mode 100644 > > >>>>> index 0000000..ade2e84 > > >>>>> --- /dev/null > > >>>>> +++ b/meta-arago-extras/recipes- > > >>> connectivity/wlconf/wlconf_r8.a6.01.bb > > >>>>> @@ -0,0 +1,36 @@ > > >>>>> +DESCRIPTION = "Configuration utility for TI wireless drivers" > > >>>>> +LICENSE = "GPLv2" > > >>>>> +LIC_FILES_CHKSUM = > > >> > "file://README;beginline=1;endline=21;md5=adc05a1903d3f107f85c90328 > > >> e3a > > >>> 9 > > >>>>> 438" > > >>>>> + > > >>>>> +PR ="r1" > > >>>>> +PR_append = "+gitr${SRCREV}" > > >>>>> + > > >>>>> +SRCREV = "ol_r8.a6.01" > > >>>>> +SRC_URI = "git://github.com/TI-OpenLink/18xx-ti-utils.git" > > >>>>> + > > >>>>> +S = "${WORKDIR}/git/wlconf" > > >>>>> + > > >>>>> +EXTRA_OEMAKE = "CC=${TARGET_PREFIX}gcc" > > >>>>> + > > >>>>> +do_install() { > > >>>>> + install -d ${D}${bindir} > > >>>>> + install -d ${D}${bindir}/wlconf/ > > >>>>> + install -d ${D}${bindir}/wlconf/official_inis > > >>>>> + > > >>>>> + install -m 0755 wlconf ${D}${bindir}/wlconf/ > > >>>>> + install -m 0755 dictionary.txt ${D}${bindir}/wlconf/ > > >>>>> + install -m 0755 struct.bin ${D}${bindir}/wlconf/ > > >>>>> + install -m 0755 wl18xx-conf-default.bin > > >> ${D}${bindir}/wlconf/ > > >>>>> + install -m 0755 README ${D}${bindir}/wlconf/ > > >>>>> + install -m 0755 example.conf ${D}${bindir}/wlconf/ > > >>>>> + install -m 0755 example.ini ${D}${bindir}/wlconf/ > > >>>>> + install -m 0755 ${S}/official_inis/* > > >>>>> + ${D}${bindir}/wlconf/official_inis/ > > >>>>> +} > > >>>>> + > > >>>>> +FILES_${PN} += " \ > > >>>>> + ${bindir}/wlconf \ > > >>>>> + ${bindir}/wlconf/official_inis \ " > > >>>>> + > > >>>>> +FILES_${PN}-dbg += "${bindir}/wlconf/.debug" > > >>>>> -- > > >>>>> 1.7.9.5 > > >>>> > > >>>> _______________________________________________ > > >>>> 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] 8+ messages in thread
end of thread, other threads:[~2013-04-30 14:02 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-04-21 6:08 [PATCH v3 1/9] wlconf: configuration utility for wilink8 wireless driver Eyal Reizer 2013-04-23 8:58 ` Reizer, Eyal 2013-04-23 19:35 ` Denys Dmytriyenko 2013-04-24 7:05 ` Reizer, Eyal 2013-04-30 6:14 ` Reizer, Eyal 2013-04-30 12:20 ` Cooper Jr., Franklin 2013-04-30 13:50 ` Denys Dmytriyenko 2013-04-30 14:02 ` Reizer, Eyal
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.