mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
[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:
parent
d6fa8735be
commit
fc405bb3c2
1 changed files with 2 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue