Author: ros-arm-bringup
Date: Sun Jul 27 22:07:50 2008
New Revision: 34890
URL:
http://svn.reactos.org/svn/reactos?rev=34890&view=rev
Log:
- Don't use .spec file on ARM, it doesn't work.
- For the first time, the entire ARM build of ReactOS builds (for the components we've
defined)!
- Now the user-mode fun begins.
Modified:
trunk/reactos/hal/hal/hal.rbuild
Modified: trunk/reactos/hal/hal/hal.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/hal/hal.rbuild?rev=348…
==============================================================================
--- trunk/reactos/hal/hal/hal.rbuild [iso-8859-1] (original)
+++ trunk/reactos/hal/hal/hal.rbuild [iso-8859-1] Sun Jul 27 22:07:50 2008
@@ -1,6 +1,18 @@
<?xml version="1.0"?>
<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd">
<group>
+ <if property="ARCH" value="arm">
+ <module name="hal" type="kernelmodedll">
+ <importlibrary definition="hal_arm.def" />
+ <include base="ntoskrnl">include</include>
+ <library>ntoskrnl</library>
+ <define name="_NTHAL_" />
+ <file>hal.c</file>
+ <file>hal.rc</file>
+ <file>hal.spec</file>
+ </module>
+ </if>
+ <if property="ARCH" value="i386">
<module name="hal" type="kernelmodedll">
<importlibrary definition="hal.spec.def" />
<include base="ntoskrnl">include</include>
@@ -10,6 +22,7 @@
<file>hal.rc</file>
<file>hal.spec</file>
</module>
+ </if>
<if property="ARCH" value="i386">
<module ifnot="false" name="halupalias" type="alias"
installbase="system32" installname="hal.dll"
aliasof="halup">
</module>