Asus Z87 PRO - detector de velocidade do ventilador - falha ao 'fazer' drivers nct6775

0

Eu quero monitorar os fãs no meu HTPC devido a um aumento de temperatura recente e inexplicável de 5+ graus C. O pacote 'lm-sensors' não detecta sensores de ventoinha. Após algumas investigações descobri que existem drivers disponíveis para o chip Nuvoton no meu mobo Z87 PRO:

link

Ao criar / compilar, recebo o seguinte erro:

~/Z87 Drivers/nct6775-master$ sudo make
**arch/x86/Makefile:136: CONFIG_X86_X32 enabled but no binutils support
Makefile:652: Cannot use CONFIG_CC_STACKPROTECTOR_REGULAR: -fstack-        protector not supported by compiler
make[1]: *** No rule to make target 'Drivers/nct6775-master'.  Stop.
Makefile:30: recipe for target 'modules' failed
make: *** [modules] Error 2**
~/Z87 Drivers/nct6775-master$ 

Alguma idéia?

Muito obrigado.

    
por emare 08.04.2015 / 16:13

1 resposta

0

Sugiro a seguinte sequência:

sudo apt-get install build-essential linux-headers-generic
cd ~/Z87\ Drivers/nct6775-master
make clean
make
sudo make install
    
por chili555 08.04.2015 / 16:29