From patchwork Fri Jun 21 10:52:18 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Khan, Sabeeh" X-Patchwork-Id: 45467 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4B658C27C4F for ; Fri, 21 Jun 2024 10:52:49 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web10.70171.1718967160191407685 for ; Fri, 21 Jun 2024 03:52:40 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=L/LW72JN; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: sabeeh-khan@ti.com) Received: from lelv0265.itg.ti.com ([10.180.67.224]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 45LAqdKD094981 for ; Fri, 21 Jun 2024 05:52:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1718967159; bh=9qo/1QV+NZ6KKpaA4ajqKI+GNz4Ufs/Sz0qV+i1kjfI=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=L/LW72JN9ETbeg9kYj/67+q70oYRoy4rHAvKKZrmHFl7d9m19Ktc1h2gwfDc8OQvi qD4MK0PPzF3HvryRkh2+QCqjkgDRkWOYfKB/A9LKruqznrVeLj6SgDNSs4Q/4zy2uV uQ1w4qhz3spggvWNr/qmqxsPleVLB228KfS7jPQg= Received: from DLEE107.ent.ti.com (dlee107.ent.ti.com [157.170.170.37]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 45LAqdEL010047 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 21 Jun 2024 05:52:39 -0500 Received: from DLEE100.ent.ti.com (157.170.170.30) by DLEE107.ent.ti.com (157.170.170.37) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Fri, 21 Jun 2024 05:52:38 -0500 Received: from lelvsmtp6.itg.ti.com (10.180.75.249) by DLEE100.ent.ti.com (157.170.170.30) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Fri, 21 Jun 2024 05:52:39 -0500 Received: from thinkstationp3.dhcp.ti.com (thinkstationp3.dhcp.ti.com [128.247.83.36]) by lelvsmtp6.itg.ti.com (8.15.2/8.15.2) with ESMTP id 45LAqciZ089126; Fri, 21 Jun 2024 05:52:38 -0500 From: Sabeeh Khan To: CC: Sabeeh Khan Subject: [master/scarthgap][PATCH 1/4] cc33conf: add new cc33conf tool for cc33xx devices Date: Fri, 21 Jun 2024 05:52:18 -0500 Message-ID: <20240621105221.1648656-2-sabeeh-khan@ti.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240621105221.1648656-1-sabeeh-khan@ti.com> References: <20240621105221.1648656-1-sabeeh-khan@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 21 Jun 2024 10:52:49 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/17793 cc33conf is a tool provided by TI to configure cc33xx WLAN devices. It can be used to change the RF parameters and other features of the target. Documentation for this tool is provided within the following link: https://www.ti.com/tool/CC33XX-SOFTWARE Signed-off-by: Sabeeh Khan --- .../cc33conf/cc33conf_git.bb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb diff --git a/meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb b/meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb new file mode 100644 index 00000000..096bf9bc --- /dev/null +++ b/meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb @@ -0,0 +1,29 @@ +SUMMARY = "Configuration utility for TI CC33xx wireless devices" +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://COPYING;md5=d5fc448a36efe573623542dcb989afc4" + +SRCREV = "a2f84140b8d67cfc94472cf92676a409d1e47d86" +SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-utils.git;branch=master;protocol=https" + +PV = "1.7.0.120" + +S = "${WORKDIR}/git/cc33conf" + +EXTRA_OEMAKE = "CC="${CC}"" + +do_install() { + install -d ${D}${sbindir} + install -d ${D}${sbindir}/cc33conf/ + + install -m 0755 cc33xxconf ${D}${sbindir}/cc33conf/ + install -m 0755 dictionary.txt ${D}${sbindir}/cc33conf/ + install -m 0755 default.conf ${D}${sbindir}/cc33conf/ + install -m 0755 README ${D}${sbindir}/cc33conf/ + install -m 0755 cc33xx-conf.conf ${D}${sbindir}/cc33conf/ + install -m 0755 cc33xx-conf.ini ${D}${sbindir}/cc33conf/ + install -m 0755 conf.h ${D}${sbindir}/cc33conf/ +} + +FILES:${PN} += " \ + ${sbindir}/cc33conf \ +" From patchwork Fri Jun 21 10:52:19 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Khan, Sabeeh" X-Patchwork-Id: 45470 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7CCF2C2BA1A for ; Fri, 21 Jun 2024 10:52:49 +0000 (UTC) Received: from fllv0015.ext.ti.com (fllv0015.ext.ti.com [198.47.19.141]) by mx.groups.io with SMTP id smtpd.web11.70045.1718967160897552089 for ; Fri, 21 Jun 2024 03:52:41 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=pX5R+f/n; spf=pass (domain: ti.com, ip: 198.47.19.141, mailfrom: sabeeh-khan@ti.com) Received: from fllv0034.itg.ti.com ([10.64.40.246]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id 45LAqe24089910 for ; Fri, 21 Jun 2024 05:52:40 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1718967160; bh=Nf4tsiWYbHVxz43RUiVYVXNJ5aQp7KXXhTrU2CqqvYI=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=pX5R+f/now9GyT0nIKy7ly6EgVYm02U4c1pv9S0PVQVxKfl31N/a3acuqWpB57gA7 PWPrOMV+6l6UT1PMC9fnbRsmk4NRlnWZws3fcN2O6Dzf3g4YSVVJAKId6a3Z96ldrp BHQQKIeTS0hyLjOauPkYgpMEf5I0t9SZNUkCqO4Q= Received: from DLEE105.ent.ti.com (dlee105.ent.ti.com [157.170.170.35]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 45LAqeC8025962 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 21 Jun 2024 05:52:40 -0500 Received: from DLEE107.ent.ti.com (157.170.170.37) by DLEE105.ent.ti.com (157.170.170.35) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Fri, 21 Jun 2024 05:52:40 -0500 Received: from lelvsmtp6.itg.ti.com (10.180.75.249) by DLEE107.ent.ti.com (157.170.170.37) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Fri, 21 Jun 2024 05:52:40 -0500 Received: from thinkstationp3.dhcp.ti.com (thinkstationp3.dhcp.ti.com [128.247.83.36]) by lelvsmtp6.itg.ti.com (8.15.2/8.15.2) with ESMTP id 45LAqcia089126; Fri, 21 Jun 2024 05:52:40 -0500 From: Sabeeh Khan To: CC: Sabeeh Khan Subject: [master/scarthgap][PATCH 2/4] cc33calibrator: add new cc33calibrator tool for cc33xx devices Date: Fri, 21 Jun 2024 05:52:19 -0500 Message-ID: <20240621105221.1648656-3-sabeeh-khan@ti.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240621105221.1648656-1-sabeeh-khan@ti.com> References: <20240621105221.1648656-1-sabeeh-khan@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 21 Jun 2024 10:52:49 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/17794 cc33calibrator is a tool provided by TI to manually control the radio frontend of the cc33xx device. This tool can also be used for production line testing of the radio. Documentation for this tool is provided within the following link: https://www.ti.com/tool/CC33XX-SOFTWARE Signed-off-by: Sabeeh Khan --- .../cc33calibrator/cc33calibrator_git.bb | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb diff --git a/meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb b/meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb new file mode 100644 index 00000000..cd5b7dc5 --- /dev/null +++ b/meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb @@ -0,0 +1,24 @@ +SUMMARY = "The calibrator utility for TI wireless solution based on cc33xx driver" +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://COPYING;md5=d5fc448a36efe573623542dcb989afc4" + +SRCREV = "89d7e55b40972cbfc84f0734c35a7a6b4f7f5b31" +SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-utils.git;branch=master;protocol=https" + +PV = "1.0.0.50" + +DEPENDS = "libnl" + +S = "${WORKDIR}/git/cc33calibrator" + +export CROSS_COMPILE = "${TARGET_PREFIX}" + +EXTRA_OEMAKE = "CFLAGS="${CFLAGS} -I${STAGING_INCDIR}/libnl3/ -DCONFIG_LIBNL32 " \ + LDFLAGS="${LDFLAGS} -L${STAGING_LIBDIR}" \ + CC="${CC}" \ + NLVER=3" + +do_install() { + install -d ${D}${bindir} + install -m 0755 cc33calibrator ${D}${bindir}/ +} From patchwork Fri Jun 21 10:52:20 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Khan, Sabeeh" X-Patchwork-Id: 45468 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8B523C2BD09 for ; Fri, 21 Jun 2024 10:52:49 +0000 (UTC) Received: from lelv0143.ext.ti.com (lelv0143.ext.ti.com [198.47.23.248]) by mx.groups.io with SMTP id smtpd.web11.70046.1718967161849689709 for ; Fri, 21 Jun 2024 03:52:41 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=JIyUMZcz; spf=pass (domain: ti.com, ip: 198.47.23.248, mailfrom: sabeeh-khan@ti.com) Received: from fllv0035.itg.ti.com ([10.64.41.0]) by lelv0143.ext.ti.com (8.15.2/8.15.2) with ESMTP id 45LAqfm4014535 for ; Fri, 21 Jun 2024 05:52:41 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1718967161; bh=hrVHSKSun+10H68YMX9LXkyvnDtHpvqVUFsn9qq6Tuc=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=JIyUMZcz3bPkkM8vYDhOSiVJWvwtzcXqN6EpvGcxTNK6VpQRamczi9Ei4eMN//70D 6OmHyfcup32PVOk3NEI/kuG+JuJY03esvR/fd9p1oUHGXja7MLjv5SrSqgZOdGX+UG BNFLe1Ps5nXjkQdpjLAeWQsZHwSxcT4Jr07or7Ks= Received: from DLEE102.ent.ti.com (dlee102.ent.ti.com [157.170.170.32]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 45LAqf03002852 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 21 Jun 2024 05:52:41 -0500 Received: from DLEE104.ent.ti.com (157.170.170.34) by DLEE102.ent.ti.com (157.170.170.32) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Fri, 21 Jun 2024 05:52:40 -0500 Received: from lelvsmtp6.itg.ti.com (10.180.75.249) by DLEE104.ent.ti.com (157.170.170.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Fri, 21 Jun 2024 05:52:41 -0500 Received: from thinkstationp3.dhcp.ti.com (thinkstationp3.dhcp.ti.com [128.247.83.36]) by lelvsmtp6.itg.ti.com (8.15.2/8.15.2) with ESMTP id 45LAqcib089126; Fri, 21 Jun 2024 05:52:40 -0500 From: Sabeeh Khan To: CC: Sabeeh Khan Subject: [master/scarthgap][PATCH 3/4] cc33xx-fw: install cc33xx firmware Date: Fri, 21 Jun 2024 05:52:20 -0500 Message-ID: <20240621105221.1648656-4-sabeeh-khan@ti.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240621105221.1648656-1-sabeeh-khan@ti.com> References: <20240621105221.1648656-1-sabeeh-khan@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 21 Jun 2024 10:52:49 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/17795 Download and install the cc33xx firmware and binaries to be used with the cc33xx drivers. FW Version: 1.7.0.120 Signed-off-by: Sabeeh Khan --- .../recipes-bsp/cc33xx-fw/cc33xx-fw_git.bb | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta-ti-extras/recipes-bsp/cc33xx-fw/cc33xx-fw_git.bb diff --git a/meta-ti-extras/recipes-bsp/cc33xx-fw/cc33xx-fw_git.bb b/meta-ti-extras/recipes-bsp/cc33xx-fw/cc33xx-fw_git.bb new file mode 100644 index 00000000..9f1de766 --- /dev/null +++ b/meta-ti-extras/recipes-bsp/cc33xx-fw/cc33xx-fw_git.bb @@ -0,0 +1,22 @@ +SUMMARY = "Firmware files for use with TI cc33xx" +LICENSE = "TI-TSPA" +LIC_FILES_CHKSUM = "file://LICENCE;md5=df68504cbd0a4da1643ebcfd5783dbc9" + +SRCREV = "988ded3a7d4d0e46de62e9ebfcb685c502bd9edf" +SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-fw.git;protocol=https;branch=master" + +PV = "1.7.0.120" + +CLEANBROKEN = "1" + +S = "${WORKDIR}/git" + +do_compile[no_exec] = "1" + +EXTRA_OEMAKE = "DEST_DIR=${D} BASE_LIB_DIR=${nonarch_base_libdir}" + +do_install() { + oe_runmake install +} + +FILES:${PN} = "${nonarch_base_libdir}/firmware/ti-connectivity/*" From patchwork Fri Jun 21 10:52:21 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Khan, Sabeeh" X-Patchwork-Id: 45469 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 98D65C2BBCA for ; Fri, 21 Jun 2024 10:52:49 +0000 (UTC) Received: from lelv0143.ext.ti.com (lelv0143.ext.ti.com [198.47.23.248]) by mx.groups.io with SMTP id smtpd.web11.70047.1718967162682004242 for ; Fri, 21 Jun 2024 03:52:42 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=NmNev6Ms; spf=pass (domain: ti.com, ip: 198.47.23.248, mailfrom: sabeeh-khan@ti.com) Received: from fllv0035.itg.ti.com ([10.64.41.0]) by lelv0143.ext.ti.com (8.15.2/8.15.2) with ESMTP id 45LAqgRc014540 for ; Fri, 21 Jun 2024 05:52:42 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1718967162; bh=tpovysuvxmte8Q62Qw10xC6nJC2CGIE+nDavaYUDz14=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=NmNev6Ms+aLNqvrJ7Uq4W+muZfqrB/yI8u4ajvZFxW4lcxM93yOUVWBmZbwLcXWRJ YUMiuv4hd1rR8QPCs1ffwFNG/yJ0Lh7BAwod0osPcC64fFecAvhDQ6eh5VvK+ket6a vNI089jkbrAIZ66AR/i6yMeo2kU4WJ3vyAwVwak8= Received: from DFLE100.ent.ti.com (dfle100.ent.ti.com [10.64.6.21]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 45LAqg61002857 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 21 Jun 2024 05:52:42 -0500 Received: from DFLE115.ent.ti.com (10.64.6.36) by DFLE100.ent.ti.com (10.64.6.21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Fri, 21 Jun 2024 05:52:42 -0500 Received: from lelvsmtp6.itg.ti.com (10.180.75.249) by DFLE115.ent.ti.com (10.64.6.36) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Fri, 21 Jun 2024 05:52:41 -0500 Received: from thinkstationp3.dhcp.ti.com (thinkstationp3.dhcp.ti.com [128.247.83.36]) by lelvsmtp6.itg.ti.com (8.15.2/8.15.2) with ESMTP id 45LAqcic089126; Fri, 21 Jun 2024 05:52:41 -0500 From: Sabeeh Khan To: CC: Sabeeh Khan Subject: [master/scarthgap][PATCH 4/4] cc33xx-target-scripts: add cc33xx scripts to control TI cc33xx WLAN device Date: Fri, 21 Jun 2024 05:52:21 -0500 Message-ID: <20240621105221.1648656-5-sabeeh-khan@ti.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240621105221.1648656-1-sabeeh-khan@ti.com> References: <20240621105221.1648656-1-sabeeh-khan@ti.com> MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 21 Jun 2024 10:52:49 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/17796 Add scripts and conf files to be used to control and configure the cc33xx WLAN device. Documentation for these scripts can be found here: https://www.ti.com/tool/CC33XX-SOFTWARE Signed-off-by: Sabeeh Khan --- .../cc33xx-target-scripts_git.bb | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb diff --git a/meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb b/meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb new file mode 100644 index 00000000..87f75653 --- /dev/null +++ b/meta-ti-extras/recipes-connectivity/cc33xx-target-scripts/cc33xx-target-scripts_git.bb @@ -0,0 +1,20 @@ +SUMMARY = "Scripts and configuration files for TI cc33xx wireless drivers" +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://COPYING;md5=904443cf7fae5c09c3d5f83f8557c265" + +SRCREV = "4371c93ea01b339f6f73f77d6d6bfcc185def8c0" +SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-target-scripts.git;protocol=https;branch=master" + +S = "${WORKDIR}/git" + +FILES:${PN} += "${datadir}/cc33xx/" + +do_install() { + install -d ${D}${datadir}/cc33xx/ + + scripts=`find ./* -type f -name "*.*"` + for s in $scripts + do + install -m 0755 $s ${D}${datadir}/cc33xx/ + done +}