Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lm-sensors/lm-sensors
base: V3-4-0
Choose a base ref
...
head repository: lm-sensors/lm-sensors
compare: 45ffa15cf02e63f70ff3b85c23e22dfbab7e8f9c
Choose a head ref
  • 16 commits
  • 9 files changed
  • 3 contributors

Commits on Jun 25, 2015

  1. Post-release version update.

    Jean Delvare committed Jun 25, 2015
    Copy the full SHA
    580149a View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2015

  1. Fix URL format

    Jean Delvare committed Jul 6, 2015
    Copy the full SHA
    75dbc24 View commit details
    Browse the repository at this point in the history
  2. sensors-detect: Fix systemd paths

    Jean Delvare committed Jul 6, 2015
    Copy the full SHA
    b26a85f View commit details
    Browse the repository at this point in the history
  3. sensors-detect: Add detection of Fintek F81768

    Jean Delvare committed Jul 6, 2015
    Copy the full SHA
    76e050d View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2015

  1. sensors.1: Add reference to sensors-detect

    Contributed by Aurelien Jarno.
    Jean Delvare committed Aug 10, 2015
    Copy the full SHA
    991c8d5 View commit details
    Browse the repository at this point in the history
  2. sensors-detect: Only probe I/O ports on x86

    Contributed by Aurelien Jarno.
    Jean Delvare committed Aug 10, 2015
    Copy the full SHA
    6507372 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2015

  1. isadump: Fix compilation under musl

    From Brendan Heading:
    
    You may be aware of the musl C-library implementation, which tries to
    be strictly standards compliant, avoids non-standard extensions, etc.
    Some distributions have adopted it as their standard C library, in
    others (such as buildroot) it is a configuration alternative.
    
    Vanilla lm-sensors does not compile under musl, due to the following
    excerpt which appears in four different places. The code is checking
    that the glibc version is greater than 2.0.
    
    #if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ >= 0
    #include <sys/io.h>
    #else
    #include <asm/io.h>
    #endif
    
    This fails under musl does not define __GLIBC__ (in fact, by design,
    it doesn't provide any way to identify itself at all) - which causes
    it to try to include <asm/io.h> rather than <sys/io.h>.
    
    It's a long time since glibc 2.0.1 was released - 1997. Accordingly,
    it seems to make little sense at this stage to try to retain
    compatibility with very old libcs - so maybe it should be removed
    entirely.
    Jean Delvare committed Aug 31, 2015
    Copy the full SHA
    8fb3922 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    21e2560 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2016

  1. Copy the full SHA
    5ea7fef View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2016

  1. Merge pull request #6 from AlisonSchofield/master

    update sensors-detect for Microchip MCP9808
    groeck committed Jul 16, 2016
    Copy the full SHA
    eb3910b View commit details
    Browse the repository at this point in the history
  2. sensors-detect: Mark F71868A as supported by the f71882fg driver

    Signed-off-by: Guenter Roeck <linux@roeck-us.net>
    groeck committed Jul 16, 2016
    Copy the full SHA
    5a71627 View commit details
    Browse the repository at this point in the history
  3. sensors-detect: Mark F81768D as supported by the f71882fg driver

    Signed-off-by: Guenter Roeck <linux@roeck-us.net>
    groeck committed Jul 16, 2016
    Copy the full SHA
    feabab9 View commit details
    Browse the repository at this point in the history
  4. sensors-detect: Mark F81866D as supported by the f71882fg driver

    Signed-off-by: Guenter Roeck <linux@roeck-us.net>
    groeck committed Jul 16, 2016
    Copy the full SHA
    ff36ee0 View commit details
    Browse the repository at this point in the history
  5. Updated CHANGES file to reflect that MCP9808 is now detected

    Signed-off-by: Guenter Roeck <linux@roeck-us.net>
    groeck committed Jul 16, 2016
    Copy the full SHA
    e39dbd3 View commit details
    Browse the repository at this point in the history
  6. sensors-detect: Fix detection of NCT6793D

    The Chip ID for NCT6793D is 0xD12x, not 0xD11x.
    
    Signed-off-by: Guenter Roeck <linux@roeck-us.net>
    groeck committed Jul 16, 2016
    Copy the full SHA
    6a368f7 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2016

  1. sensors-detect: Fix syntax error

    elseif should be elsif
    
    Signed-off-by: Guenter Roeck <linux@roeck-us.net>
    groeck committed Jul 25, 2016
    Copy the full SHA
    45ffa15 View commit details
    Browse the repository at this point in the history