All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] common-csl-ip: (ti-csl) Moved from meta-arago and renamed
@ 2014-10-07 11:36 Sam Nelson
  2014-10-07 11:36 ` [PATCH v2 2/2] common-csl-ip: Update to csl version 2.1.0.5 Sam Nelson
  2014-10-07 19:36 ` [PATCH v2 1/2] common-csl-ip: (ti-csl) Moved from meta-arago and renamed Denys Dmytriyenko
  0 siblings, 2 replies; 4+ messages in thread
From: Sam Nelson @ 2014-10-07 11:36 UTC (permalink / raw)
  To: meta-ti

- Moved from meta-arago ( where it was called ti-csl_git.bb)
  http://arago-project.org/git/?p=meta-arago.git;a=blob_plain;f=meta-arago-extras/recipes-bsp/ti-csl/ti-csl_git.bb;hb=HEAD
- Renamed it to common-csl-ip_git.bb
- This package provides chip support library interface files

---
Changes from previous version of patch
-Add comments on renaming and original url attached
- rename to common-csl-ip_git.bb
---

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
 recipes-bsp/common-csl-ip/common-csl-ip_git.bb |   21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 recipes-bsp/common-csl-ip/common-csl-ip_git.bb

diff --git a/recipes-bsp/common-csl-ip/common-csl-ip_git.bb b/recipes-bsp/common-csl-ip/common-csl-ip_git.bb
new file mode 100644
index 0000000..fb5e6f8
--- /dev/null
+++ b/recipes-bsp/common-csl-ip/common-csl-ip_git.bb
@@ -0,0 +1,21 @@
+DESCRIPTION = "TI CSL"
+LICENSE = "TI BSD"
+LIC_FILES_CHKSUM = "file://COPYING.txt;md5=5857833e20836213677fac33f9aded21"
+
+COMPATIBLE_MACHINE = "keystone"
+ALLOW_EMPTY_${PN} = "1"
+
+PR = "r0"
+BRANCH="master"
+SRC_URI = "git://git.ti.com/keystone-rtos/common-csl-ip.git;protocol=git;branch=${BRANCH}"
+# commit ID corresponds to DEV.CSL_KEYSTONE2.02.00.00.17
+SRCREV = "f6f90144c14e1ee783c4b893b52e54830be8166e" 
+
+S = "${WORKDIR}/git"
+
+do_install () {
+    install -d ${D}${includedir}/ti/csl
+    find . -name "*.h" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl 
+    find ./src/ip/serdes_sb/V0 -name "*.c" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl
+}
+
-- 
1.7.9.5



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

* [PATCH v2 2/2] common-csl-ip: Update to csl version 2.1.0.5
  2014-10-07 11:36 [PATCH v2 1/2] common-csl-ip: (ti-csl) Moved from meta-arago and renamed Sam Nelson
@ 2014-10-07 11:36 ` Sam Nelson
  2014-10-07 19:36 ` [PATCH v2 1/2] common-csl-ip: (ti-csl) Moved from meta-arago and renamed Denys Dmytriyenko
  1 sibling, 0 replies; 4+ messages in thread
From: Sam Nelson @ 2014-10-07 11:36 UTC (permalink / raw)
  To: meta-ti

- Updated description
- Updated LICENSE to BSD-3-Clause
- Updated Commit id
- Removed trailing whitespaces

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
---
 recipes-bsp/common-csl-ip/common-csl-ip_git.bb |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/recipes-bsp/common-csl-ip/common-csl-ip_git.bb b/recipes-bsp/common-csl-ip/common-csl-ip_git.bb
index fb5e6f8..1059357 100644
--- a/recipes-bsp/common-csl-ip/common-csl-ip_git.bb
+++ b/recipes-bsp/common-csl-ip/common-csl-ip_git.bb
@@ -1,21 +1,21 @@
-DESCRIPTION = "TI CSL"
-LICENSE = "TI BSD"
+DESCRIPTION = "Chip support library low level interface"
+LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://COPYING.txt;md5=5857833e20836213677fac33f9aded21"
 
 COMPATIBLE_MACHINE = "keystone"
 ALLOW_EMPTY_${PN} = "1"
 
-PR = "r0"
+PR = "r1"
 BRANCH="master"
 SRC_URI = "git://git.ti.com/keystone-rtos/common-csl-ip.git;protocol=git;branch=${BRANCH}"
-# commit ID corresponds to DEV.CSL_KEYSTONE2.02.00.00.17
-SRCREV = "f6f90144c14e1ee783c4b893b52e54830be8166e" 
+# commit ID corresponds to DEV.CSL_KEYSTONE2.02.01.00.05A
+SRCREV = "80d18dda4a76ce1a22cf2b5156f111390d75bea4"
 
 S = "${WORKDIR}/git"
 
 do_install () {
     install -d ${D}${includedir}/ti/csl
-    find . -name "*.h" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl 
+    find . -name "*.h" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl
     find ./src/ip/serdes_sb/V0 -name "*.c" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl
 }
 
