All of lore.kernel.org
 help / color / mirror / Atom feed
* [master/krogoth][PATCH 1/5] edma3-lld: Remove A from installed EDMA3 directory
@ 2016-10-12 17:53 Justin Sobota
  2016-10-12 17:53 ` [master/krogoth][PATCH 2/5] ti-pdk-build: Install build infrastructure files based on SoC Justin Sobota
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Justin Sobota @ 2016-10-12 17:53 UTC (permalink / raw)
  To: meta-ti

Signed-off-by: Justin Sobota <jsobota@ti.com>
---
 recipes-bsp/edma3-lld/edma3-lld.inc |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-bsp/edma3-lld/edma3-lld.inc b/recipes-bsp/edma3-lld/edma3-lld.inc
index 2853dd2..bbf5aff 100644
--- a/recipes-bsp/edma3-lld/edma3-lld.inc
+++ b/recipes-bsp/edma3-lld/edma3-lld.inc
@@ -13,5 +13,5 @@ BRANCH = "${EDMA3_LLD_GIT_BRANCH}"
 SRC_URI = "${EDMA3_LLD_GIT_URI};protocol=${EDMA3_LLD_GIT_PROTOCOL};branch=${BRANCH}"
 SRCREV = "${EDMA3_LLD_SRCREV}"
 
-PV = "2.12.01.25A"
-INC_PR = "r0"
+PV = "2.12.01.25"
+INC_PR = "r1"
-- 
1.7.10.4



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

* [master/krogoth][PATCH 2/5] ti-pdk-build: Install build infrastructure files based on SoC
  2016-10-12 17:53 [master/krogoth][PATCH 1/5] edma3-lld: Remove A from installed EDMA3 directory Justin Sobota
@ 2016-10-12 17:53 ` Justin Sobota
  2016-10-12 17:53 ` [master/krogoth][PATCH 3/5] ti-cgt6x: Upgrade to version 8.1.1 Justin Sobota
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 8+ messages in thread
From: Justin Sobota @ 2016-10-12 17:53 UTC (permalink / raw)
  To: meta-ti

Signed-off-by: Justin Sobota <jsobota@ti.com>
---
 recipes-ti/ti-pdk-build/ti-pdk-build-rtos_git.bb |   35 ++++++++++++++++------
 1 file changed, 26 insertions(+), 9 deletions(-)

diff --git a/recipes-ti/ti-pdk-build/ti-pdk-build-rtos_git.bb b/recipes-ti/ti-pdk-build/ti-pdk-build-rtos_git.bb
index 84dca37..4cff274 100644
--- a/recipes-ti/ti-pdk-build/ti-pdk-build-rtos_git.bb
+++ b/recipes-ti/ti-pdk-build/ti-pdk-build-rtos_git.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://makerules/env.mk;beginline=1;endline=31;md5=10503e8de
 require recipes-ti/includes/ti-paths.inc
 
 PV = "01.00.00.02B"
-PR = "r0"
+PR = "r1"
 
 PDK_BUILD_GIT_URI = "git://git.ti.com/keystone-rtos/processor-pdk-build.git"
 PDK_BUILD_GIT_PROTOCOL = "git"
@@ -32,30 +32,42 @@ do_compile() {
 do_install() {
     install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build
     install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
-    install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am335x
-    install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am571x
-    install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am572x
     
     install -m 0755 Rules.make ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build
     install -m 0755 comp_top.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build
 
     sed -i -e "s|c\:/ti/ccsv5/utils/cygwin|\$(XDC_INSTALL_PATH)/bin|g" \
         ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/Rules.make
-
+    
     install -m 0755 makerules/build_config.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
     install -m 0755 makerules/common.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
     install -m 0755 makerules/component.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
     install -m 0755 makerules/env.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
     install -m 0755 makerules/platform.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
-    install -m 0755 makerules/rules_66.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
-    install -m 0755 makerules/rules_a15.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
+}
+
+do_install_append_ti33x() {
+    install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am335x
+
     install -m 0755 makerules/rules_a8.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
     install -m 0755 makerules/rules_a8_extend.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
+
+    install -m 0755 am335x/config_am335x_a8.bld ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am335x
+}
+
+do_install_append_ti43x() {
     install -m 0755 makerules/rules_a9.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
+}
+
+do_install_append_omap-a15() {
+    install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am571x
+    install -d ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am572x
+
+    install -m 0755 makerules/rules_66.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
+    install -m 0755 makerules/rules_a15.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
     install -m 0755 makerules/rules_m4.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
     install -m 0755 makerules/rules_ti_cgt_arm.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
-    install -m 0755 am335x/config_am335x_a8.bld ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am335x
-    install -m 0755 am335x/mem_segment_definition_1024mb_bios.xs ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am335x
+    
     install -m 0755 am571x/config_am571x.bld ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am571x
     install -m 0755 am571x/config_am571x_c66.bld ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am571x
     install -m 0755 am571x/config_am571x_a15.bld ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am571x
@@ -65,5 +77,10 @@ do_install() {
     install -m 0755 am572x/config_am572x_a15.bld ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am572x
     install -m 0755 am572x/mem_segment_definition_1024mb_bios.xs ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/am572x
 }
+    
+do_install_append_keystone() {
+    install -m 0755 makerules/rules_66.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
+    install -m 0755 makerules/rules_a15.mk ${D}${PDK_INSTALL_DIR_RECIPE}/packages/ti/build/makerules
+}
 
 FILES_${PN} += "${PDK_INSTALL_DIR_RECIPE}/packages/*"
-- 
1.7.10.4



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

* [master/krogoth][PATCH 3/5] ti-cgt6x: Upgrade to version 8.1.1
  2016-10-12 17:53 [master/krogoth][PATCH 1/5] edma3-lld: Remove A from installed EDMA3 directory Justin Sobota
  2016-10-12 17:53 ` [master/krogoth][PATCH 2/5] ti-pdk-build: Install build infrastructure files based on SoC Justin Sobota
