[SOLVED]Installing it87 driver for lm_sensors support

Hello,
I've done much research on how to properly install an update it87 driver that could make 0x8620 work.
I ran sensors-detect and ran into this:
# sensors-detect revision 6209 (2014-01-14 22:51:58 +0100)
# System: Gigabyte Technology Co., Ltd. Z97X-Gaming 7
This program will help you determine which kernel modules you need
to load to use lm_sensors most effectively. It is generally safe
and recommended to accept the default answers to all questions,
unless you know what you're doing.
Some south bridges, CPUs or memory controllers contain embedded sensors.
Do you want to scan for them? This is totally safe. (YES/no): y
Module cpuid loaded successfully.
Silicon Integrated Systems SIS5595... No
VIA VT82C686 Integrated Sensors... No
VIA VT8231 Integrated Sensors... No
AMD K8 thermal sensors... No
AMD Family 10h thermal sensors... No
AMD Family 11h thermal sensors... No
AMD Family 12h and 14h thermal sensors... No
AMD Family 15h thermal sensors... No
AMD Family 15h power sensors... No
AMD Family 16h power sensors... No
Intel digital thermal sensor... Success!
(driver `coretemp')
Intel AMB FB-DIMM thermal sensor... No
VIA C7 thermal sensor... No
VIA Nano thermal sensor... No
Some Super I/O chips contain embedded sensors. We have to write to
standard I/O ports to probe them. This is usually safe.
Do you want to scan for Super I/O sensors? (YES/no): y
Probing for Super-I/O at 0x2e/0x2f
Trying family `National Semiconductor/ITE'... No
Trying family `SMSC'... No
Trying family `VIA/Winbond/Nuvoton/Fintek'... No
Trying family `ITE'... Yes
Found unknown chip with ID 0x8620
Probing for Super-I/O at 0x4e/0x4f
Trying family `National Semiconductor/ITE'... No
Trying family `SMSC'... No
Trying family `VIA/Winbond/Nuvoton/Fintek'... No
Trying family `ITE'... No
Some systems (mainly servers) implement IPMI, a set of common interfaces
through which system health data may be retrieved, amongst other things.
We first try to get the information from SMBIOS. If we don't find it
there, we have to read from arbitrary I/O ports to probe for such
interfaces. This is normally safe. Do you want to scan for IPMI
interfaces? (YES/no): y
# DMI data unavailable, please consider installing dmidecode 2.7
# or later for better results.
Probing for `IPMI BMC KCS' at 0xca0... No
Probing for `IPMI BMC SMIC' at 0xca8... No
Some hardware monitoring chips are accessible through the ISA I/O ports.
We have to write to arbitrary I/O ports to probe them. This is usually
safe though. Yes, you do have ISA I/O ports even if you do not have any
ISA slots! Do you want to scan the ISA I/O ports? (YES/no): y
Probing for `National Semiconductor LM78' at 0x290... No
Probing for `National Semiconductor LM79' at 0x290... No
Probing for `Winbond W83781D' at 0x290... No
Probing for `Winbond W83782D' at 0x290... No
Lastly, we can probe the I2C/SMBus adapters for connected hardware
monitoring devices. This is the most risky part, and while it works
reasonably well on most systems, it has been reported to cause trouble
on some systems.
Do you want to probe the I2C/SMBus adapters now? (YES/no): y
Found unknown SMBus adapter 8086:8ca2 at 0000:00:1f.3.
Sorry, no supported PCI bus adapters found.
Module i2c-dev loaded successfully.
Next adapter: i915 gmbus ssc (i2c-0)
Do you want to scan it? (yes/NO/selectively): y
Next adapter: i915 gmbus vga (i2c-1)
Do you want to scan it? (yes/NO/selectively): y
Next adapter: i915 gmbus panel (i2c-2)
Do you want to scan it? (yes/NO/selectively): y
Next adapter: i915 gmbus dpc (i2c-3)
Do you want to scan it? (yes/NO/selectively): y
Next adapter: i915 gmbus dpb (i2c-4)
Do you want to scan it? (yes/NO/selectively): y
Next adapter: i915 gmbus dpd (i2c-5)
Do you want to scan it? (yes/NO/selectively): y
Now follows a summary of the probes I have just done.
Just press ENTER to continue:
Driver `coretemp':
* Chip `Intel digital thermal sensor' (confidence: 9)
Do you want to overwrite /etc/conf.d/lm_sensors? (YES/no):
Created symlink from /etc/systemd/system/multi-user.target.wants/lm_sensors.service to /usr/lib/systemd/system/lm_sensors.service.
Unloading i2c-dev... OK
Unloading cpuid... OK
So I did some research and found that this was updated and available as a potential driver for my MOBO:
http://www.lm-sensors.org/wiki/Devices
You will see the IT8620E which covers the unknown chip lm_sensors found.
I downloaded the file, extracted it and tried to do a
sudo make
but I ran into an error because it was looking for
KERNEL_BUILD := /usr/src/linux-headers-$(TARGET)
which is NOT in that directory. I installed the linux-headers and saw that it adds files to
/lib/modules/3.19.3-3-ARCH
. I modified the Makefile and it got past that part but it ran into another error during
make install
After much frustration I looked and saw 
usr/lib/modules/3.19.3-3-ARCH/kernel/drivers/hwmon/it87.ko.gz
so now I'm questioning if I even need to install this driver or if I need to update it. Is there a way to learn more about these drivers that come in the linux package?
I can't find anything concrete on how to make this work. I'm just trying to add my fan speeds and other junk to my conky!
Edit:
modinfo it87 gave me this result:
filename: /lib/modules/3.19.3-3-ARCH/kernel/drivers/hwmon/it87.ko.gz
license: GPL
description: IT8705F/IT871xF/IT872xF hardware monitoring driver
author: Chris Gauthron, Jean Delvare <[email protected]>
depends: hwmon-vid,hwmon
intree: Y
vermagic: 3.19.3-3-ARCH SMP preempt mod_unload modversions
parm: force_id:Override the detected device ID (ushort)
parm: update_vbat:Update vbat if set else return powerup value (bool)
parm: fix_pwm_polarity:Force PWM polarity to active high (DANGEROUS) (bool)
So, this tells me that this driver does not cover 8620.
Last edited by SirMyztiq (2015-04-10 06:23:31)

Update:
I believe after some researching and actually going for it that I managed to install the it87 test driver.
I modified the Makefile on this line:
KERNEL_BUILD := /lib/modules/$(TARGET)/build
And when it failed on this line:
SYSTEM_MAP := /boot/System.map-$(TARGET)
I did:
sudo cp /proc/kallsyms /boot/System.map-`uname -r`
Because Arch doesn't put this file there because it isn't needed to boot...I think.
Either way it finished and I was able to use the lm_sensors.

Similar Messages

  • How can I install a driver for HP Laserjet P3005. My mac won't allow installation?

    My macbook won't allow em to install the driver for HP Laserjetp3005. Any ideas?

    Apple suppies all the drivers for all the printers that work with any specific os x version. Just go to the Print & scan section of system preferences and Add Printer (Plus ( + ) Sign) and if it is supported the driver will be there.

  • Cannot install LAN driver for my "KT6 Delta Series" motherboard

    I've got this motherboard (KT6 Delta Series). Bought it second hand recently and I haven't got the original MSI driver CD. I downloaded all the drivers from the MSI website (http://www.msi.com.tw/program/support/driver/dvr/spt_dvr_detail.php?UID=474&kind=1) but I'm not able to install the driver for my onboard LAN.
    I just get a yellow dot on the ethernet controller under unknown devices in my device manager. When I try to update driver from device manager by searching the folder where I unzipped the driver, I just get a message saying something like "no driver could be found for this device in the selected folder... will you connect to Windows Update to search for a driver...?". I've also tried to install it the hard way by selecting "from floppy disc" and browse for the "b44win.inf" file inside the "WinXP" folder in the unzipped driver folder... but I stilll get an error message... saying something like "can't find any information of the hardware in the selected folder"... it's a bit difficult for me to describe the messages correctley because not English Windows version.
    I've downloaded both LAN drivers for this card from MSI download site (http://www.msi.com.tw/program/support/driver/dvr/spt_dvr_detail.php?UID=474&kind=1). Both "Broadcom 5788 LAN Drivers" and "Broadcom 4401 LAN Drivers" and non of them will install on my system. I've also tried downloading from the Broadcom website (http://www.broadcom.com/drivers/downloaddrivers.php). NON of them will install (
    I've just formated my harddrive with fresh Windows XP install... The only software already installed is drivers for my motherboard and AGP card. No other software that can make any conflicts. When I connect a network cable to the onboard LAN the yellow light goes on so it seems the card itself is working.... but where can I get a driver that will install???
    I've also tried connecting another network card (realtek 10/100) and connected my ADSL internett through it... and used the MSI Live Update utility... but still no luck... the only network driver it gets is the one for my reltek card :-(
    Any suggestions???
    I use Windows XP Professional SP2. How do I install the drivers for my onboard LAN???
    Best regard.
    Tor-Atle Kindsbekken

    Quote from: osnavi on 05-November-05, 20:02:09
    "...so my onboard Broadcom 4401/5788 controller thinks it is a 3COM controller instead of a broadcom controller..." Think it shouldn't be possible since basic data should be written in a kind of ROM.  Now, if that could happen, it should be possible to reverse it the same way you did to overwrite that data.
    I belive you are right... but I can't reverse it the same way I did when overwrite the data... because I'm not able to install the driver :( I cannot install the driver at all in Windows XP. In Windows ME it's possible to force the installation of the driver... but it does not work. It moves from unknown devices to network controllers... but it gets a yellow dot... and is not working. Every time I boot Windows ME I get a message reporting that something is wrong with the broadcom ethernet controller :(
    I belive the only way I can reverse it is to replace my harddrive with another... with Windows XP and drivers for my card is already installed on the harddrive... the same way as I did when overwriting the rom file(s) with data from my Asus board... but I can't make such a harddrive when the drivers won't install on my card :(
    I maybe think this also has happend to the onboard Audio controller... and maybe the chipsett also :( The audio controller works perfectley eith the MSI C-Media drivers... but when I run MSI live update... I get drivers for the C-Media device... but also drivers for "VIA AC97" audio controller can be downloaded from the MSI Live Update Utility... The "VIA AC97" is the audio controller on my Asus board... so I belive it has happened here also... and maybe also to the "VIA 4in1" chipset... but this is the same "VIA KT600" chipset as on my Asus board. When updating my Via 4in1 driver, I just get an option to update the inf file. But normaly on "Via 4in1" drivers on other boards I know, there shold be installed drivers for PCI, IDE and AGP. Is it the same way for you guys with this motherboard? Is it only the "Inf file" to update for you guys also?
    What I think is most frustrating here is that things like this cab happen. This can happen to everybody. Many times I've switched harddrive from one computer to another... and I've never experienced anything like this before. This time I was not planing to boot the harddrive at all... just format it... but forgot to set the right boot order... so the harddrive booten... and that's all it takes to "destroy" my board. Shouldn't these ROM files be a littlebit more difficult to overwrite, you think? Why doesn't MSI writeprotect their ROM files or anything... to make them a littlebit more difficult to destroy...?
    Well... I'm still interested in advices on how to "restore" my motherboard data to the original values... and remember... clear CMOS and update BIOS is not enough :(

  • DO NOT install this driver for Sound Blaster Audigy SE, or Sound Blaster Audigy Va

    I have two creative products that work fine under xp. But since installing vista my sBli've platinum doesn't work at all, i find out that creative are no longer supporting this card for vista. Fair enough... So I'm waiting for the SB audigy driver update and behold I read that i shouln't install the driver for my other Sound Blaster card, Audigy SE.
    what are creative trying to do? does'nt look like a well run company.
    And from what I've read what is the point of getting a card that is suppoted by the new driver as other people seem to be complaining that this new driver doesn't enable all the features as under Xp.

    If I am right your Audigy is the first Audigy (EMU0k2) soundcard that was launched by Creative Labs. You need the drivers for the audigy series. For driver/application updates: Latest downloads Audigy Platinum
    For a proper install, you may use the tools Driver Cleaner or Driver Sweeper in Windows Safe Mode to clean up the older drivers that are left in the system which can cause the problems you are having now; you can find these tools at Guru3D (under 'General Utilities').
    After that You can install the drivers including the software/applications by using the install cd which is supplied with your Audigy soundcard, and then install the driver updates manually afterwards.
    Or you can try out the new Daniel_K's driverpack (software/applications included, install cd not needed): SB Audigy Support Pack 2.8.000EQ (08/22/2008)
    Good luck!
    Message Edited by CTman on 09-23-2008 05:38 PM

  • Sierra Wireless driver for native support for 10.5 displays wrong network

    Anyone getting the wrong wireless network with the Sierra Wireless driver for native support in Leopard? Sometimes when my AT&T 881u cannot connect, the mini card starts displaying Verizon information. This only happens once every couple of weeks. AT&T says its Sierra Wireless' problem and Sierra says the issue is Apple's.
    I took a picture of the issue with my iPhone. I'll post a link as soon as I get a chance to sync.
    This card normally works great, but this issue is really strange since AT&T G3 network shouldn't be compatible with Verizon's EVDO.

    That model is included in the hpijs and ESP ghostscript driver set:
    http://www.linuxprinting.org/macosx/hpijs/
    When you get that installed, come back with print server model for setup help. Since there isn't auto setup software for OS X, we need to setup all the details.

  • Need Chipset Driver for USB support

    Hi.
    This Windows XP-SP3 PC has 4xUSB2 or 2xUSB3 on-board ports, and all have failed. All USB devices are yellow-flagged in device manager.
    I have run SFC \SCANNOW and it runs to completion, and I have tried right-clicking on a yellow-flagged USB entry in Device Manager and selecting Update Driver, but that only results in the following dialog:
    Cannot Install This Hardware
    There was a problem installing this hardware:
    Universal Serial Bus (USB) Controller
    An error occurred during the installation of the device:
    The driver installation file for this device is missing a necessary entry. This may be because the INF file was written for Windows 95 or later. Contact your hardware vendor stop
    It has been suggested to me that I should try to obtain the Chipset Driver for USB support. Running Speccy reveals the following about the mainboard:
       Manufacturer   MICRO-STAR INTERNATIONAL CO.,LTD
       Model   MS-7267 (CPU 1)
       Version   3.0
       Chipset Vendor   Intel
       Chipset Model   i945P/PL/G/GZ
       Chipset Revision   A2
       Southbridge Vendor   Intel
       Southbridge Model   82801GB (ICH7/R)
       Southbridge Revision   A1
             BIOS
             Brand   American Megatrends Inc.
             Version   V7.1
             Date   9/02/2007
    Can you help me out with this?
    Thanks very much.
     - Rosie

    here you can find all drivers for your mobo:
    http://www.msi.com/support/mb/945GCM5F_V2_FSB_1333.html#down-driver&XP 32

  • Not able to install audio driver for 3000 G400

    Hi,
            I have reinstalled windows xp3 on my lenevo 3000 G400 but i am not able to find correct sound driver
    though I have  tried to install driver from www.lenovo.com as well as Driver CD which provided by lenovo. But
    It doesn't help.......
           Please help me to install sound driver for my note book ( 3000 G400 2048 22Q )
    Thanks
    Solved!
    Go to Solution.

    lionkinking_84,
    I have read some other discussion threads in which customers have gone back to Win XP SP2, installed drivers, then updated to SP3 if they didn't install properly directly under SP3.
    I would suggest using the search function from the forum home page and Searching on XP SP3 driver install or related terms.
    Some of the other discussions may help. 
    In the meantime, I'll inquire and see if there are any recommendations to help you. 
    Best regards,
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • I am trying to install the driver for a Wacom Bamboo Pad. The dmg from Wacom downloadsand will opens, but when I try to install it the message "Install Wacom Tablet.pkg" can't be opened because the Identity of the developer cannot be confirmed"

    iMac late 2009 3,06GHz Intel Core Duo; 500gb hard drive, 12gb memory. OS X 10.8.5 (Mountain Lion)
    '“Install Wacom Tablet.pkg" can't be opened because the Identity of the developer cannot be confirmed.'
    I have been trying to install the driver for a Wacom Bamboo Pad. There are several driver packages listed on the website (the device is supplied ready to run with Windows devices) and I have tried tried downloading all the available drivers which apply to my set-up. Some will not open at all and I get a 'Damaged' message on my screen. Of the ones which open, I can download the .dmg and expand it but when clicked it opens as a window with multiple choice of languages and an icon which instructs you to click to open.
    If I do this some versions repeat the 'damaged' message but the later ones generate a window saying:-
    '“Install Wacom Tablet.pkg" can't be opened because the Identity of the developer cannot be confirmed.' - this is as far as I can get it to go; most frustrating!
    I understand that Apple's security updates have recently included an alteration that causes this result, and that there is supposed to be a legal (i.e. Apple sanctioned) workaround to allow files like this to be opened. If this is so, can anyone enlighten me?

    Many Thanks, Kurt.
    I knew I'd seen the solution you've provided somewhere - either in MacWorld or MacFormat - but couldn't remember the Gatekeeper bit!
    I shall save it somewhere VERY safe now in case this happens again …
    You have made an old man very happy and saved me from worrying that senile decay had suddenly set in. (I was 70 last week so you might understand the situation from that.)
    Best wishes
    OllyanDinah

  • I have an early 2008 iMac running iOs 10.5.8. I need to upgrade to at least iOs 10.6 snow leopard in order to install the driver for a new HP Office Jet Pro 8610 printer. How do I go about doing this, and which version of 10.6 would be best?

    I have an early 2008 iMac running iOs 10.5.8.It has a 2.8 Ghz Intel Core 2 Duo. I need to upgrade to at least iOs 10.6 Snow Leopard in order to install the driver for a new HP OfficeJetPro 8610 printer. Which version of 10.6 would be the best for this Mac and how do I go about upgrading?

    Click here and buy the DVD.
    (115929)

  • HT1338 How do I install a driver for the speakers I have connected to the headphone jack?

    How do you install a driver for speakers I have connected to the headphone jack?

    You don't need drivers for speakers in a headphone jack.
    What is the problem?

  • I installed the driver for my hp t1300 and when i print, it opens my webbrowser

    I recently installed the driver for my T1300. When I try to print from AutoCAD 2013, it opens a web browser and puts my print in the que on HOLD. Please tell me how to stop this from happening. 

    Hi Lazyadt,
    The Designjet is a commercial product.   I am linking you to the Designjet forums repost your question for better coverage.
    Designjet Forum

  • Cannot Install Graphics Driver for windows 7 64 bit...

    Hi... I cannot find a suitable amd driver setup file for my windows 7 64 bit machine of HP.. Can anyone help??!!

    Hi:
    Please see my reply to your other post at the link below...
    http://h30434.www3.hp.com/t5/Notebook-Display-and-Video/Cannot-Install-Graphics-Driver-for-windows-7...

  • How can I install asian script for language support for bangla in safari and install a font??

    how can I install asian script for language support for bangla in safari and install a font? Some websites are working fine in ipad and iphone4 but not in mac osx supported imac or macbook. Example: www.sonarbangladesh.com.

    You just need to install a font, like one of these:
    https://sourceforge.net/projects/onkur/
    http://www.ekushey.org/?page/osx
    For non-Unicode sites, see
    http://m10lmac.blogspot.com/2011/04/reading-non-unicode-indic-language-web.html

  • I can not install any driver for any print to my laptop.

    I have been trying for months to install a driver for just one printer and we have five or six printers.
    My problem is that every time I install a driver it fails and rolls back, everytime. It would just about completely finish installing before rolling back.
    My laptop is a Windows Vista Home Premium Service Pack 2.
    PS:  There were three other users before me that was using this laptop.  I know all three of them and none of them know much about computer. So I tryed to clean out all the junk out of it.
    I got a little more info for however reads this post.  The error that I recieve has no number or error code it just says "Fatal error during installation," but it also has in the title bar this "C:\Users\Justin\AppData\Local\Temp\7z1763\Setup\.​.\Setup\hpzprl01.exe, which seems like it might help.
    Hope that helps.

    I figure out what my problem was.  Here is what I did: I recheck all of my services and startups. If you need help I'll layout steps for you. Just reply that you still need help.

  • Cant install any driver for Hp NVidia gt230 on Touchsmart 600-1055

    Last few years I bought a HP Touchsmart oversea when I travelled to US then I brought it back to Australia. First couple months it was fine then one day I turned on the PC then It is just black screen after the window 7 boot screen then restart after few seconds. It keeps repeating that process unless I go to Safe mode and remove its NVidia driver and replace with window standard driver ( Video Controller VGA compatible) then I can boot up the window normally but cant use any program that require the delicated graphic card. I have tried hard to find its driver from every resources that I can find on the internet including Hp website and NVidia webiste but still again no luck. for 3 years I still cant find the driver for this that can make it working. What happened? is it my graphic card physically fault or because the software isusse? I forgot to mention that I even try to use the DVDs that I orders from HP USA and try to factory recovery but it is still having the same issue. I try to install many different version of window in cluding win 7 32&64 bits, Window 8 pro 64 bits then STILL NO LUCK. So could anyone please tell me what happened and how to fix it cause as I am aware that HP australia not support for HP USA product and I dont want to see my expensive desktop become a brick. 
    Thanks

    Hello Trung_Hau_Le,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand that you are having issues where you cannot use the higher end graphics card installed in your HP TouchSmart 600-1055 Desktop PC. The issue you are describing appears to be a physical issue and I think it would be best if you contacted HP technical support for repair options.
    US support link to contact options for HP products purchased in the US.
    Outside of US support link to contact options for HP products purchased outside the US.
    Now just because you purchased the computer in Australia does not mean your warranty is not good in the US. I am providing you with a link to theHP Global Warranty and FAQs, which states the following:
    HP Global Warranty covers HP products at the level of standard warranty offered in the country in which it is used. For example, a product purchased in country "A" and moved to country "B" receives the current warranty coverage provided by country "B" (if that product is marketed or supported in country B)
    This means that your computer  receives the same treatment in the US as a computer sold in the US. I would recommend you contact HP Technical Support to have your issue addressed.
    I would like to thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

Maybe you are looking for