-- 
1.7.9.5



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

* Re: [PATCH v2 1/2] common-csl-ip: (ti-csl) Moved from meta-arago and renamed
  2014-10-07 11:36 [PATCH v2 1/2] common-csl-ip: (ti-csl) Moved from meta-arago and renamed Sam Nelson
  2014-10-07 11:36 ` [PATCH v2 2/2] common-csl-ip: Update to csl version 2.1.0.5 Sam Nelson
@ 2014-10-07 19:36 ` Denys Dmytriyenko
  2014-10-07 19:39   ` Denys Dmytriyenko
  1 sibling, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2014-10-07 19:36 UTC (permalink / raw)
  To: Sam Nelson; +Cc: meta-ti

And few more comments for the future (I'll fix those for now):


On Tue, Oct 07, 2014 at 07:36:44AM -0400, Sam Nelson wrote:
> - Moved from meta-arago ( where it was called ti-csl_git.bb)
>   http://arago-project.org/git/?p=meta-arago.git;a=blob_plain;f=meta-arago-extras/recipes-bsp/ti-csl/ti-csl_git.bb;hb=HEAD
> - Renamed it to common-csl-ip_git.bb
> - This package provides chip support library interface files
> 
> ---
> Changes from previous version of patch
> -Add comments on renaming and original url attached
> - rename to common-csl-ip_git.bb
> ---

Your SOB line gets lost, as it appears after the '---' delimiter.
The above "Changes" section should be after the SOB line below, as everything 
between the first '---' and 'diff' lines gets ignored.


> Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> ---

I usually write patch revision changes here...


>  recipes-bsp/common-csl-ip/common-csl-ip_git.bb |   21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
>  create mode 100644 recipes-bsp/common-csl-ip/common-csl-ip_git.bb
> 
> diff --git a/recipes-bsp/common-csl-ip/common-csl-ip_git.bb b/recipes-bsp/common-csl-ip/common-csl-ip_git.bb
> new file mode 100644
> index 0000000..fb5e6f8
> --- /dev/null
> +++ b/recipes-bsp/common-csl-ip/common-csl-ip_git.bb
> @@ -0,0 +1,21 @@
> +DESCRIPTION = "TI CSL"
> +LICENSE = "TI BSD"
> +LIC_FILES_CHKSUM = "file://COPYING.txt;md5=5857833e20836213677fac33f9aded21"
> +
> +COMPATIBLE_MACHINE = "keystone"
> +ALLOW_EMPTY_${PN} = "1"
> +
> +PR = "r0"
> +BRANCH="master"
> +SRC_URI = "git://git.ti.com/keystone-rtos/common-csl-ip.git;protocol=git;branch=${BRANCH}"
> +# commit ID corresponds to DEV.CSL_KEYSTONE2.02.00.00.17
> +SRCREV = "f6f90144c14e1ee783c4b893b52e54830be8166e" 

^^^ git-am complains there's a trailing whitespace at the end of SRCREV line.


> +S = "${WORKDIR}/git"
> +
> +do_install () {
> +    install -d ${D}${includedir}/ti/csl
> +    find . -name "*.h" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl 

^^^ As well as the first "find" command line has trailing whitespace.


> +    find ./src/ip/serdes_sb/V0 -name "*.c" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl
> +}
> +

^^^ Another complaint from git-am is the blank line at the end of the file.


Applying: common-csl-ip: (ti-csl) Moved from meta-arago and renamed
/OE/arago-daisy/sources/meta-ti/.git/rebase-apply/patch:30: trailing whitespace.
SRCREV = "f6f90144c14e1ee783c4b893b52e54830be8166e" 
/OE/arago-daisy/sources/meta-ti/.git/rebase-apply/patch:36: trailing whitespace.
    find . -name "*.h" -type f | xargs -I {} cp --parents {} 
${D}${includedir}/ti/csl 
/OE/arago-daisy/sources/meta-ti/.git/rebase-apply/patch:39: new blank line at EOF.
+
warning: 3 lines add whitespace errors.


> -- 
> 1.7.9.5
> 
> -- 
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti


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

* Re: [PATCH v2 1/2] common-csl-ip: (ti-csl) Moved from meta-arago and renamed
  2014-10-07 19:36 ` [PATCH v2 1/2] common-csl-ip: (ti-csl) Moved from meta-arago and renamed Denys Dmytriyenko
