Tiny Core Linux

Tiny Core Base => Corepure64 => Topic started by: HoerMirAuf on May 08, 2023, 03:41:37 AM

Title: Compiling a missing kernel modul
Post by: HoerMirAuf on May 08, 2023, 03:41:37 AM
I'm trying to compile a missing kernel modul for a intel Soc Soundcard cht-bsw-rt5672

Made the steps from this post:
http://forum.tinycorelinux.net/index.php/topic,26236.0.html (http://forum.tinycorelinux.net/index.php/topic,26236.0.html)

And enable the driver with "make menuconfig".

All compiled well but loading the driver with insmod run in a "unknow symbol" error.
Can anyone give me a hint, how to compile a working driver modul from kernel source?
Title: Re: Compiling a missing kernel modul
Post by: Juanito on May 08, 2023, 04:08:01 AM
This typically means that your new module depends on another module(s) that it cannot find.

Try the command "modinfo /path-to-module/new-module-name" and check the "depends" line.
Title: Re: Compiling a missing kernel modul
Post by: HoerMirAuf on May 08, 2023, 08:39:52 AM
Ahhhh !  ;D

Thank you very much ! Now i could load the modul succesfully  :)