@ 2016-10-12 17:53 ` Justin Sobota
  2016-10-20 15:27   ` Sobota, Justin
  2016-10-12 17:53 ` [master/krogoth][PATCH 4/5] ti-ccsv6-native: Upgrade to version 6.2.0.00050 Justin Sobota
  2016-10-12 17:53 ` [master/krogoth][PATCH 5/5] ti-xdctools: Upgrade to version 3.32.1.22 Justin Sobota
  3 siblings, 1 reply; 8+ messages in thread
From: Justin Sobota @ 2016-10-12 17:53 UTC (permalink / raw)
  To: meta-ti

Signed-off-by: Justin Sobota <jsobota@ti.com>
---
 recipes-ti/devtools/{ti-cgt6x_8.1.0.bb => ti-cgt6x_8.1.1.bb} |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
 rename recipes-ti/devtools/{ti-cgt6x_8.1.0.bb => ti-cgt6x_8.1.1.bb} (90%)

diff --git a/recipes-ti/devtools/ti-cgt6x_8.1.0.bb b/recipes-ti/devtools/ti-cgt6x_8.1.1.bb
similarity index 90%
rename from recipes-ti/devtools/ti-cgt6x_8.1.0.bb
rename to recipes-ti/devtools/ti-cgt6x_8.1.1.bb
index 79b562a..bc40762 100644
--- a/recipes-ti/devtools/ti-cgt6x_8.1.0.bb
+++ b/recipes-ti/devtools/ti-cgt6x_8.1.1.bb
@@ -5,7 +5,7 @@ LICENSE = "(TI-TSPA & Thai-Open-Source-Software-Center) & BSD-3-Clause & BSL-1.0
 LIC_FILES_CHKSUM = "file://ti-cgt-c6000_${PV}/C6000_8.1.x_CodeGenerationTools_Manifest.htm;md5=458bf5fa55a865372515aeba0dfa9b72"
 LIC_FILES_CHKSUM_class-target = "file://usr/share/doc/ti/cgt-c6x/C6000_8.1.x_CodeGenerationTools_Manifest.htm;md5=458bf5fa55a865372515aeba0dfa9b72"
 
-PE = "1"
+PE = "0"
 
 require recipes-ti/includes/ti-unpack.inc
 
