Index: trunk/i386/boot2/modules.c =================================================================== --- trunk/i386/boot2/modules.c (revision 2094) +++ trunk/i386/boot2/modules.c (revision 2095) @@ -75,6 +75,17 @@ return retVal; } +void start_built_in_module(const char* name, + const char* author, + const char* description, + UInt32 version, + UInt32 compat, + void(*start_function)(void)) +{ + start_function(); + // Notify the module system that this module really exists, specificaly, let other module link with it + module_loaded(name, author, description, version, compat); +} /* * Load all modules in the /Extra/modules/ directory