You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In most Linux distros modules are blacklisted by creating `/etc/modprobe.d/blacklist.conf` which contains the name of the module. In LibreELEC `/etc` is inside the read-only `SYSTEM` file so we provide an alternate location `/storage/.config/modprobe.d` which is overlaid onto the normal `/etc` location during boot.
3
4
5
+
### Example
4
6
5
-
In this example there is a module named `rc-pinnacle-pctv-hd`that should be blacklisted.
7
+
To blacklist the `rc-pinnacle-pctv-hd`module. Login to your LibreELEC box using SSH and confirm the module is loaded:
6
8
7
-
* Connect with SSH to your LibreELEC box.
8
-
* list all used modules \(search for rc, ir or cir\)
9
+
```text
10
+
lsmod
11
+
```
9
12
10
-
```text
11
-
lsmod
12
-
```
13
+
If the module is loaded, append the module name to `blacklist.conf`:
This approach to blacklisting only works with modules that are compiled with `=m` to create an independent module; meaning they are loaded via modprobe. If the module has been compiled directly into the kernel with `=y` modprobe is not used and this method has no effect. Drivers that are compiled-in are normally controlled via kernel boot params.
0 commit comments