@@ -37,11 +37,11 @@ BINFILE_NAME_class-target = "cgt6x_arm_installer"
 
 SRC_URI = "http://software-dl.ti.com/codegen/esd/cgt_public_sw/C6000/${PV}/${BINFILE};name=${BINFILE_NAME}"
 
-SRC_URI[cgt6x_x86_installer.md5sum] = "43d9a9a6307c7ba0933050e4ba1b0e56"
-SRC_URI[cgt6x_x86_installer.sha256sum] = "0ce82e2d338b8aab3c3d1eb52217d025bd07952ac40c8f5a9319652d0c8882ad"
+SRC_URI[cgt6x_x86_installer.md5sum] = "ef39176c85615eba27c5334cc18e9065"
+SRC_URI[cgt6x_x86_installer.sha256sum] = "28dc93aaf4f29b86c212492d8e414df4dd2a7d0b48053b5c557d681aa9ae21b6"
 
-SRC_URI[cgt6x_arm_installer.md5sum] = "52433a9ffdc6fbbb539a3c8e3e1c9ec0"
-SRC_URI[cgt6x_arm_installer.sha256sum] = "286a96e3082086c37129cbbc6c3665c76028b68975d02fc30375a6aaba00532a"
+SRC_URI[cgt6x_arm_installer.md5sum] = "536f15652c4222d67c17fc6caa7ae807"
+SRC_URI[cgt6x_arm_installer.sha256sum] = "dd33743b61daeef0a22ede2086af7e60d0ea9f45c1b667caf2d1ae8d260a099a"
 
 do_install() {
     install -d ${D}${bindir}
-- 
1.7.10.4



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

* [master/krogoth][PATCH 4/5] ti-ccsv6-native: Upgrade to version 6.2.0.00050
  2016-10-12 17:53 [master/krogoth][PATCH 1/5] edma3-lld: Remove A from installed EDMA3 directory Justin Sobota
  2016-10-12 17:53 ` [master/krogoth][PATCH 2/5] ti-pdk-build: Install build infrastructure files based on SoC Justin Sobota
  2016-10-12 17:53 ` [master/krogoth][PATCH 3/5] ti-cgt6x: Upgrade to version 8.1.1 Justin Sobota
@ 2016-10-12 17:53 ` Justin Sobota
  2016-10-20 15:26   ` Sobota, Justin
  2016-10-12 17:53 ` [master/krogoth][PATCH 5/5] ti-xdctools: Upgrade to version 3.32.1.22 Justin Sobota
  3 siblings, 1 reply; 8+ messages in thread
From: Justin Sobota @ 2016-10-12 17:53 UTC (permalink / raw)
  To: meta-ti

Signed-off-by: Justin Sobota <jsobota@ti.com>
---
 ...ive_6.1.3.00034.bb => ti-ccsv6-native_6.2.0.00050.bb} |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
 rename recipes-ti/devtools/{ti-ccsv6-native_6.1.3.00034.bb => ti-ccsv6-native_6.2.0.00050.bb} (72%)

diff --git a/recipes-ti/devtools/ti-ccsv6-native_6.1.3.00034.bb b/recipes-ti/devtools/ti-ccsv6-native_6.2.0.00050.bb
similarity index 72%
rename from recipes-ti/devtools/ti-ccsv6-native_6.1.3.00034.bb
rename to recipes-ti/devtools/ti-ccsv6-native_6.2.0.00050.bb
index 334c7df..4e5192c 100644
--- a/recipes-ti/devtools/ti-ccsv6-native_6.1.3.00034.bb
+++ b/recipes-ti/devtools/ti-ccsv6-native_6.2.0.00050.bb
@@ -10,25 +10,25 @@ require recipes-ti/includes/ti-unpack.inc
 require recipes-ti/includes/ti-staging.inc
 require recipes-ti/includes/ti-paths.inc
 
-TI_CGT_ARM_VERSION = "15.12.1.LTS"
+TI_CGT_ARM_VERSION = "15.12.3.LTS"
 
-SRC_URI = "http://install.source.dir.local/CCS${PV}_linux.tar.gz;name=ccsv6"
+SRC_URI = "http://install.source.dir.local/CCS${PV}_linux-x64.tar.gz;name=ccsv6"
 
-S = "${WORKDIR}/CCS${PV}_linux"
+S = "${WORKDIR}/CCS${PV}_linux-x64"
 
-BINFILE = "CCS${PV}_linux/ccs_setup_${PV}.bin"
+BINFILE = "CCS${PV}_linux-x64/ccs_setup_linux64_${PV}.bin"
 TI_BIN_UNPK_ARGS = "--mode unattended --prefix ${WORKDIR}"
 TI_BIN_UNPK_CMDS = ""
 
-SRC_URI[ccsv6.md5sum] = "ceaa5023c1a4b51bc637d3de1a15786b"
-SRC_URI[ccsv6.sha256sum] = "fb3205a21942da09684c871371513707c841c4fd8d88a62f6a7865b0a86cc492"
+SRC_URI[ccsv6.md5sum] = "652185ae9ef7c60a92d5fc42e4869bf2"
+SRC_URI[ccsv6.sha256sum] = "cb31dad800f2740bf5a0ce8c7e1d172666c70d71e18609c8951db1e37b2cf48e"
 
 do_install() {
     install -d ${D}${CCSV6_INSTALL_DIR_RECIPE}
     cp -r ${WORKDIR}/ccsv6/. ${D}${CCSV6_INSTALL_DIR_RECIPE}
 
     install -d ${D}${M4_TOOLCHAIN_INSTALL_DIR_RECIPE}
-    cp -r ${WORKDIR}/ccsv6/tools/compiler/ti-cgt-arm_${TI_CGT_ARM_VERSION}/. \
+    cp -r ${WORKDIR}/ccsv6/tools/compiler/arm_${TI_CGT_ARM_VERSION}/. \
           ${D}${M4_TOOLCHAIN_INSTALL_DIR_RECIPE}
 }
 
-- 
1.7.10.4



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

* [master/krogoth][PATCH 5/5] ti-xdctools: Upgrade to version 3.32.1.22
  2016-10-12 17:53 [master/krogoth][PATCH 1/5] edma3-lld: Remove A from installed EDMA3 directory Justin Sobota
                   ` (2 preceding siblings ...)
  2016-10-12 17:53 ` [master/krogoth][PATCH 4/5] ti-ccsv6-native: Upgrade to version 6.2.0.00050 Justin Sobota
@ 2016-10-12 17:53 ` Justin Sobota
  2016-10-20 15:26   ` Sobota, Justin
  3 siblings, 1 reply; 8+ messages in thread
From: Justin Sobota @ 2016-10-12 17:53 UTC (permalink / raw)
  To: meta-ti

Signed-off-by: Justin Sobota <jsobota@ti.com>
---
 .../{ti-xdctools_3.32.00.06.bb => ti-xdctools_3.32.01.22.bb}     |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename recipes-ti/devtools/{ti-xdctools_3.32.00.06.bb => ti-xdctools_3.32.01.22.bb} (51%)

diff --git a/recipes-ti/devtools/ti-xdctools_3.32.00.06.bb b/recipes-ti/devtools/ti-xdctools_3.32.01.22.bb
similarity index 51%
rename from recipes-ti/devtools/ti-xdctools_3.32.00.06.bb
rename to recipes-ti/devtools/ti-xdctools_3.32.01.22.bb
index 19bbe5d..5f379c1 100644
--- a/recipes-ti/devtools/ti-xdctools_3.32.00.06.bb
+++ b/recipes-ti/devtools/ti-xdctools_3.32.01.22.bb
@@ -1,9 +1,9 @@
 require recipes-ti/devtools/ti-xdctools-core.inc
 
-PV = "3_32_00_06"
+PV = "3_32_01_22"
 PR = "r0"
 
 LIC_FILES_CHKSUM = "file://docs/license/xdc/shelf/package.html;beginline=1;endline=140;md5=1796f68c3d32d408415f5612f1f60652"
 
-SRC_URI[xdczip.md5sum] = "93127f4c2f35d94b6c8e5a52b79c38ae"
-SRC_URI[xdczip.sha256sum] = "d6f38a7f846ae4b1478554d75fc5f72cf677a1e2f348e214a725d1e849bd39c7"
+SRC_URI[xdczip.md5sum] = "ddae5b765ca62783c1e804c75c463c38"
+SRC_URI[xdczip.sha256sum] = "b1c6620ef0b8eac45ef6a587f93b3238bdcf3b02dfd7e4b40d872a45c02c5cdc"
-- 
1.7.10.4



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

* Re: [master/krogoth][PATCH 5/5] ti-xdctools: Upgrade to version 3.32.1.22
  2016-10-12 17:53 ` [master/krogoth][PATCH 5/5] ti-xdctools: Upgrade to version 3.32.1.22 Justin Sobota
@ 2016-10-20 15:26   ` Sobota, Justin
  0 siblings, 0 replies; 8+ messages in thread
From: Sobota, Justin @ 2016-10-20 15:26 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-ti

Denys,

An issue was found after upgrading to this component.  This patch should not be applied.

Justin

-----Original Message-----
From: Sobota, Justin 
Sent: Wednesday, October 12, 2016 1:54 PM
To: meta-ti@yoctoproject.org
Cc: Sobota, Justin
Subject: [master/krogoth][PATCH 5/5] ti-xdctools: Upgrade to version 3.32.1.22

Signed-off-by: Justin Sobota <jsobota@ti.com>
---
 .../{ti-xdctools_3.32.00.06.bb => ti-xdctools_3.32.01.22.bb}     |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)  rename recipes-ti/devtools/{ti-xdctools_3.32.00.06.bb => ti-xdctools_3.32.01.22.bb} (51%)

diff --git a/recipes-ti/devtools/ti-xdctools_3.32.00.06.bb b/recipes-ti/devtools/ti-xdctools_3.32.01.22.bb
similarity index 51%
rename from recipes-ti/devtools/ti-xdctools_3.32.00.06.bb
rename to recipes-ti/devtools/ti-xdctools_3.32.01.22.bb
index 19bbe5d..5f379c1 100644
--- a/recipes-ti/devtools/ti-xdctools_3.32.00.06.bb
+++ b/recipes-ti/devtools/ti-xdctools_3.32.01.22.bb
@@ -1,9 +1,9 @@
 require recipes-ti/devtools/ti-xdctools-core.inc
 
-PV = "3_32_00_06"
+PV = "3_32_01_22"
 PR = "r0"
 
 LIC_FILES_CHKSUM = "file://docs/license/xdc/shelf/package.html;beginline=1;endline=140;md5=1796f68c3d32d408415f5612f1f60652"
 
-SRC_URI[xdczip.md5sum] = "93127f4c2f35d94b6c8e5a52b79c38ae"
-SRC_URI[xdczip.sha256sum] = "d6f38a7f846ae4b1478554d75fc5f72cf677a1e2f348e214a725d1e849bd39c7"
+SRC_URI[xdczip.md5sum] = "ddae5b765ca62783c1e804c75c463c38"
+SRC_URI[xdczip.sha256sum] = "b1c6620ef0b8eac45ef6a587f93b3238bdcf3b02dfd7e4b40d872a45c02c5cdc"
--
1.7.10.4



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

* Re: [master/krogoth][PATCH 4/5] ti-ccsv6-native: Upgrade to version 6.2.0.00050
  2016-10-12 17:53 ` [master/krogoth][PATCH 4/5] ti-ccsv6-native: Upgrade to version 6.2.0.00050 Justin Sobota
@ 2016-10-20 15:26   ` Sobota, Justin
  0 siblings, 0 replies; 8+ messages in thread
From: Sobota, Justin @ 2016-10-20 15:26 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-ti

Denys,

An issue was found after upgrading to this component.  This patch should not be applied.

Justin

-----Original Message-----
From: Sobota, Justin 
Sent: Wednesday, October 12, 2016 1:54 PM
To: meta-ti@yoctoproject.org
Cc: Sobota, Justin
Subject: [master/krogoth][PATCH 4/5] ti-ccsv6-native: Upgrade to version 6.2.0.00050

Signed-off-by: Justin Sobota <jsobota@ti.com>
---
 ...ive_6.1.3.00034.bb => ti-ccsv6-native_6.2.0.00050.bb} |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)  rename recipes-ti/devtools/{ti-ccsv6-native_6.1.3.00034.bb => ti-ccsv6-native_6.2.0.00050.bb} (72%)

diff --git a/recipes-ti/devtools/ti-ccsv6-native_6.1.3.00034.bb b/recipes-ti/devtools/ti-ccsv6-native_6.2.0.00050.bb
similarity index 72%
rename from recipes-ti/devtools/ti-ccsv6-native_6.1.3.00034.bb
rename to recipes-ti/devtools/ti-ccsv6-native_6.2.0.00050.bb
index 334c7df..4e5192c 100644
--- a/recipes-ti/devtools/ti-ccsv6-native_6.1.3.00034.bb
+++ b/recipes-ti/devtools/ti-ccsv6-native_6.2.0.00050.bb
@@ -10,25 +10,25 @@ require recipes-ti/includes/ti-unpack.inc  require recipes-ti/includes/ti-staging.inc
 require recipes-ti/includes/ti-paths.inc
 
-TI_CGT_ARM_VERSION = "15.12.1.LTS"
+TI_CGT_ARM_VERSION = "15.12.3.LTS"
 
-SRC_URI = "http://install.source.dir.local/CCS${PV}_linux.tar.gz;name=ccsv6"
+SRC_URI = "http://install.source.dir.local/CCS${PV}_linux-x64.tar.gz;name=ccsv6"
 
-S = "${WORKDIR}/CCS${PV}_linux"
+S = "${WORKDIR}/CCS${PV}_linux-x64"
 
-BINFILE = "CCS${PV}_linux/ccs_setup_${PV}.bin"
+BINFILE = "CCS${PV}_linux-x64/ccs_setup_linux64_${PV}.bin"
 TI_BIN_UNPK_ARGS = "--mode unattended --prefix ${WORKDIR}"
 TI_BIN_UNPK_CMDS = ""
 
-SRC_URI[ccsv6.md5sum] = "ceaa5023c1a4b51bc637d3de1a15786b"
-SRC_URI[ccsv6.sha256sum] = "fb3205a21942da09684c871371513707c841c4fd8d88a62f6a7865b0a86cc492"
+SRC_URI[ccsv6.md5sum] = "652185ae9ef7c60a92d5fc42e4869bf2"
+SRC_URI[ccsv6.sha256sum] = "cb31dad800f2740bf5a0ce8c7e1d172666c70d71e18609c8951db1e37b2cf48e"
 
 do_install() {
     install -d ${D}${CCSV6_INSTALL_DIR_RECIPE}
     cp -r ${WORKDIR}/ccsv6/. ${D}${CCSV6_INSTALL_DIR_RECIPE}
 
     install -d ${D}${M4_TOOLCHAIN_INSTALL_DIR_RECIPE}
-    cp -r ${WORKDIR}/ccsv6/tools/compiler/ti-cgt-arm_${TI_CGT_ARM_VERSION}/. \
+    cp -r ${WORKDIR}/ccsv6/tools/compiler/arm_${TI_CGT_ARM_VERSION}/. \
           ${D}${M4_TOOLCHAIN_INSTALL_DIR_RECIPE}
 }
 
--
1.7.10.4



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

* Re: [master/krogoth][PATCH 3/5] ti-cgt6x: Upgrade to version 8.1.1
  2016-10-12 17:53 ` [master/krogoth][PATCH 3/5] ti-cgt6x: Upgrade to version 8.1.1 Justin Sobota
@ 2016-10-20 15:27   ` Sobota, Justin
  0 siblings, 0 replies; 8+ messages in thread
From: Sobota, Justin @ 2016-10-20 15:27 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-ti

Denys,

An issue was found after upgrading to this component.  This patch should not be applied.

Justin

-----Original Message-----
From: Sobota, Justin 
Sent: Wednesday, October 12, 2016 1:54 PM
To: meta-ti@yoctoproject.org
Cc: Sobota, Justin
Subject: [master/krogoth][PATCH 3/5] ti-cgt6x: Upgrade to version 8.1.1

Signed-off-by: Justin Sobota <jsobota@ti.com>
---
 recipes-ti/devtools/{ti-cgt6x_8.1.0.bb => ti-cgt6x_8.1.1.bb} |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)  rename recipes-ti/devtools/{ti-cgt6x_8.1.0.bb => ti-cgt6x_8.1.1.bb} (90%)

diff --git a/recipes-ti/devtools/ti-cgt6x_8.1.0.bb b/recipes-ti/devtools/ti-cgt6x_8.1.1.bb
similarity index 90%
rename from recipes-ti/devtools/ti-cgt6x_8.1.0.bb
rename to recipes-ti/devtools/ti-cgt6x_8.1.1.bb
index 79b562a..bc40762 100644
--- a/recipes-ti/devtools/ti-cgt6x_8.1.0.bb
+++ b/recipes-ti/devtools/ti-cgt6x_8.1.1.bb
@@ -5,7 +5,7 @@ LICENSE = "(TI-TSPA & Thai-Open-Source-Software-Center) & BSD-3-Clause & BSL-1.0  LIC_FILES_CHKSUM = "file://ti-cgt-c6000_${PV}/C6000_8.1.x_CodeGenerationTools_Manifest.htm;md5=458bf5fa55a865372515aeba0dfa9b72"
 LIC_FILES_CHKSUM_class-target = "file://usr/share/doc/ti/cgt-c6x/C6000_8.1.x_CodeGenerationTools_Manifest.htm;md5=458bf5fa55a865372515aeba0dfa9b72"
 
-PE = "1"
+PE = "0"
 
 require recipes-ti/includes/ti-unpack.inc
 
@@ -37,11 +37,11 @@ BINFILE_NAME_class-target = "cgt6x_arm_installer"
 
 SRC_URI = "http://software-dl.ti.com/codegen/esd/cgt_public_sw/C6000/${PV}/${BINFILE};name=${BINFILE_NAME}"
 
-SRC_URI[cgt6x_x86_installer.md5sum] = "43d9a9a6307c7ba0933050e4ba1b0e56"
-SRC_URI[cgt6x_x86_installer.sha256sum] = "0ce82e2d338b8aab3c3d1eb52217d025bd07952ac40c8f5a9319652d0c8882ad"
+SRC_URI[cgt6x_x86_installer.md5sum] = "ef39176c85615eba27c5334cc18e9065"
+SRC_URI[cgt6x_x86_installer.sha256sum] = "28dc93aaf4f29b86c212492d8e414df4dd2a7d0b48053b5c557d681aa9ae21b6"
 
-SRC_URI[cgt6x_arm_installer.md5sum] = "52433a9ffdc6fbbb539a3c8e3e1c9ec0"
-SRC_URI[cgt6x_arm_installer.sha256sum] = "286a96e3082086c37129cbbc6c3665c76028b68975d02fc30375a6aaba00532a"
+SRC_URI[cgt6x_arm_installer.md5sum] = "536f15652c4222d67c17fc6caa7ae807"
+SRC_URI[cgt6x_arm_installer.sha256sum] = "dd33743b61daeef0a22ede2086af7e60d0ea9f45c1b667caf2d1ae8d260a099a"
 
 do_install() {
     install -d ${D}${bindir}
--
1.7.10.4



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

end of thread, other threads:[~2016-10-20 15:27 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-12 17:53 [master/krogoth][PATCH 1/5] edma3-lld: Remove A from installed EDMA3 directory Justin Sobota
2016-10-12 17:53 ` [master/krogoth][PATCH 2/5] ti-pdk-build: Install build infrastructure files based on SoC Justin Sobota
2016-10-12 17:53 ` [master/krogoth][PATCH 3/5] ti-cgt6x: Upgrade to version 8.1.1 Justin Sobota
2016-10-20 15:27   ` Sobota, Justin
2016-10-12 17:53 ` [master/krogoth][PATCH 4/5] ti-ccsv6-native: Upgrade to version 6.2.0.00050 Justin Sobota
2016-10-20 15:26   ` Sobota, Justin
2016-10-12 17:53 ` [master/krogoth][PATCH 5/5] ti-xdctools: Upgrade to version 3.32.1.22 Justin Sobota
2016-10-20 15:26   ` Sobota, Justin

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.