@ 2014-10-07 19:39   ` Denys Dmytriyenko
  0 siblings, 0 replies; 4+ messages in thread
From: Denys Dmytriyenko @ 2014-10-07 19:39 UTC (permalink / raw)
  To: Sam Nelson; +Cc: meta-ti

Ah, never mind the whitespaces - I forgot that you are fixing them in the 
second patch, while the first one is just an exact copy of the exisitng 
recipe... :) My bad, sorry. I'll only fix lost SOB then.


On Tue, Oct 07, 2014 at 03:36:57PM -0400, Denys Dmytriyenko wrote:
> And few more comments for the future (I'll fix those for now):
> 
> 
> On Tue, Oct 07, 2014 at 07:36:44AM -0400, Sam Nelson wrote:
> > - Moved from meta-arago ( where it was called ti-csl_git.bb)
> >   http://arago-project.org/git/?p=meta-arago.git;a=blob_plain;f=meta-arago-extras/recipes-bsp/ti-csl/ti-csl_git.bb;hb=HEAD
> > - Renamed it to common-csl-ip_git.bb
> > - This package provides chip support library interface files
> > 
> > ---
> > Changes from previous version of patch
> > -Add comments on renaming and original url attached
> > - rename to common-csl-ip_git.bb
> > ---
> 
> Your SOB line gets lost, as it appears after the '---' delimiter.
> The above "Changes" section should be after the SOB line below, as everything 
> between the first '---' and 'diff' lines gets ignored.
> 
> 
> > Signed-off-by: Sam Nelson <sam.nelson@ti.com>
> > ---
> 
> I usually write patch revision changes here...
> 
> 
> >  recipes-bsp/common-csl-ip/common-csl-ip_git.bb |   21 +++++++++++++++++++++
> >  1 file changed, 21 insertions(+)
> >  create mode 100644 recipes-bsp/common-csl-ip/common-csl-ip_git.bb
> > 
> > diff --git a/recipes-bsp/common-csl-ip/common-csl-ip_git.bb b/recipes-bsp/common-csl-ip/common-csl-ip_git.bb
> > new file mode 100644
> > index 0000000..fb5e6f8
> > --- /dev/null
> > +++ b/recipes-bsp/common-csl-ip/common-csl-ip_git.bb
> > @@ -0,0 +1,21 @@
> > +DESCRIPTION = "TI CSL"
> > +LICENSE = "TI BSD"
> > +LIC_FILES_CHKSUM = "file://COPYING.txt;md5=5857833e20836213677fac33f9aded21"
> > +
> > +COMPATIBLE_MACHINE = "keystone"
> > +ALLOW_EMPTY_${PN} = "1"
> > +
> > +PR = "r0"
> > +BRANCH="master"
> > +SRC_URI = "git://git.ti.com/keystone-rtos/common-csl-ip.git;protocol=git;branch=${BRANCH}"
> > +# commit ID corresponds to DEV.CSL_KEYSTONE2.02.00.00.17
> > +SRCREV = "f6f90144c14e1ee783c4b893b52e54830be8166e" 
> 
> ^^^ git-am complains there's a trailing whitespace at the end of SRCREV line.
> 
> 
> > +S = "${WORKDIR}/git"
> > +
> > +do_install () {
> > +    install -d ${D}${includedir}/ti/csl
> > +    find . -name "*.h" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl 
> 
> ^^^ As well as the first "find" command line has trailing whitespace.
> 
> 
> > +    find ./src/ip/serdes_sb/V0 -name "*.c" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl
> > +}
> > +
> 
> ^^^ Another complaint from git-am is the blank line at the end of the file.
> 
> 
> Applying: common-csl-ip: (ti-csl) Moved from meta-arago and renamed
> /OE/arago-daisy/sources/meta-ti/.git/rebase-apply/patch:30: trailing whitespace.
> SRCREV = "f6f90144c14e1ee783c4b893b52e54830be8166e" 
> /OE/arago-daisy/sources/meta-ti/.git/rebase-apply/patch:36: trailing whitespace.
>     find . -name "*.h" -type f | xargs -I {} cp --parents {} 
> ${D}${includedir}/ti/csl 
> /OE/arago-daisy/sources/meta-ti/.git/rebase-apply/patch:39: new blank line at EOF.
> +
> warning: 3 lines add whitespace errors.
> 
> 
> > -- 
> > 1.7.9.5
> > 
> > -- 
> > _______________________________________________
> > meta-ti mailing list
> > meta-ti@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-ti
> -- 
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti


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

end of thread, other threads:[~2014-10-07 19:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-07 11:36 [PATCH v2 1/2] common-csl-ip: (ti-csl) Moved from meta-arago and renamed Sam Nelson
2014-10-07 11:36 ` [PATCH v2 2/2] common-csl-ip: Update to csl version 2.1.0.5 Sam Nelson
2014-10-07 19:36 ` [PATCH v2 1/2] common-csl-ip: (ti-csl) Moved from meta-arago and renamed Denys Dmytriyenko
2014-10-07 19:39   ` Denys Dmytriyenko

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.