Author: tkreuzer Date: Fri Jul 29 13:23:33 2011 New Revision: 52997
URL: http://svn.reactos.org/svn/reactos?rev=52997&view=rev Log: Add rbuild files
Added: branches/GSoC_2011/GdiFontDriver/hal/hal.pspec - copied unchanged from r52920, trunk/reactos/hal/hal.pspec branches/GSoC_2011/GdiFontDriver/hal/hal.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halarm/directory.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halarm/hal.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halarm/hal_generic.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halarm/versa/halup.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halppc/directory.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halppc/generic/generic.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halppc/up/halup.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/directory.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/hal.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_acpi.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_mp.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_pcat.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_up.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_mini.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/halacpi.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/halamd64.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/halmps.rbuild (with props) branches/GSoC_2011/GdiFontDriver/hal/halx86/halxbox.rbuild (with props)
Added: branches/GSoC_2011/GdiFontDriver/hal/hal.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/hal.... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/hal.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/hal.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,27 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../tools/rbuild/project.dtd"> +<group xmlns:xi="http://www.w3.org/2001/XInclude"> + + <if property="ARCH" value="i386"> + <directory name="halx86"> + <xi:include href="halx86/directory.rbuild" /> + </directory> + </if> + + <if property="ARCH" value="amd64"> + <directory name="halx86"> + <xi:include href="halx86/directory.rbuild" /> + </directory> + </if> + + <if property="ARCH" value="powerpc"> + <directory name="halppc"> + <xi:include href="halppc/directory.rbuild" /> + </directory> + </if> + <if property="ARCH" value="arm"> + <directory name="halarm"> + <xi:include href="halarm/directory.rbuild" /> + </directory> + </if> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/hal.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halarm/directory.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/hala... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halarm/directory.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halarm/directory.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,18 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group xmlns:xi="http://www.w3.org/2001/XInclude"> + + <xi:include href="hal_generic.rbuild" /> + + <if property="SARCH" value="versatile"> + <xi:include href="versa/halup.rbuild" /> + </if> + + <if property="SARCH" value="omap3-beagle"> + <xi:include href="omap3/halup.rbuild" /> + </if> + + <if property="SARCH" value="omap3-zoom2"> + <xi:include href="omap3/halup.rbuild" /> + </if> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halarm/directory.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halarm/hal.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/hala... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halarm/hal.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halarm/hal.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,18 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group xmlns:xi="http://www.w3.org/2001/XInclude"> + <module name="hal" type="kernelmodedll" entrypoint="HalInitSystem@8" installbase="system32" installname="hal.dll"> + <importlibrary base="hal" definition="../hal.pspec" /> + <bootstrap installbase="$(CDOUTPUT)/system32" /> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHAL_" /> + <library>hal_generic</library> + <library>ntoskrnl</library> + + <directory name="versa"> + <file>halinit_up.c</file> + <file>halup.rc</file> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halarm/hal.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halarm/hal_generic.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/hala... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halarm/hal_generic.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halarm/hal_generic.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,33 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group> + <module name="hal_generic" type="objectlibrary"> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHAL_" /> + <directory name="generic"> + <file>beep.c</file> + <file>bus.c</file> + <file>cache.S</file> + <file>dma.c</file> + <file>drive.c</file> + <file>display.c</file> + <file>fmutex.c</file> + <file>halinit.c</file> + <file>misc.c</file> + <file>pic.c</file> + <file>portio.c</file> + <file>processor.c</file> + <file>profil.c</file> + <file>reboot.c</file> + <file>rtc.c</file> + <file>spinlock.c</file> + <file>sysinfo.c</file> + <file>timer.c</file> + <file>usage.c</file> + </directory> + <directory name="include"> + <pch>hal.h</pch> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halarm/hal_generic.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halarm/versa/halup.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/hala... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halarm/versa/halup.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halarm/versa/halup.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,16 @@ +<?xml version="1.0"?> +<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd"> +<module name="hal" type="kernelmodedll" entrypoint="HalInitSystem" installbase="system32" installname="hal.dll"> + <importlibrary base="hal" definition="../hal.pspec" /> + <bootstrap installbase="$(CDOUTPUT)/system32" nameoncd="hal.dll" /> + <include base="hal">include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHAL_" /> + <library>hal_generic</library> + <library>ntoskrnl</library> + <library>kdcom</library> + <directory name="versa"> + <file>halinit_up.c</file> + <file>halup.rc</file> + </directory> +</module>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halarm/versa/halup.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halppc/directory.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halp... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halppc/directory.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halppc/directory.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,10 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group xmlns:xi="http://www.w3.org/2001/XInclude"> + <directory name="generic"> + <xi:include href="generic/generic.rbuild" /> + </directory> + <directory name="up"> + <xi:include href="up/halup.rbuild" /> + </directory> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halppc/directory.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halppc/generic/generic.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halp... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halppc/generic/generic.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halppc/generic/generic.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,29 @@ +<?xml version="1.0"?> +<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd"> +<module name="halppc_generic" type="objectlibrary"> + <include base="halppc_generic">../include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHAL_" /> + <file>beep.c</file> + <file>bus.c</file> + <file>cmos.c</file> + <file>display.c</file> + <file>dma.c</file> + <file>drive.c</file> + <file>enum.c</file> + <file>fmutex.c</file> + <file>font.c</file> + <file>halinit.c</file> + <file>irql.c</file> + <file>isa.c</file> + <file>misc.c</file> + <file>pci.c</file> + <file>portio.c</file> + <file>processor.c</file> + <file>profil.c</file> + <file>reboot.c</file> + <file>spinlock.c</file> + <file>sysinfo.c</file> + <file>timer.c</file> + <pch>../include/hal.h</pch> +</module>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halppc/generic/generic.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halppc/up/halup.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halp... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halppc/up/halup.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halppc/up/halup.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,13 @@ +<?xml version="1.0"?> +<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd"> +<module name="hal" type="kernelmodedll" entrypoint="HalInitSystem"> + <importlibrary definition="../../hal/hal.pspec" /> + <bootstrap installbase="$(CDOUTPUT)/system32" nameoncd="hal.dll" /> + <include base="halppc_generic">../include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHAL_" /> + <library>halppc_generic</library> + <library>ntoskrnl</library> + <file>halinit_up.c</file> + <file>halup.rc</file> +</module>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halppc/up/halup.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/directory.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/directory.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/directory.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,25 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group xmlns:xi="http://www.w3.org/2001/XInclude"> + + <xi:include href="hal_generic.rbuild" /> + <xi:include href="hal_generic_pcat.rbuild" /> + <xi:include href="hal_generic_acpi.rbuild" /> + + <if property="ARCH" value="i386"> + <xi:include href="hal_generic_up.rbuild" /> + <xi:include href="hal_generic_mp.rbuild" /> + <xi:include href="hal_mini.rbuild" /> + <xi:include href="hal.rbuild" /> + <xi:include href="halacpi.rbuild" /> + <xi:include href="halxbox.rbuild" /> + <if property="BUILD_MP" value="1"> + <xi:include href="halmps.rbuild" /> + </if> + </if> + + <if property="ARCH" value="amd64"> + <xi:include href="halamd64.rbuild" /> + </if> + +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/directory.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/hal.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/hal.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,21 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group xmlns:xi="http://www.w3.org/2001/XInclude"> + <module name="hal" type="kernelmodedll" entrypoint="HalInitSystem@8" installbase="system32" installname="hal.dll"> + <importlibrary base="hal" definition="../hal.pspec" /> + <bootstrap installbase="$(CDOUTPUT)/system32" /> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <library>hal_generic</library> + <library>hal_generic_pcat</library> + <library>hal_generic_up</library> + <library>ntoskrnl</library> + <library>libcntpr</library> + <directory name="up"> + <file>halinit_up.c</file> + <file>halup.rc</file> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,35 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group> + <module name="hal_generic" type="objectlibrary"> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <directory name="generic"> + <file>beep.c</file> + <file>cmos.c</file> + <file>display.c</file> + <file>dma.c</file> + <file>drive.c</file> + <file>memory.c</file> + <file>misc.c</file> + <file>profil.c</file> + <file>reboot.c</file> + <file>sysinfo.c</file> + <file>timer.c</file> + <file>usage.c</file> + <if property="ARCH" value="i386"> + <file>bios.c</file> + <directory name="i386"> + <file>portio.c</file> + <file>systimer.S</file> + <file>trap.S</file> + </directory> + </if> + </directory> + <directory name="include"> + <pch>hal.h</pch> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_acpi.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_acpi.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_acpi.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,26 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group> + <module name="hal_generic_acpi" type="objectlibrary"> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <define name="CONFIG_ACPI" /> + <directory name="generic"> + <directory name="acpi"> + <file>halacpi.c</file> + <file>halpnpdd.c</file> + <file>busemul.c</file> + </directory> + <directory name="legacy"> + <directory name="bus"> + <file>pcibus.c</file> + </directory> + </directory> + <if property="ARCH" value="i386"> + <file>halinit.c</file> + </if> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_acpi.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_mp.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_mp.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_mp.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,23 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group> + <module name="hal_generic_mp" type="objectlibrary"> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <define name="CONFIG_SMP" /> + <directory name="generic"> + <file>spinlock.c</file> + </directory> + <directory name="mp"> + <file>apic.c</file> + <file>halinit_mp.c</file> + <file>ioapic.c</file> + <file>ipi_mp.c</file> + <file>mpconfig.c</file> + <file>processor_mp.c</file> + <file>halmp.rc</file> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_mp.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_pcat.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_pcat.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_pcat.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,27 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group> + <module name="hal_generic_pcat" type="objectlibrary"> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <directory name="generic"> + <directory name="legacy"> + <directory name="bus"> + <file>bushndlr.c</file> + <file>cmosbus.c</file> + <file>isabus.c</file> + <file>pcibus.c</file> + <file>pcidata.c</file> + <file>sysbus.c</file> + </directory> + <file>bussupp.c</file> + <file>halpcat.c</file> + </directory> + <if property="ARCH" value="i386"> + <file>halinit.c</file> + </if> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_pcat.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_up.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_up.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_up.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,17 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group> + <module name="hal_generic_up" type="objectlibrary"> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <directory name="generic"> + <file>spinlock.c</file> + </directory> + <directory name="up"> + <file>pic.c</file> + <file>processor.c</file> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_generic_up.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_mini.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_mini.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_mini.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,46 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group> + <module name="mini_hal" type="objectlibrary" crt="static"> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <define name="_BLDR_" /> + <define name="_MINIHAL_" /> + <directory name="generic"> + <directory name="legacy"> + <directory name="bus"> + <file>bushndlr.c</file> + <file>cmosbus.c</file> + <file>isabus.c</file> + <file>pcibus.c</file> + <file>sysbus.c</file> + </directory> + <file>bussupp.c</file> + </directory> + <file>beep.c</file> + <file>bios.c</file> + <file>cmos.c</file> + <file>dma.c</file> + <file>display.c</file> + <file>drive.c</file> + <file>misc.c</file> + <file>profil.c</file> + <file>reboot.c</file> + <file>spinlock.c</file> + <file>sysinfo.c</file> + <file>timer.c</file> + <file>usage.c</file> + <directory name="i386"> + <file>portio.c</file> + <file>systimer.S</file> + </directory> + </directory> + <directory name="up"> + <file>halinit_up.c</file> + <file>pic.c</file> + <file>processor.c</file> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/hal_mini.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/halacpi.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/halacpi.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/halacpi.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,22 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group xmlns:xi="http://www.w3.org/2001/XInclude"> + <module name="halacpi" type="kernelmodedll" entrypoint="HalInitSystem@8" installbase="system32" installname="halacpi.dll"> + <importlibrary base="hal" definition="../hal.pspec" /> + <bootstrap installbase="$(CDOUTPUT)/system32" /> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <define name="CONFIG_ACPI" /> + <library>hal_generic</library> + <library>hal_generic_acpi</library> + <library>hal_generic_up</library> + <library>ntoskrnl</library> + <library>libcntpr</library> + <directory name="up"> + <file>halinit_up.c</file> + <file>halup.rc</file> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/halacpi.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/halamd64.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/halamd64.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/halamd64.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,33 @@ +<?xml version="1.0"?> +<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd"> +<group xmlns:xi="http://www.w3.org/2001/XInclude"> +<module name="hal" type="kernelmodedll" entrypoint="HalInitSystem" installbase="system32" installname="hal.dll"> + <importlibrary base="hal" definition="../hal.pspec" /> + <bootstrap installbase="$(CDOUTPUT)/system32" nameoncd="hal.dll" /> + <include base="hal">include</include> + <include base="ntoskrnl">include</include> + <!-- include base="x86emu">.</include --> + <define name="_DISABLE_TIDENTS" /> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <define name="_X86BIOS_" /> + <library>hal_generic</library> + <library>hal_generic_acpi</library> + <library>ntoskrnl</library> + <!-- library>x86emu</library --> + + <directory name="generic"> + <file>spinlock.c</file> + </directory> + + <directory name="amd64"> + <file>x86bios.c</file> + <file>halinit.c</file> + <file>stubs.c</file> + <file>systimer.S</file> + <file>processor.c</file> + </directory> + +</module> +</group> +
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/halamd64.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/halmps.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/halmps.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/halmps.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,27 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group xmlns:xi="http://www.w3.org/2001/XInclude"> + <module name="halmps" type="kernelmodedll" entrypoint="HalInitSystem@8"> + <importlibrary base="hal" definition="../hal.pspec" /> + <bootstrap installbase="$(CDOUTPUT)/system32" /> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="CONFIG_SMP" /> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <library>hal_generic</library> + <library>hal_generic_pcat</library> + <library>hal_generic_mp</library> + <library>ntoskrnl</library> + <library>libcntpr</library> + <directory name="mp"> + <if property="ARCH" value="i386"> + <directory name="i386"> + <file>mps.S</file> + <file>mpsboot.asm</file> + <file>mpsirql.c</file> + </directory> + </if> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/halmps.rbuild ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/hal/halx86/halxbox.rbuild URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/hal/halx... ============================================================================== --- branches/GSoC_2011/GdiFontDriver/hal/halx86/halxbox.rbuild (added) +++ branches/GSoC_2011/GdiFontDriver/hal/halx86/halxbox.rbuild [iso-8859-1] Fri Jul 29 13:23:33 2011 @@ -1,0 +1,23 @@ +<?xml version="1.0"?> +<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> +<group xmlns:xi="http://www.w3.org/2001/XInclude"> + <module name="halxbox" type="kernelmodedll" entrypoint="HalInitSystem@8"> + <importlibrary base="hal" definition="../hal.pspec" /> + <include>include</include> + <include base="ntoskrnl">include</include> + <define name="_NTHALDLL_" /> + <define name="_NTHAL_" /> + <define name="SARCH_XBOX" /> + <library>hal_generic</library> + <library>hal_generic_pcat</library> + <library>hal_generic_up</library> + <library>ntoskrnl</library> + <library>libcntpr</library> + <directory name="xbox"> + <file>halinit_xbox.c</file> + <file>part_xbox.c</file> + <file>halxbox.rc</file> + <pch>halxbox.h</pch> + </directory> + </module> +</group>
Propchange: branches/GSoC_2011/GdiFontDriver/hal/halx86/halxbox.rbuild ------------------------------------------------------------------------------ svn:eol-style = native