Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

[SOLVED] module not loaded at boot

New to Debian (Or Linux in general)? Ask your questions here!
Post Reply
Message
Author
babelk
Posts: 2
Joined: 2018-01-13 14:28

[SOLVED] module not loaded at boot

#1 Post by babelk »

Hello Everyone!

I already got a lot of help to fix my issue with touch screen but just have one minor issue here: I need to load the module manually after each reboot.
I do it using this command:
sudo modprobe i2c_designware_platform
I tried adding it to /etc/modules like that
i2c_designware_platform
but not working. Any idea what should I check or test?
Many thanks and cheers,
Christophe
Last edited by babelk on 2018-01-13 16:41, edited 1 time in total.

User avatar
bw123
Posts: 4015
Joined: 2011-05-09 06:02
Has thanked: 1 time
Been thanked: 28 times

Re: module not loaded at boot

#2 Post by bw123 »

Maybe you should try it's alias i2c_designware in /etc/modules I have not used the file myself. Also, it has a depends listed, so maybe tha is why it isn't working.

Keep trying.

Code: Select all

# modinfo i2c_designware_platform
filename:       /lib/modules/4.9.0-5-amd64/kernel/drivers/i2c/busses/i2c-designware-platform.ko
license:        GPL
description:    Synopsys DesignWare I2C bus adapter
author:         Baruch Siach <baruch@tkos.co.il>
alias:          platform:i2c_designware
alias:          acpi*:APMC0D0F:*
alias:          acpi*:AMDI0510:*
alias:          acpi*:AMDI0010:*
alias:          acpi*:AMD0010:*
alias:          acpi*:808622C1:*
alias:          acpi*:80860F41:*
alias:          acpi*:INT3433:*
alias:          acpi*:INT3432:*
alias:          acpi*:INT33C3:*
alias:          acpi*:INT33C2:*
depends:        i2c-designware-core
intree:         Y
vermagic:       4.9.0-5-amd64 SMP mod_unload modversions 

resigned by AI ChatGPT

babelk
Posts: 2
Joined: 2018-01-13 14:28

Re: module not loaded at boot

#3 Post by babelk »

Thousand of thanks for the answer bw123!
It was not that, I had to blacklist this module month ago, so checking syslog helped.
For records:

Code: Select all

sudo grep i2c /var/log/syslog
...
Jan 13 18:15:26 XXX systemd-modules-load[296]: Module 'i2c_designware_platform' is blacklisted
...

Post Reply