[RBUILD]: Use correct kernel entrypoint symbol name. Forgot to commit this earlier.

Please, next time before you harass us with e-mails, try to read your logs. LD choses a random entrypoint if the symbol cannot be found.

svn path=/trunk/; revision=45162
This commit is contained in:
Sir Richard 2010-01-20 14:09:50 +00:00
parent d6fa8735be
commit fc405bb3c2

View file

@ -1113,7 +1113,8 @@ Module::GetDefaultModuleEntrypoint () const
switch ( type )
{
case Kernel:
return "KiSystemStartup";
if (Environment::GetArch() == "arm") return "KiSystemStartup";
return "KiSystemStartup@4";
case KeyboardLayout:
case KernelModeDLL:
case KernelModeDriver: