aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-ti/devtools
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-ti/devtools')
-rw-r--r--recipes-ti/devtools/gcc-aarch64-none-elf_9.2-2019.12.bb38
-rw-r--r--recipes-ti/devtools/gcc-arm-none-eabi_9-2019-q4-major.bb39
-rw-r--r--recipes-ti/devtools/gcc-linaro.inc10
-rw-r--r--recipes-ti/devtools/ti-cg-xml_2.61.00.bb40
-rw-r--r--recipes-ti/devtools/ti-cgt-arm_20.2.0.bb42
-rw-r--r--recipes-ti/devtools/ti-cgt-pru_2.3.2.bb49
-rw-r--r--recipes-ti/devtools/ti-cgt470.inc24
-rw-r--r--recipes-ti/devtools/ti-cgt470_4.6.6.bb8
-rw-r--r--recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb46
-rw-r--r--recipes-ti/devtools/ti-cgt6x_8.3.2.bb107
-rw-r--r--recipes-ti/devtools/ti-cgt7x_1.3.0.bb45
-rw-r--r--recipes-ti/devtools/ti-xdctools-common.inc70
-rw-r--r--recipes-ti/devtools/ti-xdctools-core.inc5
-rw-r--r--recipes-ti/devtools/ti-xdctools.inc10
-rw-r--r--recipes-ti/devtools/ti-xdctools_3.61.00.16.bb7
15 files changed, 0 insertions, 540 deletions
diff --git a/recipes-ti/devtools/gcc-aarch64-none-elf_9.2-2019.12.bb b/recipes-ti/devtools/gcc-aarch64-none-elf_9.2-2019.12.bb
deleted file mode 100644
index 2ec0f9cf..00000000
--- a/recipes-ti/devtools/gcc-aarch64-none-elf_9.2-2019.12.bb
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright (C) 2020 Texas Instruments Inc.
-# Released under the MIT license (see COPYING.MIT for the terms)
-
-SUMMARY = "Baremetal GCC for Aarch64 processors"
-LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
-
-LIC_FILES_CHKSUM = "file://share/doc/gcc/GNU-Free-Documentation-License.html;md5=cc1e9a49a59ce7e6ae5ef37cd16eca0c"
-
-PROVIDES = "virtual/aarch64-none-elf-gcc"
-
-SRC_URI = "https://developer.arm.com/-/media/Files/downloads/gnu-a/9.2-2019.12/binrel/gcc-arm-${PV}-x86_64-aarch64-none-elf.tar.xz"
-
-SRC_URI[sha256sum] = "36d2cbe7c2984f2c20f562ac2f3ba524c59151adfa8ee10f1326c88de337b6d1"
-
-S = "${WORKDIR}/gcc-arm-${PV}-x86_64-aarch64-none-elf"
-
-COMPATIBLE_HOST = "x86_64.*-linux"
-
-do_install() {
- install -d ${D}${datadir}/aarch64-none-elf/
- cp -r ${S}/. ${D}${datadir}/aarch64-none-elf/
-
- install -d ${D}${bindir}
- # Symlink all executables into bindir
- for f in ${D}${datadir}/aarch64-none-elf/bin/aarch64-none-elf-*; do
- lnr $f ${D}${bindir}/$(basename $f)
- done
-}
-
-FILES_${PN} = "${datadir} ${bindir}"
-
-INSANE_SKIP_${PN} = "already-stripped libdir staticdev file-rdeps"
-
-INHIBIT_SYSROOT_STRIP = "1"
-INHIBIT_PACKAGE_STRIP = "1"
-INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/recipes-ti/devtools/gcc-arm-none-eabi_9-2019-q4-major.bb b/recipes-ti/devtools/gcc-arm-none-eabi_9-2019-q4-major.bb
deleted file mode 100644
index 84f6dbab..00000000
--- a/recipes-ti/devtools/gcc-arm-none-eabi_9-2019-q4-major.bb
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright (C) 2019 Garmin Ltd. or its subsidiaries
-# Released under the MIT license (see COPYING.MIT for the terms)
-
-SUMMARY = "Baremetal GCC for ARM-R and ARM-M processors"
-LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
-
-LIC_FILES_CHKSUM = "file://share/doc/gcc-arm-none-eabi/license.txt;md5=c18349634b740b7b95f2c2159af888f5"
-
-PROVIDES = "virtual/arm-none-eabi-gcc"
-
-SRC_URI = "https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/${BPN}-${PV}-x86_64-linux.tar.bz2"
-
-SRC_URI[md5sum] = "fe0029de4f4ec43cf7008944e34ff8cc"
-SRC_URI[sha256sum] = "bcd840f839d5bf49279638e9f67890b2ef3a7c9c7a9b25271e83ec4ff41d177a"
-
-S = "${WORKDIR}/${BPN}-${PV}"
-
-COMPATIBLE_HOST = "x86_64.*-linux"
-
-do_install() {
- install -d ${D}${datadir}/arm-none-eabi/
- cp -r ${S}/. ${D}${datadir}/arm-none-eabi/
-
- install -d ${D}${bindir}
- # Symlink all executables into bindir
- for f in ${D}${datadir}/arm-none-eabi/bin/arm-none-eabi-*; do
- lnr $f ${D}${bindir}/$(basename $f)
- done
-}
-
-FILES_${PN} = "${datadir} ${bindir}"
-
-INSANE_SKIP_${PN} = "already-stripped libdir staticdev file-rdeps"
-
-INHIBIT_SYSROOT_STRIP = "1"
-INHIBIT_PACKAGE_STRIP = "1"
-INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/recipes-ti/devtools/gcc-linaro.inc b/recipes-ti/devtools/gcc-linaro.inc
deleted file mode 100644
index 19f5a2cf..00000000
--- a/recipes-ti/devtools/gcc-linaro.inc
+++ /dev/null
@@ -1,10 +0,0 @@
-DESCRIPTION = "Linaro GCC for ARM"
-HOMEPAGE = "https://launchpad.net/gcc-arm-embedded"
-SECTION = "devel"
-LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
-LIC_FILES_CHKSUM = "file://share/doc/gcc/GNU-Free-Documentation-License.html;md5=${LIC_CHKSUM}"
-
-PV = "7.2.1"
-PR = "r0"
-
-GCC_ARM_YEAR = "2017.11"
diff --git a/recipes-ti/devtools/ti-cg-xml_2.61.00.bb b/recipes-ti/devtools/ti-cg-xml_2.61.00.bb
deleted file mode 100644
index e618af5a..00000000
--- a/recipes-ti/devtools/ti-cg-xml_2.61.00.bb
+++ /dev/null
@@ -1,40 +0,0 @@
-DESCRIPTION = "TI CG_XML"
-HOMEPAGE = "http://software-dl.ti.com/ccs/non-esd/releases/other/applications_packages/cg_xml/index.htm"
-SECTION = "devel"
-LICENSE = "BSD"
-
-require recipes-ti/includes/ti-paths.inc
-require recipes-ti/includes/ti-staging.inc
-require recipes-ti/includes/ti-unpack.inc
-
-PV = "2.61.00"
-PE = "1"
-S = "${WORKDIR}/cg_xml_${PV}"
-
-SRC_URI = "\
- http://software-dl.ti.com/ccs/non-esd/releases/other/applications_packages/cg_xml/cg_xml_v${@'${PV}'.replace('.','_')}/cgxml-${PV}-linux-installer.run;name=cgxmlbin_linux \
-"
-LIC_FILES_CHKSUM = "file://cg_xml_${PV}_Manifest.pdf;md5=fc02a39748ba50373f32b2f4a5e3a684"
-
-SRC_URI[cgxmlbin_linux.md5sum] = "6ce60caa97bbf15158d806fb062fadff"
-SRC_URI[cgxmlbin_linux.sha256sum] = "da77cb10bd3d5de89e27e4ce8f4408a2e50775c8980225f9a828ddc242bb81f9"
-
-BINFILE="cgxml-${PV}-linux-installer.run"
-TI_BIN_UNPK_CMDS=""
-TI_BIN_UNPK_ARGS="--prefix ${S} --mode unattended"
-
-do_install() {
- CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
- install -d ${D}${CG_XML_INSTALL_DIR_RECIPE}
- cp ${CP_ARGS} ${S}/* ${D}${CG_XML_INSTALL_DIR_RECIPE}
-}
-
-FILES_${PN} += "${CG_XML_INSTALL_DIR_RECIPE}"
-
-INSANE_SKIP_${PN} = "arch ldflags file-rdeps"
-
-INHIBIT_PACKAGE_STRIP = "1"
-INHIBIT_SYSROOT_STRIP = "1"
-INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/recipes-ti/devtools/ti-cgt-arm_20.2.0.bb b/recipes-ti/devtools/ti-cgt-arm_20.2.0.bb
deleted file mode 100644
index 05b52e64..00000000
--- a/recipes-ti/devtools/ti-cgt-arm_20.2.0.bb
+++ /dev/null
@@ -1,42 +0,0 @@
-SUMMARY = "TI ARM Code Generation Tools"
-HOMEPAGE = "https://www-a.ti.com/downloads/sds_support/TICodegenerationTools/download.htm"
-LICENSE = "(TI-TSPA & Thai-Open-Source-Software-Center) & BSD-3-Clause & BSL-1.0 & Patrick-Powell & AFL-3.0 & MIT & BSD-2-Clause & PD & BSD-4-Clause"
-
-LIC_FILES_CHKSUM = "file://ti-cgt-arm_${PV}.LTS/README.html;md5=9ed980fae072af522545a0e5f297bca0"
-
-require recipes-ti/includes/ti-unpack.inc
-require recipes-ti/includes/ti-staging.inc
-require recipes-ti/includes/ti-paths.inc
-
-S = "${WORKDIR}/ti-cgt-arm-${PV}"
-
-PR = "r0"
-
-SRC_URI = "http://software-dl.ti.com/codegen/esd/cgt_public_sw/TMS470/${PV}.LTS/${BINFILE};name=${BINFILE_NAME}"
-
-BINFILE = "ti_cgt_tms470_${PV}.LTS_linux_installer_x86.bin"
-TI_BIN_UNPK_ARGS = "--prefix ${S}"
-TI_BIN_UNPK_CMDS = ""
-
-# only x86_64 is supported
-COMPATIBLE_HOST = "x86_64.*-linux"
-COMPATIBLE_HOST_class-target = "null"
-
-do_install() {
- install -d ${D}${M4_TOOLCHAIN_INSTALL_DIR_RECIPE}
- cp -r ${S}/ti-cgt-arm*/. ${D}${M4_TOOLCHAIN_INSTALL_DIR_RECIPE}
-}
-
-SRC_URI[cgt_arm_installer.sha256sum] = "e27b1ebae58085b1587af3016bf201b54b6ace99e9e7165c1e4a042afe4b55eb"
-
-BINFILE_NAME = "cgt_arm_installer"
-
-FILES_${PN} += "${M4_TOOLCHAIN_INSTALL_DIR_RECIPE}"
-
-INHIBIT_PACKAGE_STRIP = "1"
-INHIBIT_SYSROOT_STRIP = "1"
-INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
-
-INSANE_SKIP_${PN} += "arch staticdev file-rdeps"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/recipes-ti/devtools/ti-cgt-pru_2.3.2.bb b/recipes-ti/devtools/ti-cgt-pru_2.3.2.bb
deleted file mode 100644
index ed10e272..00000000
--- a/recipes-ti/devtools/ti-cgt-pru_2.3.2.bb
+++ /dev/null
@@ -1,49 +0,0 @@
-DESCRIPTION = "TI PRU Code Generation Tools"
-HOMEPAGE = "https://www-a.ti.com/downloads/sds_support/TICodegenerationTools/download.htm"
-LICENSE = "(TI-TSPA & Thai-Open-Source-Software-Center) & BSD-3-Clause & BSL-1.0 & Hewlett-Packard & AFL-3.0 & MIT & BSD-2-Clause & PD"
-
-LIC_FILES_CHKSUM = "file://ti-cgt-pru_${PV}/PRU_Code_Generation_Tools_2.3.x_manifest.html;md5=e22f9d8240f7cca0c0aa5242d9ffa5bc"
-LIC_FILES_CHKSUM_class-target = "file://usr/share/doc/ti/cgt-pru/PRU_Code_Generation_Tools_2.3.x_manifest.html;md5=e22f9d8240f7cca0c0aa5242d9ffa5bc"
-
-require recipes-ti/includes/ti-paths.inc
-require recipes-ti/includes/ti-unpack.inc
-
-BINFILE = "ti_cgt_pru_${PV}_linux_installer_x86.bin"
-BINFILE_NAME = "cgt-pru-x86"
-TI_BIN_UNPK_ARGS = "--prefix ${S}"
-TI_BIN_UNPK_CMDS = ""
-
-BINFILE_class-target = "ti_cgt_pru_${PV}_armlinuxa8hf_busybox_installer.sh"
-BINFILE_NAME_class-target = "cgt-pru-arm"
-
-SRC_URI = "http://software-dl.ti.com/codegen/esd/cgt_public_sw/PRU/${PV}/${BINFILE};name=${BINFILE_NAME}"
-
-SRC_URI[cgt-pru-x86.md5sum] = "270a0ecca383f66cad3a0e2a738c6ab0"
-SRC_URI[cgt-pru-x86.sha256sum] = "af1178a059d46d67d5672df053dd2fbebb0b89a513b17b8739dbe915b4a5d71a"
-
-SRC_URI[cgt-pru-arm.md5sum] = "fbf10083af1b0e5d69b018126603bb58"
-SRC_URI[cgt-pru-arm.sha256sum] = "75ac84775a5624ea7e4fad4efc1acb7e869c79160550d48ba780068a3dce879c"
-
-do_install() {
- install -d ${D}${TI_CGT_PRU_INSTALL_DIR_RECIPE}
- cp -r ${S}/ti-cgt-pru_${PV}/. \
- ${D}${TI_CGT_PRU_INSTALL_DIR_RECIPE}/
-}
-
-do_install_class-target() {
- ${WORKDIR}/${BINFILE} --prefix ${D}
-}
-
-FILES_${PN} += "${datadir}/ti/*"
-
-FILES_${PN}-dbg = "${TI_CGT_PRU_INSTALL_DIR_RECIPE}/bin/.debug \
- ${TI_CGT_PRU_INSTALL_DIR_RECIPE}/lib/.debug \
-"
-
-INHIBIT_PACKAGE_STRIP = "1"
-INHIBIT_SYSROOT_STRIP = "1"
-INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
-
-INSANE_SKIP_${PN} += "arch staticdev already-stripped file-rdeps"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/recipes-ti/devtools/ti-cgt470.inc b/recipes-ti/devtools/ti-cgt470.inc
deleted file mode 100644
index f0992aa7..00000000
--- a/recipes-ti/devtools/ti-cgt470.inc
+++ /dev/null
@@ -1,24 +0,0 @@
-DESCRIPTION = "TI ARM Code Generation Tools"
-HOMEPAGE = "https://www-a.ti.com/downloads/sds_support/CodeGenerationTools.htm"
-SECTION = "devel"
-LICENSE = "TI"
-
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=62f46f1125a152a2e213b414db7ac600"
-
-require ../includes/ti-paths.inc
-require ../includes/ti-staging.inc
-require ../includes/ti-eula-unpack.inc
-
-S = "${WORKDIR}/cgt470_${PV}"
-
-SRC_URI = "http://install.source.dir.local/ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin;name=cgt470bin"
-
-BINFILE="ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin"
-TI_BIN_UNPK_CMDS="Y:qY:workdir: : "
-TI_BIN_UNPK_WDEXT="/cgt470_${PV}"
-
-do_install() {
- install -d ${D}${CODEGEN_ARM_INSTALL_DIR_RECIPE}
- cp -pPrf ${S}/* ${D}${CODEGEN_ARM_INSTALL_DIR_RECIPE}
-}
-
diff --git a/recipes-ti/devtools/ti-cgt470_4.6.6.bb b/recipes-ti/devtools/ti-cgt470_4.6.6.bb
deleted file mode 100644
index 6ff2cc48..00000000
--- a/recipes-ti/devtools/ti-cgt470_4.6.6.bb
+++ /dev/null
@@ -1,8 +0,0 @@
-require ti-cgt470.inc
-
-PV = "4_6_6"
-PVwithdots = "4.6.6"
-
-SRC_URI[cgt470bin.md5sum] = "29a316dc6b8c8c3a53e0d6c956acb62b"
-SRC_URI[cgt470bin.sha256sum] = "a17bc7139f450672503c932ef53b00c425522890e031b4a7c9135fdf90815740"
-
diff --git a/recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb b/recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb
deleted file mode 100644
index a67a2d8a..00000000
--- a/recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb
+++ /dev/null
@@ -1,46 +0,0 @@
-SUMMARY = "TI DSP Code Generation Tools"
-DESCRIPTION = "Texas Instrument (TI) Code Generation Tools are custom \
-utilities targeted for TI embedded processors. This Digital Signal \
-Processor (DSP) suite contains tools needed to create and debug \
-applications for the C6000 DSP family. This includes tools such as: \
-compiler, linker, assembler, etc. This also includes C runtime \
-libraries and standard header files needed to produce a working DSP application."
-
-HOMEPAGE = "https://www-a.ti.com/downloads/sds_support/TICodegenerationTools/download.htm"
-LICENSE = "TI-TSPA"
-
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b6311962635a4f15630e36ec2d875eca"
-
-S = "${WORKDIR}/c6000_7.4.16"
-
-require recipes-ti/includes/ti-paths.inc
-require recipes-ti/includes/ti-unpack.inc
-
-BINFILE = "ti_cgt_c6000_7.4.16_linux_installer_x86.bin"
-BINFILE_NAME = "cgt6x_7.4.16_x86_installer"
-TI_BIN_UNPK_ARGS = "--prefix ${WORKDIR} --mode unattended"
-TI_BIN_UNPK_CMDS=""
-
-SRC_URI = "http://install.source.dir.local/${BINFILE};name=${BINFILE_NAME}"
-
-SRC_URI[cgt6x_7.4.16_x86_installer.md5sum] = "21ca55c5b1f6b2d8d4fb7570d5eb5513"
-SRC_URI[cgt6x_7.4.16_x86_installer.sha256sum] = "baa0d1ef20397383f99f45068a6d160963a01419d42fbbb851263b54c91df82f"
-
-# only x86_64 is supported
-COMPATIBLE_HOST = "x86_64.*-linux"
-COMPATIBLE_HOST_class-target = "null"
-
-do_install() {
- install -d ${D}/${TI_CGT6X_7_INSTALL_DIR_RECIPE}
- cp -rP --preserve=mode,links,timestamps --no-preserve=ownership ${WORKDIR}/c6000_7.4.16/. ${D}/${TI_CGT6X_7_INSTALL_DIR_RECIPE}
-}
-
-FILES_${PN} += "${TI_CGT6X_7_INSTALL_DIR_RECIPE}"
-
-INSANE_SKIP_${PN} += "arch staticdev textrel"
-
-INHIBIT_PACKAGE_STRIP = "1"
-INHIBIT_SYSROOT_STRIP = "1"
-INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/recipes-ti/devtools/ti-cgt6x_8.3.2.bb b/recipes-ti/devtools/ti-cgt6x_8.3.2.bb
deleted file mode 100644
index 38f5597d..00000000
--- a/recipes-ti/devtools/ti-cgt6x_8.3.2.bb
+++ /dev/null
@@ -1,107 +0,0 @@
-DESCRIPTION = "TI DSP Code Generation Tools"
-HOMEPAGE = "https://www-a.ti.com/downloads/sds_support/TICodegenerationTools/download.htm"
-LICENSE = "(TI-TSPA & Thai-Open-Source-Software-Center) & BSD-3-Clause & BSL-1.0 & Patrick-Powell & AFL-3.0 & MIT & BSD-2-Clause & PD"
-
-LIC_FILES_CHKSUM = "file://ti-cgt-c6000_${PV}/C6000CodeGenerationTools_8.3.x_manifest.html;md5=d06c6f9acebf78df4108a8535396e9f1"
-LIC_FILES_CHKSUM_class-target = "file://usr/share/doc/ti/cgt-c6x/C6000CodeGenerationTools_8.3.x_manifest.html;md5=d06c6f9acebf78df4108a8535396e9f1"
-
-PE = "1"
-
-require recipes-ti/includes/ti-unpack.inc
-
-COMPATIBLE_HOST_class-target = "arm.*-linux"
-
-# For now we only have hardfp version for target class
-python __anonymous() {
- c = d.getVar("CLASSOVERRIDE")
-
- if c == "class-target":
- tunes = d.getVar("TUNE_FEATURES")
- if not tunes:
- return
- pkgn = d.getVar("PN")
- pkgv = d.getVar("PV")
- if "callconvention-hard" not in tunes:
- bb.warn("%s-%s ONLY supports hardfp mode for now" % (pkgn, pkgv))
- raise bb.parse.SkipPackage("%s-%s ONLY supports hardfp mode for now" % (pkgn, pkgv))
-}
-
-BINFILE = "ti_cgt_c6000_${PV}_linux_installer_x86.bin"
-BINFILE_NAME = "cgt6x_x86_installer"
-TI_BIN_UNPK_ARGS = "--prefix ${S}"
-TI_BIN_UNPK_CMDS = ""
-
-BINFILE_class-target = "ti_cgt_c6000_${PV}_armlinuxa8hf_busybox_installer.sh"
-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] = "f1f534e6a4bdee6df39e8d0cb458d161"
-SRC_URI[cgt6x_x86_installer.sha256sum] = "1fba2a8f5532b33a23677771d686a866171ce7a0e567fed50d900d0ecd2e17e6"
-
-SRC_URI[cgt6x_arm_installer.md5sum] = "425d82308e71202ad004a36b7ec3cec9"
-SRC_URI[cgt6x_arm_installer.sha256sum] = "70c387ddde379194fed712087be6cb0ca5f4f0e65d7f29bd7462c38ee011928f"
-
-do_install() {
- install -d ${D}${bindir}
- for binfile in ${S}/ti-cgt-c6000_${PV}/bin/*; do
- install -m 755 ${binfile} ${D}${bindir}
- done
-
- install -d ${D}${datadir}/ti/cgt-c6x/bin
- for binfile in ${S}/ti-cgt-c6000_${PV}/bin/*; do
- install -m 755 ${binfile} ${D}${datadir}/ti/cgt-c6x/bin
- done
-
- CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
- cp ${CP_ARGS} ${S}/ti-cgt-c6000_${PV}/include ${D}${datadir}/ti/cgt-c6x/include
-
- install -d ${D}${datadir}/ti/cgt-c6x/lib
- for libfile in ${S}/ti-cgt-c6000_${PV}/lib/*.a; do
- install -m 644 ${libfile} ${D}${datadir}/ti/cgt-c6x/lib
- done
-
- for libfile in ${S}/ti-cgt-c6000_${PV}/lib/*.cmd; do
- install -m 644 ${libfile} ${D}${datadir}/ti/cgt-c6x/lib
- done
-
- for libfile in ${S}/ti-cgt-c6000_${PV}/lib/*.lib; do
- install -m 644 ${libfile} ${D}${datadir}/ti/cgt-c6x/lib
- done
-
- install -d ${D}${datadir}/man/man1
- for manfile in ${S}/ti-cgt-c6000_${PV}/man/man1/*; do
- if [ -e ${manfile} ]; then
- install -m 644 ${manfile} ${D}${datadir}/man/man1
- fi
- done
-
- install -d ${D}${datadir}/doc/ti/cgt-c6x
- for docfile in ${S}/ti-cgt-c6000_${PV}/*.txt; do
- install -m 644 ${docfile} ${D}${datadir}/doc/ti/cgt-c6x
- done
-
- for docfile in ${S}/ti-cgt-c6000_${PV}/*.html; do
- install -m 644 ${docfile} ${D}${datadir}/doc/ti/cgt-c6x
- done
-
- for docfile in ${S}/ti-cgt-c6000_${PV}/*.spdx; do
- install -m 644 ${docfile} ${D}${datadir}/doc/ti/cgt-c6x
- done
-
-}
-
-do_install_class-target() {
- ${WORKDIR}/${BINFILE} --prefix ${D}
-}
-
-FILES_${PN} += "${datadir}/ti/*"
-
-FILES_${PN}-dbg += "${datadir}/ti/cgt-c6x/bin/.debug"
-
-INSANE_SKIP_${PN} += "staticdev"
-INHIBIT_PACKAGE_STRIP_FILES = "${PKGD}${datadir}/ti/cgt-c6x/lib/libc.a"
-
-BBCLASSEXTEND = "native nativesdk"
-
-COMPATIBLE_MACHINE_class-target = "(ti-soc)"
diff --git a/recipes-ti/devtools/ti-cgt7x_1.3.0.bb b/recipes-ti/devtools/ti-cgt7x_1.3.0.bb
deleted file mode 100644
index 55ec91e8..00000000
--- a/recipes-ti/devtools/ti-cgt7x_1.3.0.bb
+++ /dev/null
@@ -1,45 +0,0 @@
-SUMMARY = "TI DSP Code Generation Tools"
-DESCRIPTION = "Texas Instruments (TI) Code Generation Tools are custom \
-utilities targeted for TI embedded processors. This Digital Signal \
-Processor (DSP) suite contains tools needed to create and debug \
-applications for the C7000 DSP family. This includes tools such as: \
-compiler, linker, assembler, etc. This also includes C runtime \
-libraries and standard header files needed to produce a working DSP application."
-HOMEPAGE = "https://www-a.ti.com/downloads/sds_support/TICodegenerationTools/download.htm"
-LICENSE = "(TI-TSPA & Thai-Open-Source-Software-Center) & BSD-3-Clause & BSL-1.0 & Patrick-Powell & AFL-3.0 & MIT & BSD-2-Clause & PD"
-
-LIC_FILES_CHKSUM = "file://ti-cgt-c7000_${PV}.STS/C7000_Code_Generation_Tools_1.x_manifest.html;md5=3ee1c9f774004535003f80cb8142bb0f"
-
-require recipes-ti/includes/ti-unpack.inc
-require recipes-ti/includes/ti-paths.inc
-
-# only x86_64 is supported
-COMPATIBLE_HOST = "x86_64.*-linux"
-COMPATIBLE_HOST_class-target = "null"
-
-BINFILE = "ti_cgt_c7000_${PV}.STS_linux_installer_x86.bin"
-BINFILE_NAME = "cgt7x_x86_installer"
-
-SRC_URI = "http://software-dl.ti.com/codegen/esd/cgt_public_sw/C7000/${PV}.STS/${BINFILE};name=${BINFILE_NAME}"
-
-TI_BIN_UNPK_ARGS = "--prefix ${S}"
-TI_BIN_UNPK_CMDS = ""
-
-SRC_URI[cgt7x_x86_installer.sha256sum] = "24071fe0369e55af80e334852cda7fa78b64ae79a411c57ac6995470a7a23694"
-
-S = "${WORKDIR}/c7000_${PV}"
-
-do_install() {
- install -d ${D}/${TI_CGT7X_INSTALL_DIR_RECIPE}
- cp -rP --preserve=mode,links,timestamps --no-preserve=ownership ${WORKDIR}/c7000_${PV}/ti-cgt-c7000_${PV}.STS/. ${D}/${TI_CGT7X_INSTALL_DIR_RECIPE}
-}
-
-FILES_${PN} += "${TI_CGT7X_INSTALL_DIR_RECIPE}"
-
-INSANE_SKIP_${PN} += "arch staticdev textrel file-rdeps"
-
-INHIBIT_PACKAGE_STRIP = "1"
-INHIBIT_SYSROOT_STRIP = "1"
-INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/recipes-ti/devtools/ti-xdctools-common.inc b/recipes-ti/devtools/ti-xdctools-common.inc
deleted file mode 100644
index c21e4794..00000000
--- a/recipes-ti/devtools/ti-xdctools-common.inc
+++ /dev/null
@@ -1,70 +0,0 @@
-DESCRIPTION = "TI XDCtools (RTSC - Real Time Software Components - http://rtsc.eclipse.org)"
-HOMEPAGE = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/rtsc"
-SECTION = "devel"
-LICENSE = "BSD & GPLv2"
-
-require recipes-ti/includes/ti-paths.inc
-require recipes-ti/includes/ti-staging.inc
-
-do_install() {
- CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
-
- install -d ${D}${XDC_INSTALL_DIR_RECIPE}
- cp ${CP_ARGS} ${S}/* ${D}${XDC_INSTALL_DIR_RECIPE}
-}
-
-FILES_${PN}-dev = "${XDC_INSTALL_DIR_RECIPE}"
-
-BBCLASSEXTEND = "native nativesdk"
-
-INHIBIT_PACKAGE_STRIP = "1"
-INHIBIT_SYSROOT_STRIP = "1"
-INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
-INSANE_SKIP_${PN}-dev = "libdir dev-elf arch file-rdeps"
-
-# Prevent internal libs from getting picked up
-PRIVATE_LIBS = " \
-libncdb.so \
-libcdb.so \
-libjavaplugin_oji.so \
-libjavaplugin_jni.so \
-libjsound.so \
-libinstrument.so \
-libjawt.so \
-libzip.so \
-libjava_crw_demo.so \
-libjavaplugin_nscp_gcc29.so \
-libhprof.so \
-libcmm.so \
-libjdwp.so \
-libmlib_image.so \
-libjpeg.so \
-libverify.so \
-libjavaplugin_nscp.so \
-libmanagement.so \
-libunpack.so \
-librmi.so \
-libJdbcOdbc.so \
-libawt.so \
-libnet.so \
-libjaas_unix.so \
-libnio.so \
-libdcpr.so \
-libioser12.so \
-libjsoundalsa.so \
-libjava.so \
-libfontmanager.so \
-libdt_socket.so \
-libmawt.so \
-libjvm.so \
-libhpi.so \
-lib.so \
-libcairo.so.2 \
-libjli.so \
-libawt_xawt.so \
-"
-
-COMPATIBLE_HOST ?= "null"
-COMPATIBLE_HOST_ti-soc = "(.*)"
-COMPATIBLE_HOST_class-native = "(.*)"
-COMPATIBLE_HOST_class-nativesdk = "(.*)"
diff --git a/recipes-ti/devtools/ti-xdctools-core.inc b/recipes-ti/devtools/ti-xdctools-core.inc
deleted file mode 100644
index 47f73b6d..00000000
--- a/recipes-ti/devtools/ti-xdctools-core.inc
+++ /dev/null
@@ -1,5 +0,0 @@
-require ti-xdctools-common.inc
-
-S = "${WORKDIR}/xdctools_${PV}_core"
-
-SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/rtsc/${PV}/exports/xdccore/xdctools_${PV}_core_linux.zip;name=xdczip"
diff --git a/recipes-ti/devtools/ti-xdctools.inc b/recipes-ti/devtools/ti-xdctools.inc
deleted file mode 100644
index 1415f83e..00000000
--- a/recipes-ti/devtools/ti-xdctools.inc
+++ /dev/null
@@ -1,10 +0,0 @@
-require ti-xdctools-common.inc
-require ../includes/ti-eula-unpack.inc
-
-S = "${WORKDIR}/xdctools_${PV}"
-
-SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/rtsc/${PV}/exports/xdctools_setuplinux_${PV}.bin;name=xdcbin"
-
-BINFILE="xdctools_setuplinux_${PV}.bin"
-TI_BIN_UNPK_CMDS="Y:workdir:Y"
-TI_BIN_UNPK_WDEXT="/ti"
diff --git a/recipes-ti/devtools/ti-xdctools_3.61.00.16.bb b/recipes-ti/devtools/ti-xdctools_3.61.00.16.bb
deleted file mode 100644
index 9047198d..00000000
--- a/recipes-ti/devtools/ti-xdctools_3.61.00.16.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-require recipes-ti/devtools/ti-xdctools-core.inc
-
-PV = "3_61_00_16"
-
-LIC_FILES_CHKSUM = "file://docs/license/xdc/shelf/package.html;beginline=1;endline=140;md5=2e742b9757bc9ce0241aadba9f627ab8"
-
-SRC_URI[xdczip.sha256sum] = "19caf6d5ff412d48c11ba1c05b543e39f5d678203407e5f659ff306b274e7606"