<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/utils/lm-sensors, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2026-06-08T13:29:56Z</updated>
<entry>
<title>treewide: add or correct license information</title>
<updated>2026-06-08T13:29:56Z</updated>
<author>
<name>Wei-Ting Yang</name>
</author>
<published>2026-05-13T04:40:16Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=1adc05845455fa0da399d534a7ac35cdfc0e86f7'/>
<id>urn:sha1:1adc05845455fa0da399d534a7ac35cdfc0e86f7</id>
<content type='text'>
Add or correct license information across multiple packages.

Signed-off-by: Wei-Ting Yang &lt;williamatcg@gmail.com&gt;
</content>
</entry>
<entry>
<title>lm-sensors: fix bad scaling due to use of integer type</title>
<updated>2026-05-27T09:34:41Z</updated>
<author>
<name>Dee HY</name>
</author>
<published>2026-05-19T09:53:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=1d43d7b66e7c78490a4d13c85a216e7dd9efcf0c'/>
<id>urn:sha1:1d43d7b66e7c78490a4d13c85a216e7dd9efcf0c</id>
<content type='text'>
upstream: https://github.com/lm-sensors/lm-sensors/commit/62a955319152ce0595932789d10e955304213beb
Signed-off-by: Dee HY &lt;dongfengweixiao@hotmail.com&gt;
</content>
</entry>
<entry>
<title>vsftpd: add version check override</title>
<updated>2026-05-25T05:02:47Z</updated>
<author>
<name>George Sapkin</name>
</author>
<published>2026-05-24T20:33:41Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=12cb2ccffd890dbfdc81afc5b05fc300ce0cc573'/>
<id>urn:sha1:12cb2ccffd890dbfdc81afc5b05fc300ce0cc573</id>
<content type='text'>
Skip version checks as none of the executables seem to report their
versions.

Signed-off-by: George Sapkin &lt;george@sapk.in&gt;
</content>
</entry>
<entry>
<title>lm-sensors: add version check override</title>
<updated>2026-05-25T05:02:47Z</updated>
<author>
<name>Wei-Ting Yang</name>
</author>
<published>2026-05-22T15:42:11Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=757ba7fa414a49a17ad2361a41bbeab3dba8c8c8'/>
<id>urn:sha1:757ba7fa414a49a17ad2361a41bbeab3dba8c8c8</id>
<content type='text'>
Add version check override script.

Signed-off-by: Wei-Ting Yang &lt;williamatcg@gmail.com&gt;
</content>
</entry>
<entry>
<title>lm-sensors: pass TARGET_LDFLAGS to fix linking</title>
<updated>2025-11-30T13:44:13Z</updated>
<author>
<name>Anari Jalakas</name>
</author>
<published>2025-11-28T10:34:16Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=6469f0685882ef44264f4fbd7db0b42858c3db57'/>
<id>urn:sha1:6469f0685882ef44264f4fbd7db0b42858c3db57</id>
<content type='text'>
Explicitly pass $(TARGET_LDFLAGS) to the build system
to resolve MIPS linker errors related to missing -fPIC.

Signed-off-by: Anari Jalakas &lt;anari.jalakas@gmail.com&gt;
</content>
</entry>
<entry>
<title>lm-sensors: packaging isaset and isadump</title>
<updated>2025-10-12T16:20:09Z</updated>
<author>
<name>Florian Eckert</name>
</author>
<published>2024-10-11T12:44:53Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=7cd42ff9401407f1057fd452ca6676661be4c938'/>
<id>urn:sha1:7cd42ff9401407f1057fd452ca6676661be4c938</id>
<content type='text'>
Also packages isaset and isadump for x86 target only:

isadump:
Is a small helper program to examine registers visible through the ISA bus.

isaset:
Is a small helper program to set registers visible through the ISA bus.

Signed-off-by: Florian Eckert &lt;fe@dev.tdt.de&gt;
</content>
</entry>
<entry>
<title>lm-sensors: fix build with glibc</title>
<updated>2025-08-25T15:29:59Z</updated>
<author>
<name>John Audia</name>
</author>
<published>2025-08-16T10:44:45Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=763f984e4f0bb1409c9f40b8518a8eabf963abb9'/>
<id>urn:sha1:763f984e4f0bb1409c9f40b8518a8eabf963abb9</id>
<content type='text'>
The lm-sensors build was failing on glibc-based targets with:
  ld: cannot find -liconv: No such file or directory

which occurred because the upstream Makefile unconditionally links
against -liconv, but glibc has iconv functionality built-in and does not
provide a separate libiconv library.

I submitted the new patch upstream to fix this:
https://github.com/hramrach/lm-sensors/pull/14

This change is backward compatible based on my testing building
lm-sensors for x86/64 with glibc and again with musl after having
applied the patch.

Build system: x86/64
Build-tested: x86/64-glibc and x86/64
Run-tested: x86/64-glibc (Intel N150 based box)

Signed-off-by: John Audia &lt;therealgraysky@proton.me&gt;
</content>
</entry>
<entry>
<title>lm-sensors: use standard location for custom conf</title>
<updated>2025-06-10T13:28:01Z</updated>
<author>
<name>John Audia</name>
</author>
<published>2025-03-26T11:52:49Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=a987403f979acd5093d72019f78faaeddf720d08'/>
<id>urn:sha1:a987403f979acd5093d72019f78faaeddf720d08</id>
<content type='text'>
Slight modification to package to provide /etc/sensors.d/custom.conf
where users can set hardware-specific configurations. Changed behavior
of package to no longer provide a specific configuration for i386 since
it has so many potential configurations.

Signed-off-by: John Audia &lt;therealgraysky@proton.me&gt;
</content>
</entry>
<entry>
<title>lm-sensors: update to v3.6.2</title>
<updated>2025-05-19T08:57:15Z</updated>
<author>
<name>John Audia</name>
</author>
<published>2025-05-17T16:12:43Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=fec25ff6fe72084b1e84a1f4a30f3137f6f94f08'/>
<id>urn:sha1:fec25ff6fe72084b1e84a1f4a30f3137f6f94f08</id>
<content type='text'>
Change source URL to reflect active mirror as old one has not been
updated in ~4 years and bump to latest upstream release.

% sensors --version
sensors version 3.6.2 with libsensors version 3.6.2

Build system: x86/64
Build-tested: x86/64
Run-tested: x86/64

Signed-off-by: John Audia &lt;therealgraysky@proton.me&gt;
</content>
</entry>
<entry>
<title>lm-sensors: Add support for dev_name formatted like "a000000.wifi"</title>
<updated>2022-11-18T22:21:24Z</updated>
<author>
<name>Florence Riker</name>
</author>
<published>2022-11-17T08:59:09Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=e06ee5dba15851227ebb471ac89eceb3a020a558'/>
<id>urn:sha1:e06ee5dba15851227ebb471ac89eceb3a020a558</id>
<content type='text'>
Signed-off-by: Florence Riker &lt;1460830@gmail.com&gt;
</content>
</entry>
</feed>
