diff mbox series

[master/scarthgap,1/4] cc33conf: add new cc33conf tool for cc33xx devices

Message ID 20240621105221.1648656-2-sabeeh-khan@ti.com
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series add FW and utilities for cc33xx wireless driver | expand

Commit Message

Sabeeh Khan June 21, 2024, 10:52 a.m. UTC
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 <sabeeh-khan@ti.com>
---
 .../cc33conf/cc33conf_git.bb                  | 29 +++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb
diff mbox series

Patch

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 \
+"