diff options
author | Sam Nelson <sam.nelson@ti.com> | 2014-10-07 17:36:45 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2014-10-07 15:23:56 -0400 |
commit | 0b17797a12ec3f385052d080ca56e17687482aab (patch) | |
tree | 637f387d759860e76bd9cdfac88da976c12fb66c | |
parent | c8f0bf96559005b606a0283b8d305ccb60fe4df6 (diff) | |
download | meta-ti-0b17797a12ec3f385052d080ca56e17687482aab.tar.gz |
common-csl-ip: Update to csl version 2.1.0.5
- Updated description
- Updated LICENSE to BSD-3-Clause
- Updated Commit id
- Removed trailing whitespaces
Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
-rw-r--r-- | recipes-bsp/common-csl-ip/common-csl-ip_git.bb | 13 |
1 files changed, 6 insertions, 7 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 fb5e6f84..a6f46db4 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,20 @@ | |||
1 | DESCRIPTION = "TI CSL" | 1 | DESCRIPTION = "Chip support library low level interface" |
2 | LICENSE = "TI BSD" | 2 | LICENSE = "BSD-3-Clause" |
3 | LIC_FILES_CHKSUM = "file://COPYING.txt;md5=5857833e20836213677fac33f9aded21" | 3 | LIC_FILES_CHKSUM = "file://COPYING.txt;md5=5857833e20836213677fac33f9aded21" |
4 | 4 | ||
5 | COMPATIBLE_MACHINE = "keystone" | 5 | COMPATIBLE_MACHINE = "keystone" |
6 | ALLOW_EMPTY_${PN} = "1" | 6 | ALLOW_EMPTY_${PN} = "1" |
7 | 7 | ||
8 | PR = "r0" | 8 | PR = "r1" |
9 | BRANCH="master" | 9 | BRANCH="master" |
10 | SRC_URI = "git://git.ti.com/keystone-rtos/common-csl-ip.git;protocol=git;branch=${BRANCH}" | 10 | SRC_URI = "git://git.ti.com/keystone-rtos/common-csl-ip.git;protocol=git;branch=${BRANCH}" |
11 | # commit ID corresponds to DEV.CSL_KEYSTONE2.02.00.00.17 | 11 | # commit ID corresponds to DEV.CSL_KEYSTONE2.02.01.00.05A |
12 | SRCREV = "f6f90144c14e1ee783c4b893b52e54830be8166e" | 12 | SRCREV = "80d18dda4a76ce1a22cf2b5156f111390d75bea4" |
13 | 13 | ||
14 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
15 | 15 | ||
16 | do_install () { | 16 | do_install () { |
17 | install -d ${D}${includedir}/ti/csl | 17 | install -d ${D}${includedir}/ti/csl |
18 | find . -name "*.h" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl | 18 | find . -name "*.h" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl |
19 | find ./src/ip/serdes_sb/V0 -name "*.c" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl | 19 | find ./src/ip/serdes_sb/V0 -name "*.c" -type f | xargs -I {} cp --parents {} ${D}${includedir}/ti/csl |
20 | } | 20 | } |
21 | |||