Hi,
how are modules in dde_linux loaded exactly? For example the i915 driver seems to be loaded with `module_i915_init` which somehow connects to `module_init(i915_init)` but I can't see how this is done.
I want to add a new driver which is loaded by `module_platform_driver(...)`. What steps are required to add this driver besides adding the declaration in main.cc?
JK