Gentoo Archives: gentoo-user

From: Alexander Kapshuk <alexander.kapshuk@×××××.com>
To: Gentoo mailing list <gentoo-user@l.g.o>
Subject: Re: [gentoo-user] modules-load restart
Date: Fri, 17 Mar 2017 17:52:25
Message-Id: CAJ1xhMU6cea-UJ3PZZcOiPGZa8VZDYRzq9+vdiL4GrRTO69Qsg@mail.gmail.com
In Reply to: [gentoo-user] modules-load restart by thelma@sys-concept.com
1 On Thu, Mar 16, 2017 at 8:04 PM, <thelma@×××××××××××.com> wrote:
2 > I compiled as module: it87
3 > run:
4 > make
5 > make modules_prepare
6 > make modules_install
7 > ...
8 > INSTALL drivers/hwmon/it87.ko
9 >
10 > add "it87" to modules.conf
11 >
12 > but running: /etc/init.d/modules-load restart
13 > does not restart the module.
14 >
15 > Do I need to restart the box, this procedure work on a different box
16 > without restart.
17 >
18 > --
19 > Thelma
20 >
21
22 Since 'it87' is a sensor module, I have it listed in
23 '/etc/conf.d/lm_sensors', which hasn't been mentioned yet:
24
25 grep '^[^#]' /etc/conf.d/lm_sensors
26 LOADMODULES=yes
27 INITSENSORS=yes
28 HWMON_MODULES="coretemp it87"
29 MODULE_0=coretemp
30 MODULE_1=it87
31
32 As well as in '/etc/conf.d/modules'.
33
34 Hope this helps.