Chameleon

Chameleon Commit Details

Date:2012-10-27 20:46:31 (11 years 5 months ago)
Author:Evan Lojewski
Commit:2095
Parents: 2094
Message:Fix module system when modules are compiled into chameleon but chameleon doesn't have module support enabled...
Changes:
M/trunk/i386/boot2/modules.c

File differences

trunk/i386/boot2/modules.c
7575
7676
7777
78
79
80
81
82
83
84
85
86
87
88
7889
7990
8091
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

Archive Download the corresponding diff file

Revision: 2095