summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/i2c-tools
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
commit8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch)
treeefdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-devtools/i2c-tools
parentd412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff)
downloadpoky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz
The poky repository master branch is no longer being updated.
You can either: a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs b) use the new bitbake-setup You can find information about either approach in our documentation: https://docs.yoctoproject.org/ Note that "poky" the distro setting is still available in meta-yocto as before and we continue to use and maintain that. Long live Poky! Some further information on the background of this change can be found in: https://lists.openembedded.org/g/openembedded-architecture/message/2179 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/i2c-tools')
-rw-r--r--meta/recipes-devtools/i2c-tools/i2c-tools_4.4.bb43
1 files changed, 0 insertions, 43 deletions
diff --git a/meta/recipes-devtools/i2c-tools/i2c-tools_4.4.bb b/meta/recipes-devtools/i2c-tools/i2c-tools_4.4.bb
deleted file mode 100644
index f4881f3c2f..0000000000
--- a/meta/recipes-devtools/i2c-tools/i2c-tools_4.4.bb
+++ /dev/null
@@ -1,43 +0,0 @@
1SUMMARY = "Set of i2c tools for linux"
2HOMEPAGE = "https://i2c.wiki.kernel.org/index.php/I2C_Tools"
3DESCRIPTION = "The i2c-tools package contains a heterogeneous set of I2C tools for Linux: a bus probing tool, a chip dumper, register-level SMBus access helpers, EEPROM decoding scripts, EEPROM programming tools, and a python module for SMBus access. All versions of Linux are supported, as long as I2C support is included in the kernel."
4SECTION = "base"
5LICENSE = "GPL-2.0-or-later"
6LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
7
8SRC_URI = "${KERNELORG_MIRROR}/software/utils/i2c-tools/${BP}.tar.gz \
9"
10
11SRC_URI[sha256sum] = "04d1e3b0cd88df8fb96e7709f374dd0b3561191b4c0363eaf873a074b8b7cb22"
12
13inherit update-alternatives
14
15EXTRA_OEMAKE = "bindir=${bindir} sbindir=${sbindir} \
16 incdir=${includedir} libdir=${libdir} \
17 mandir=${mandir} \
18 EXTRA=eeprog"
19
20do_install() {
21 oe_runmake 'DESTDIR=${D}' install
22}
23
24PACKAGES =+ "${PN}-misc"
25FILES:${PN}-misc = "${sbindir}/i2c-stub-from-dump \
26 ${bindir}/ddcmon \
27 ${bindir}/decode-edid \
28 ${bindir}/decode-dimms \
29 ${bindir}/decode-vaio \
30 "
31RDEPENDS:${PN}-misc = "${PN} perl perl-module-posix \
32 perl-module-constant perl-module-file-basename \
33 perl-module-fcntl perl-module-strict perl-module-vars \
34 perl-module-carp \
35 "
36
37ALTERNATIVE_PRIORITY = "100"
38ALTERNATIVE:${PN} = "i2cdetect i2cdump i2cget i2cset i2ctransfer"
39ALTERNATIVE_LINK_NAME[i2cdetect] = "${sbindir}/i2cdetect"
40ALTERNATIVE_LINK_NAME[i2cdump] = "${sbindir}/i2cdump"
41ALTERNATIVE_LINK_NAME[i2cget] = "${sbindir}/i2cget"
42ALTERNATIVE_LINK_NAME[i2cset] = "${sbindir}/i2cset"
43ALTERNATIVE_LINK_NAME[i2ctransfer] = "${sbindir}/i2ctransfer"