Hi
Yes typically for a similar solution in Xavier nx, I am used to compile the module separately and just load the module manually using “insmod”. I was wondering if there is a possibility similar to this here…
Regards
Athreya
Build as a loadable module does work and only in a specific scenario… Let me explain what I want may be better…
When I was working with Xavier (Jetpack 4.6) I compiled the Image file and corresponding modules and just placed them directly in the required folders, modified the FDT to load the Image I compiled and then the “loadable” module did not complain about “unknown” symbols when loaded via insmod.
Now I am trying to move to Jetpack 6.0 on Orin-nano and tried a similar procedure, try to build the Image and the loadable modules and place them in the correct folders (/boot for Image) and then when “loading” modules using insmod it does give “unknown symbols”…
However after compiling the images (without the loadable modules) and install the install using make install command but then compile the custom loadable modules separately, then the modules are loading with “insmod” without any troubles…
So the only trouble that I have now is that if I need to make changes to the base Image, then looks like I need to perform a “full” install instead of just moving the “Image” file to the correct location.