Author: tkreuzer
Date: Fri Jul 29 13:19:34 2011
New Revision: 52994
URL:
http://svn.reactos.org/svn/reactos?rev=52994&view=rev
Log:
Add rbuild files
Added:
branches/GSoC_2011/GdiFontDriver/boot/armllb/armllb.rbuild (with props)
branches/GSoC_2011/GdiFontDriver/boot/boot.rbuild (with props)
branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootcd/bootcd.rbuild (with props)
branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootcdregtest/bootcdregtest.rbuild
(with props)
branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootdata.rbuild (with props)
branches/GSoC_2011/GdiFontDriver/boot/bootdata/livecd/livecd.rbuild (with props)
branches/GSoC_2011/GdiFontDriver/boot/bootdata/livecdregtest/livecdregtest.rbuild
(with props)
branches/GSoC_2011/GdiFontDriver/boot/bootdata/packages/reactos.dff (with props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/bootsect/bootsect.rbuild (with props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/fdebug/fdebug.rbuild (with props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr.rbuild (with props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr.rbuild (with props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_arch.rbuild (with
props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_base.rbuild (with
props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_base64k.rbuild (with
props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_main.rbuild (with
props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_startup.rbuild (with
props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/setupldr.rbuild (with props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/setupldr_main.rbuild (with
props)
branches/GSoC_2011/GdiFontDriver/boot/freeldr/install/installfreeldr.rbuild (with
props)
Added: branches/GSoC_2011/GdiFontDriver/boot/armllb/armllb.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/ar…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/armllb/armllb.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/armllb/armllb.rbuild [iso-8859-1] Fri Jul 29
13:19:34 2011
@@ -1,0 +1,80 @@
+<?xml version="1.0"?>
+<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd">
+<group>
+<module name="armllb" type="kernel" entrypoint="_start"
installbase=".." installname="armllb.bin">
+ <bootstrap installbase="loader" />
+ <library>libcntpr</library>
+ <library>rtl</library>
+ <include base="armllb">./inc</include>
+ <if property="SARCH" value="omap3-beagle">
+ <define name="_OMAP3_" />
+ <define name="_BEAGLE_" />
+ <group linkerset="ld">
+ <linkerflag>-Wl,--image-base=0x401FEFF8</linkerflag>
+ </group>
+ </if>
+ <if property="SARCH" value="omap3-zoom2">
+ <define name="_OMAP3_" />
+ <define name="_ZOOM2_" />
+ <group linkerset="ld">
+ <linkerflag>--image-base=0x80FFF000</linkerflag>
+ </group>
+ </if>
+ <if property="SARCH" value="versatile">
+ <define name="_VERSATILE_" />
+ <group linkerset="ld">
+ <linkerflag>-Wl,--image-base=0xF000</linkerflag>
+ </group>
+ </if>
+ <file first="true">boot.s</file>
+ <file>main.c</file>
+ <file>crtsupp.c</file>
+ <file>envir.c</file>
+ <file>fw.c</file>
+ <directory name="hw">
+ <file>keyboard.c</file>
+ <file>matrix.c</file>
+ <file>serial.c</file>
+ <file>time.c</file>
+ <file>video.c</file>
+ <if property="SARCH" value="omap3-zoom2">
+ <directory name="omap3-zoom2">
+ <file>hwinfo.c</file>
+ <file>hwinit.c</file>
+ <file>hwlcd.c</file>
+ <file>hwsynkp.c</file>
+ <file>hwtwl40x.c</file>
+ <file>hwuart.c</file>
+ </directory>
+ </if>
+ <if property="SARCH" value="omap3-beagle">
+ <directory name="omap3-beagle">
+ <file>hwuart.c</file>
+ <file>hwinfo.c</file>
+ <file>hwinit.c</file>
+ </directory>
+ </if>
+ <if property="SARCH" value="versatile">
+ <directory name="versatile">
+ <file>hwclcd.c</file>
+ <file>hwkmi.c</file>
+ <file>hwuart.c</file>
+ <file>hwinfo.c</file>
+ <file>hwinit.c</file>
+ </directory>
+ </if>
+ </directory>
+ <directory name="os">
+ <file>loader.c</file>
+ </directory>
+ <group compilerset="gcc">
+ <compilerflag>-fms-extensions</compilerflag>
+ <compilerflag>-ffreestanding</compilerflag>
+ <compilerflag>-fno-builtin</compilerflag>
+ <compilerflag>-fno-inline</compilerflag>
+ <compilerflag>-fno-zero-initialized-in-bss</compilerflag>
+ <compilerflag>-Os</compilerflag>
+
+ </group>
+</module>
+</group>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/armllb/armllb.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/boot.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/bo…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/boot.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/boot.rbuild [iso-8859-1] Fri Jul 29 13:19:34
2011
@@ -1,0 +1,15 @@
+<?xml version="1.0"?>
+<!DOCTYPE group SYSTEM "../tools/rbuild/project.dtd">
+<group
xmlns:xi="http://www.w3.org/2001/XInclude">
+ <directory name="freeldr">
+ <xi:include href="freeldr/freeldr.rbuild" />
+ </directory>
+ <if property="ARCH" value="arm">
+ <directory name="armllb">
+ <xi:include href="armllb/armllb.rbuild" />
+ </directory>
+ </if>
+ <directory name="bootdata">
+ <xi:include href="bootdata/bootdata.rbuild" />
+ </directory>
+</group>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/boot.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootcd/bootcd.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/bo…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootcd/bootcd.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootcd/bootcd.rbuild [iso-8859-1] Fri
Jul 29 13:19:34 2011
@@ -1,0 +1,15 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<group
xmlns:xi="http://www.w3.org/2001/XInclude">
+<if property="ARCH" value="i386">
+ <module name="bootcd" type="iso"
output="ReactOS.iso">
+ <bootsector>isoboot</bootsector>
+ <!--cdfile installbase="$(CDOUTPUT)">unattend.inf</cdfile-->
+ </module>
+</if>
+<ifnot property="ARCH" value="i386">
+ <module name="bootcd" type="iso"
output="ReactOS-$(ARCH).iso">
+ <bootsector>isoboot</bootsector>
+ </module>
+</ifnot>
+</group>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootcd/bootcd.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootcdregtest/bootcdregtest.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/bo…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootcdregtest/bootcdregtest.rbuild
(added)
+++ branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootcdregtest/bootcdregtest.rbuild
[iso-8859-1] Fri Jul 29 13:19:34 2011
@@ -1,0 +1,6 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<module name="bootcdregtest" type="iso"
output="ReactOS-RegTest.iso">
+ <bootsector>isobtrt</bootsector>
+ <cdfile installbase="$(CDOUTPUT)">unattend.inf</cdfile>
+</module>
Propchange:
branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootcdregtest/bootcdregtest.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootdata.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/bo…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootdata.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootdata.rbuild [iso-8859-1] Fri Jul 29
13:19:34 2011
@@ -1,0 +1,28 @@
+<?xml version="1.0"?>
+<!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd">
+<group
xmlns:xi="http://www.w3.org/2001/XInclude">
+ <cdfile>autorun.inf</cdfile>
+ <cdfile>icon.ico</cdfile>
+ <cdfile>readme.txt</cdfile>
+ <cdfile nameoncd="freeldr.ini">bootcd.ini</cdfile>
+
+ <cdfile installbase="$(CDOUTPUT)"
nameoncd="hivecls.inf">hivecls_$(ARCH).inf</cdfile>
+ <cdfile installbase="$(CDOUTPUT)"
nameoncd="hivedef.inf">hivedef_$(ARCH).inf</cdfile>
+ <cdfile installbase="$(CDOUTPUT)"
nameoncd="hivesft.inf">hivesft_$(ARCH).inf</cdfile>
+ <cdfile installbase="$(CDOUTPUT)"
nameoncd="hivesys.inf">hivesys_$(ARCH).inf</cdfile>
+ <cdfile installbase="$(CDOUTPUT)">txtsetup.sif</cdfile>
+ <cdfile installbase="$(CDOUTPUT)"
nameoncd="unattend.inf.sample">unattend.inf</cdfile>
+
+ <directory name="bootcd">
+ <xi:include href="bootcd/bootcd.rbuild" />
+ </directory>
+ <directory name="livecd">
+ <xi:include href="livecd/livecd.rbuild" />
+ </directory>
+ <directory name="bootcdregtest">
+ <xi:include href="bootcdregtest/bootcdregtest.rbuild" />
+ </directory>
+ <directory name="livecdregtest">
+ <xi:include href="livecdregtest/livecdregtest.rbuild" />
+ </directory>
+</group>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/bootdata/bootdata.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/bootdata/livecd/livecd.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/bo…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/bootdata/livecd/livecd.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/bootdata/livecd/livecd.rbuild [iso-8859-1] Fri
Jul 29 13:19:34 2011
@@ -1,0 +1,14 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<group
xmlns:xi="http://www.w3.org/2001/XInclude">
+<if property="ARCH" value="i386">
+ <module name="livecd" type="liveiso"
output="ReactOS-LiveCD.iso">
+ <bootsector>isoboot</bootsector>
+ </module>
+</if>
+<ifnot property="ARCH" value="i386">
+ <module name="livecd" type="liveiso"
output="ReactOS-LiveCD-$(ARCH).iso">
+ <bootsector>isoboot</bootsector>
+ </module>
+</ifnot>
+</group>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/bootdata/livecd/livecd.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/bootdata/livecdregtest/livecdregtest.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/bo…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/bootdata/livecdregtest/livecdregtest.rbuild
(added)
+++ branches/GSoC_2011/GdiFontDriver/boot/bootdata/livecdregtest/livecdregtest.rbuild
[iso-8859-1] Fri Jul 29 13:19:34 2011
@@ -1,0 +1,5 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<module name="livecdregtest" type="liveiso"
output="ReactOS-LiveCD-RegTest.iso">
+ <bootsector>isobtrt</bootsector>
+</module>
Propchange:
branches/GSoC_2011/GdiFontDriver/boot/bootdata/livecdregtest/livecdregtest.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/bootdata/packages/reactos.dff
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/bo…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/bootdata/packages/reactos.dff (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/bootdata/packages/reactos.dff [iso-8859-1] Fri
Jul 29 13:19:34 2011
@@ -1,0 +1,879 @@
+; Main ReactOS package
+
+.Set DiskLabelTemplate="ReactOS" ; Label of disk
+.Set CabinetNameTemplate="reactos.cab" ; reactos.cab
+.Set InfFileName="reactos.inf" ; reactos.inf
+
+
+;.Set Cabinet=on
+;.Set Compress=on
+
+.InfBegin
+[Version]
+Signature = "$ReactOS$"
+
+[Directories]
+1 = system32
+2 = system32\drivers
+3 = Fonts
+4 =
+5 = system32\drivers\etc
+6 = inf
+7 = bin
+8 = media
+
+.InfEnd
+
+; Contents of disk
+.InfBegin
+[SourceFiles]
+.InfEnd
+
+
+; Base files
+base\applications\cacls\cacls.exe 1
+base\applications\calc\calc.exe 1
+base\applications\charmap\charmap.exe 1
+base\applications\cmdutils\dbgprint\dbgprint.exe 1
+base\applications\cmdutils\doskey\doskey.exe 1
+base\applications\cmdutils\find\find.exe 1
+base\applications\cmdutils\hostname\hostname.exe 1
+base\applications\cmdutils\lodctr\lodctr.exe 1
+base\applications\cmdutils\more\more.exe 1
+base\applications\cmdutils\reg\reg.exe 1
+base\applications\cmdutils\xcopy\xcopy.exe 1
+base\applications\control\control.exe 1
+base\applications\dxdiag\dxdiag.exe 1
+base\applications\extrac32\extrac32.exe 1
+base\applications\findstr\findstr.exe 1
+base\applications\fontview\fontview.exe 1
+base\applications\iexplore\iexplore.exe 1
+base\applications\games\solitaire\sol.exe 1
+base\applications\games\spider\spider.exe 1
+base\applications\games\winmine\winmine.exe 1
+base\applications\hh\hh.exe 4
+base\applications\kbswitch\kbswitch.exe 1
+base\applications\kbswitch\kbsdll\kbsdll.dll 1
+base\applications\logoff\logoff.exe 1
+base\applications\magnify\magnify.exe 1
+base\applications\mplay32\mplay32.exe 1
+base\applications\msconfig\msconfig.exe 1
+base\applications\mscutils\devmgmt\devmgmt.exe 1
+base\applications\mscutils\eventvwr\eventvwr.exe 1
+base\applications\mscutils\servman\servman.exe 1
+base\applications\mspaint\mspaint.exe 1
+base\applications\mstsc\mstsc.exe 1
+base\applications\network\arp\arp.exe 1
+base\applications\network\dwnl\dwnl.exe 1
+base\applications\network\finger\finger.exe 1
+base\applications\network\ftp\ftp.exe 1
+base\applications\network\ipconfig\ipconfig.exe 1
+base\applications\network\net\net.exe 1
+base\applications\network\netstat\netstat.exe 1
+base\applications\network\nslookup\nslookup.exe 1
+base\applications\network\ping\ping.exe 1
+base\applications\network\route\route.exe 1
+base\applications\network\telnet\telnet.exe 1
+base\applications\network\tracert\tracert.exe 1
+base\applications\network\whois\whois.exe 1
+base\applications\notepad\notepad.exe 1
+base\applications\rapps\rapps.exe 1
+base\applications\regedit\regedit.exe 4
+base\applications\regedit\clb\clb.dll 1
+base\applications\regedt32\regedt32.exe 1
+base\applications\sc\sc.exe 1
+base\applications\screensavers\3dtext\3dtext.scr 1
+base\applications\screensavers\logon\logon.scr 1
+base\applications\shutdown\shutdown.exe 1
+base\applications\sndrec32\sndrec32.exe 1
+base\applications\sndvol32\sndvol32.exe 1
+base\applications\taskmgr\taskmgr.exe 1
+base\applications\winhlp32\winhlp32.exe 4
+base\applications\winver\winver.exe 1
+base\applications\wordpad\wordpad.exe 1
+base\applications\write\write.exe 1
+
+base\services\audiosrv\audiosrv.exe 1
+base\services\eventlog\eventlog.exe 1
+base\services\rpcss\rpcss.exe 1
+base\services\spoolsv\spoolsv.exe 1
+base\services\svchost\svchost.exe 1
+base\services\tcpsvcs\tcpsvcs.exe 1
+base\services\tcpsvcs\quotes 5
+base\services\telnetd\telnetd.exe 1
+base\services\umpnpmgr\umpnpmgr.exe 1
+base\services\wlansvc\wlansvc.exe 1
+
+base\setup\setup\setup.exe 1
+base\setup\vmwinst\vmwinst.exe 1
+
+base\shell\cmd\cmd.exe 1
+base\shell\explorer\explorer.exe 4 optional
+base\shell\explorer\explorer-cfg-template.xml 4 optional
+base\shell\explorer\notifyhook\notifyhook.dll 1 optional
+base\shell\explorer-new\explorer_new.exe 4 optional
+
+base\system\autochk\autochk.exe 1
+base\system\bootok\bootok.exe 1
+base\system\expand\expand.exe 1
+base\system\subst\subst.exe 1
+base\system\format\format.exe 1
+base\system\lsass\lsass.exe 1
+base\system\msiexec\msiexec.exe 1
+base\system\regsvr32\regsvr32.exe 1
+base\system\rundll32\rundll32.exe 1
+base\system\runonce\runonce.exe 1
+base\system\services\services.exe 1
+base\system\smss\smss.exe 1
+base\system\userinit\userinit.exe 1
+base\system\winlogon\winlogon.exe 1
+
+; Dynamic Link Libraries
+dll\3rdparty\dxtn\dxtn.dll 1 optional
+dll\3rdparty\libjpeg\libjpeg.dll 1
+dll\3rdparty\libpng\libpng.dll 1
+dll\3rdparty\libtiff\libtiff.dll 1
+dll\3rdparty\libxslt\libxslt.dll 1
+dll\3rdparty\mesa32\mesa32.dll 1
+
+dll\cpl\access\access.cpl 1
+dll\cpl\appwiz\appwiz.cpl 1
+dll\cpl\console\console.dll 1
+dll\cpl\desk\desk.cpl 1
+dll\cpl\hdwwiz\hdwwiz.cpl 1
+dll\cpl\input\input.dll 1
+dll\cpl\inetcpl\inetcpl.cpl 1
+dll\cpl\intl\intl.cpl 1
+dll\cpl\joy\joy.cpl 1
+;dll\cpl\liccpa\liccpa.cpl 1
+dll\cpl\main\main.cpl 1
+dll\cpl\mmsys\mmsys.cpl 1
+dll\cpl\ncpa\ncpa.cpl 1
+;dll\cpl\odbccp32\odbccp32.cpl 1
+dll\cpl\powercfg\powercfg.cpl 1
+dll\cpl\sysdm\sysdm.cpl 1
+;dll\cpl\telephon\telephon.cpl 1
+dll\cpl\timedate\timedate.cpl 1
+;dll\cpl\usrmgr\usrmgr.cpl 1
+
+dll\directx\amstream\amstream.dll 1
+;dll\directx\bdaplgin\bdaplgin.ax 1
+dll\directx\d3d8thk\d3d8thk.dll 1
+dll\directx\devenum\devenum.dll 1
+dll\directx\dinput\dinput.dll 1
+dll\directx\dinput8\dinput8.dll 1
+dll\directx\dmusic\dmusic.dll 1
+dll\directx\dplay\dplay.dll 1
+dll\directx\dplayx\dplayx.dll 1
+dll\directx\dsound\dsound.dll 1
+dll\directx\dxdiagn\dxdiagn.dll 1
+dll\directx\ksproxy\ksproxy.ax 1
+dll\directx\ksuser\ksuser.dll 1
+dll\directx\msdmo\msdmo.dll 1
+;dll\directx\msdvbnp\msdvbnp.ax 1
+;dll\directx\msvidctl\msvidctl.dll 1
+dll\directx\qedit\qedit.dll 1
+dll\directx\quartz\quartz.dll 1
+dll\directx\wine\ddraw\ddraw.dll 1
+dll\directx\wine\d3d8\d3d8.dll 1
+dll\directx\wine\d3d9\d3d9.dll 1
+dll\directx\wine\wined3d\wined3d.dll 1
+
+dll\keyboard\kbda1\kbda1.dll 1
+dll\keyboard\kbda2\kbda2.dll 1
+dll\keyboard\kbda3\kbda3.dll 1
+dll\keyboard\kbdal\kbdal.dll 1
+dll\keyboard\kbdarme\kbdarme.dll 1
+dll\keyboard\kbdarmw\kbdarmw.dll 1
+dll\keyboard\kbdaze\kbdaze.dll 1
+dll\keyboard\kbdazel\kbdazel.dll 1
+dll\keyboard\kbdbe\kbdbe.dll 1
+dll\keyboard\kbdbga\kbdbga.dll 1
+dll\keyboard\kbdbgm\kbdbgm.dll 1
+dll\keyboard\kbdbgt\kbdbgt.dll 1
+dll\keyboard\kbdblr\kbdblr.dll 1
+dll\keyboard\kbdbr\kbdbr.dll 1
+dll\keyboard\kbdbur\kbdbur.dll 1
+dll\keyboard\kbdcan\kbdcan.dll 1
+dll\keyboard\kbdcr\kbdcr.dll 1
+dll\keyboard\kbdcz\kbdcz.dll 1
+dll\keyboard\kbdcz1\kbdcz1.dll 1
+dll\keyboard\kbdda\kbdda.dll 1
+dll\keyboard\kbddv\kbddv.dll 1
+dll\keyboard\kbdes\kbdes.dll 1
+dll\keyboard\kbdest\kbdest.dll 1
+dll\keyboard\kbdfc\kbdfc.dll 1
+dll\keyboard\kbdfi\kbdfi.dll 1
+dll\keyboard\kbdfr\kbdfr.dll 1
+dll\keyboard\kbdgeo\kbdgeo.dll 1
+dll\keyboard\kbdgerg\kbdgerg.dll 1
+dll\keyboard\kbdgneo\kbdgneo.dll 1
+dll\keyboard\kbdgr\kbdgr.dll 1
+dll\keyboard\kbdgrist\kbdgrist.dll 1
+dll\keyboard\kbdhe\kbdhe.dll 1
+dll\keyboard\kbdheb\kbdheb.dll 1
+dll\keyboard\kbdhu\kbdhu.dll 1
+dll\keyboard\kbdic\kbdic.dll 1
+dll\keyboard\kbdinasa\kbdinasa.dll 1
+dll\keyboard\kbdinben\kbdinben.dll 1
+dll\keyboard\kbdindev\kbdindev.dll 1
+dll\keyboard\kbdinguj\kbdinguj.dll 1
+dll\keyboard\kbdinmal\kbdinmal.dll 1
+dll\keyboard\kbdir\kbdir.dll 1
+dll\keyboard\kbdit\kbdit.dll 1
+dll\keyboard\kbdja\kbdja.dll 1
+dll\keyboard\kbdkaz\kbdkaz.dll 1
+dll\keyboard\kbdko\kbdko.dll 1
+dll\keyboard\kbdla\kbdla.dll 1
+dll\keyboard\kbdlt1\kbdlt1.dll 1
+dll\keyboard\kbdlv\kbdlv.dll 1
+dll\keyboard\kbdmac\kbdmac.dll 1
+dll\keyboard\kbdne\kbdne.dll 1
+dll\keyboard\kbdno\kbdno.dll 1
+dll\keyboard\kbdpl1\kbdpl1.dll 1
+dll\keyboard\kbdpo\kbdpo.dll 1
+dll\keyboard\kbdro\kbdro.dll 1
+dll\keyboard\kbdru\kbdru.dll 1
+dll\keyboard\kbdru1\kbdru1.dll 1
+dll\keyboard\kbdsg\kbdsg.dll 1
+dll\keyboard\kbdsk\kbdsk.dll 1
+dll\keyboard\kbdsk1\kbdsk1.dll 1
+dll\keyboard\kbdsw\kbdsw.dll 1
+dll\keyboard\kbdtat\kbdtat.dll 1
+dll\keyboard\kbdth0\kbdth0.dll 1
+dll\keyboard\kbdth1\kbdth1.dll 1
+dll\keyboard\kbdth2\kbdth2.dll 1
+dll\keyboard\kbdth3\kbdth3.dll 1
+dll\keyboard\kbdtuf\kbdtuf.dll 1
+dll\keyboard\kbdtuq\kbdtuq.dll 1
+dll\keyboard\kbduk\kbduk.dll 1
+dll\keyboard\kbdur\kbdur.dll 1
+dll\keyboard\kbdurs\kbdurs.dll 1
+dll\keyboard\kbdus\kbdus.dll 1
+dll\keyboard\kbdusa\kbdusa.dll 1
+dll\keyboard\kbdusl\kbdusl.dll 1
+dll\keyboard\kbdusr\kbdusr.dll 1
+dll\keyboard\kbdusx\kbdusx.dll 1
+dll\keyboard\kbduzb\kbduzb.dll 1
+dll\keyboard\kbdvntc\kbdvntc.dll 1
+dll\keyboard\kbdycc\kbdycc.dll 1
+dll\keyboard\kbdycl\kbdycl.dll 1
+
+dll\ntdll\ntdll.dll 1
+
+dll\win32\acledit\acledit.dll 1
+dll\win32\aclui\aclui.dll 1
+dll\win32\activeds\activeds.dll 1
+dll\win32\actxprxy\actxprxy.dll 1
+dll\win32\advapi32\advapi32.dll 1
+dll\win32\advpack\advpack.dll 1
+dll\win32\atl\atl.dll 1
+dll\win32\authz\authz.dll 1
+dll\win32\avicap32\avicap32.dll 1
+dll\win32\avifil32\avifil32.dll 1
+dll\win32\batt\batt.dll 1
+dll\win32\bcrypt\bcrypt.dll 1
+dll\win32\beepmidi\beepmidi.dll 1
+dll\win32\browseui\browseui.dll 1
+dll\win32\cabinet\cabinet.dll 1
+dll\win32\cards\cards.dll 1
+dll\win32\cfgmgr32\cfgmgr32.dll 1
+dll\win32\clusapi\clusapi.dll 1
+dll\win32\comcat\comcat.dll 1
+dll\win32\comctl32\comctl32.dll 1
+dll\win32\comdlg32\comdlg32.dll 1
+dll\win32\compstui\compstui.dll 1
+dll\win32\credui\credui.dll 1
+dll\win32\crtdll\crtdll.dll 1
+dll\win32\crypt32\crypt32.dll 1
+dll\win32\cryptdlg\cryptdlg.dll 1
+dll\win32\cryptdll\cryptdll.dll 1
+dll\win32\cryptnet\cryptnet.dll 1
+dll\win32\cryptui\cryptui.dll 1
+dll\win32\dbghelp\dbghelp.dll 1
+dll\win32\dciman32\dciman32.dll 1
+dll\win32\devmgr\devmgr.dll 1
+dll\win32\dhcpcsvc\dhcpcsvc.dll 1
+dll\win32\dnsapi\dnsapi.dll 1
+dll\win32\dwmapi\dwmapi.dll 1
+dll\win32\faultrep\faultrep.dll 1
+dll\win32\fmifs\fmifs.dll 1
+dll\win32\fusion\fusion.dll 1
+dll\win32\gdi32\gdi32.dll 1
+dll\win32\gdiplus\gdiplus.dll 1
+dll\win32\getuname\getuname.dll 1
+dll\win32\glu32\glu32.dll 1
+dll\win32\hhctrl.ocx\hhctrl.ocx 1
+dll\win32\hid\hid.dll 1
+dll\win32\hlink\hlink.dll 1
+dll\win32\hnetcfg\hnetcfg.dll 1
+dll\win32\httpapi\httpapi.dll 1
+dll\win32\iccvid\iccvid.dll 1
+dll\win32\icmp\icmp.dll 1
+dll\win32\imaadp32.acm\imaadp32.acm 1
+dll\win32\imagehlp\imagehlp.dll 1
+dll\win32\imm32\imm32.dll 1
+dll\win32\inetcomm\inetcomm.dll 1
+dll\win32\inetmib1\inetmib1.dll 1
+dll\win32\initpki\initpki.dll 1
+dll\win32\inseng\inseng.dll 1
+dll\win32\iphlpapi\iphlpapi.dll 1
+dll\win32\itircl\itircl.dll 1
+dll\win32\itss\itss.dll 1
+dll\win32\jscript\jscript.dll 1
+dll\win32\kernel32\kernel32.dll 1
+dll\win32\loadperf\loadperf.dll 1
+dll\win32\localspl\localspl.dll 1
+dll\win32\localui\localui.dll 1
+dll\win32\lpk\lpk.dll 1
+dll\win32\lsasrv\lsasrv.dll 1
+dll\win32\lz32\lz32.dll 1
+dll\win32\mapi32\mapi32.dll 1
+dll\win32\mciavi32\mciavi32.dll 1
+dll\win32\mcicda\mcicda.dll 1
+dll\win32\mciqtz32\mciqtz32.dll 1
+dll\win32\mciseq\mciseq.dll 1
+dll\win32\mciwave\mciwave.dll 1
+dll\win32\mlang\mlang.dll 1
+dll\win32\mmdrv\mmdrv.dll 1
+dll\win32\modemui\modemui.dll 1
+dll\win32\mpr\mpr.dll 1
+dll\win32\mprapi\mprapi.dll 1
+dll\win32\msacm32\msacm32.dll 1
+dll\win32\msacm32\msacm32.drv\msacm32.drv 1
+dll\win32\msadp32.acm\msadp32.acm 1
+dll\win32\msafd\msafd.dll 1
+dll\win32\mscat32\mscat32.dll 1
+dll\win32\mscms\mscms.dll 1
+dll\win32\mscoree\mscoree.dll 1
+dll\win32\msctf\msctf.dll 1
+dll\win32\msftedit\msftedit.dll 1
+dll\win32\msg711.acm\msg711.acm 1
+dll\win32\msgina\msgina.dll 1
+dll\win32\msgsm32.acm\msgsm32.acm 1
+dll\win32\mshtml\mshtml.dll 1
+dll\win32\mshtml.tlb\mshtml.tlb 1
+dll\win32\msi\msi.dll 1
+dll\win32\msimg32\msimg32.dll 1
+dll\win32\msimtf\msimtf.dll 1
+dll\win32\msisip\msisip.dll 1
+dll\win32\msisys.ocx\msisys.ocx 1
+dll\win32\msnet32\msnet32.dll 1
+dll\win32\msports\msports.dll 1
+dll\win32\msrle32\msrle32.dll 1
+dll\win32\mssign32\mssign32.dll 1
+dll\win32\mssip32\mssip32.dll 1
+dll\win32\mstask\mstask.dll 1
+dll\win32\msvcrt\msvcrt.dll 1
+dll\win32\msvcrt20\msvcrt20.dll 1
+dll\win32\msvcrt40\msvcrt40.dll 1
+dll\win32\msvfw32\msvfw32.dll 1
+dll\win32\msvidc32\msvidc32.dll 1
+dll\win32\mswsock\mswsock.dll 1
+dll\win32\msxml3\msxml3.dll 1
+dll\win32\nddeapi\nddeapi.dll 1
+dll\win32\netapi32\netapi32.dll 1
+dll\win32\netcfgx\netcfgx.dll 1
+dll\win32\netevent\netevent.dll 1
+dll\win32\netid\netid.dll 1
+dll\win32\netshell\netshell.dll 1
+dll\win32\newdev\newdev.dll 1
+dll\win32\ntdsapi\ntdsapi.dll 1
+dll\win32\ntlanman\ntlanman.dll 1
+dll\win32\ntmarta\ntmarta.dll 1
+dll\win32\ntprint\ntprint.dll 1
+dll\win32\objsel\objsel.dll 1
+dll\win32\odbc32\odbc32.dll 1
+dll\win32\odbccp32\odbccp32.dll 1
+dll\win32\ole32\ole32.dll 1
+dll\win32\oleacc\oleacc.dll 1
+dll\win32\oleaut32\oleaut32.dll 1
+dll\win32\olecli32\olecli32.dll 1
+dll\win32\oledlg\oledlg.dll 1
+dll\win32\olepro32\olepro32.dll 1
+dll\win32\olesvr32\olesvr32.dll 1
+dll\win32\olethk32\olethk32.dll 1
+dll\win32\opengl32\opengl32.dll 1
+dll\win32\pdh\pdh.dll 1
+dll\win32\pidgen\pidgen.dll 1
+dll\win32\powrprof\powrprof.dll 1
+dll\win32\printui\printui.dll 1
+dll\win32\psapi\psapi.dll 1
+dll\win32\pstorec\pstorec.dll 1
+dll\win32\qmgr\qmgr.dll 1
+dll\win32\qmgrprxy\qmgrprxy.dll 1
+dll\win32\query\query.dll 1
+dll\win32\rasadhlp\rasadhlp.dll 1
+dll\win32\rasapi32\rasapi32.dll 1
+dll\win32\rasdlg\rasdlg.dll 1
+dll\win32\rasman\rasman.dll 1
+dll\win32\resutils\resutils.dll 1
+dll\win32\riched20\riched20.dll 1
+dll\win32\riched32\riched32.dll 1
+dll\win32\rpcrt4\rpcrt4.dll 1
+dll\win32\rsabase\rsabase.dll 1
+dll\win32\rsaenh\rsaenh.dll 1
+dll\win32\samlib\samlib.dll 1
+dll\win32\samsrv\samsrv.dll 1
+dll\win32\sccbase\sccbase.dll 1
+dll\win32\schannel\schannel.dll 1
+dll\win32\secur32\secur32.dll 1
+dll\win32\security\security.dll 1
+dll\win32\sensapi\sensapi.dll 1
+dll\win32\serialui\serialui.dll 1
+dll\win32\setupapi\setupapi.dll 1
+dll\win32\sfc\sfc.dll 1
+dll\win32\sfc_os\sfc_os.dll 1
+dll\win32\shdoclc\shdoclc.dll 1
+dll\win32\shdocvw\shdocvw.dll 1
+dll\win32\shell32\shell32.dll 1
+dll\win32\shfolder\shfolder.dll 1
+dll\win32\shimgvw\shimgvw.dll 1
+dll\win32\shlwapi\shlwapi.dll 1
+dll\win32\slbcsp\slbcsp.dll 1
+dll\win32\smdll\smdll.dll 1
+dll\win32\sndblst\sndblst.dll 1
+dll\win32\snmpapi\snmpapi.dll 1
+dll\win32\softpub\softpub.dll 1
+dll\win32\spoolss\spoolss.dll 1
+dll\win32\srclient\srclient.dll 1
+dll\win32\stdole2.tlb\stdole2.tlb 1
+dll\win32\stdole32.tlb\stdole32.tlb 1
+dll\win32\sti\sti.dll 1
+dll\win32\sxs\sxs.dll 1
+dll\win32\syssetup\syssetup.dll 1
+dll\win32\t2embed\t2embed.dll 1
+dll\win32\tapi32\tapi32.dll 1
+dll\win32\tapiui\tapiui.dll 1
+dll\win32\traffic\traffic.dll 1
+dll\win32\twain_32\twain_32.dll 1
+dll\win32\uext2\uext2.dll 1
+dll\win32\ufat\ufat.dll 1
+dll\win32\ufatx\ufatx.dll 1 optional
+dll\win32\unicows\unicows.dll 1
+dll\win32\untfs\untfs.dll 1
+dll\win32\updspapi\updspapi.dll 1
+dll\win32\url\url.dll 1
+dll\win32\urlmon\urlmon.dll 1
+dll\win32\user32\user32.dll 1
+dll\win32\userenv\userenv.dll 1
+dll\win32\usp10\usp10.dll 1
+dll\win32\uxtheme\uxtheme.dll 1
+dll\win32\vdmdbg\vdmdbg.dll 1
+dll\win32\version\version.dll 1
+dll\win32\wdmaud.drv\wdmaud.drv 1
+dll\win32\wer\wer.dll 1
+dll\win32\windowscodecs\windowscodecs.dll 1
+dll\win32\winemp3.acm\winemp3.acm 1
+dll\win32\winfax\winfax.dll 1
+dll\win32\wing32\wing32.dll 1
+dll\win32\winhttp\winhttp.dll 1
+dll\win32\wininet\wininet.dll 1
+dll\win32\winmm\winmm.dll 1
+dll\win32\winmm\midimap\midimap.dll 1
+dll\win32\winspool\winspool.drv 1
+dll\win32\winsta\winsta.dll 1
+dll\win32\wintrust\wintrust.dll 1
+dll\win32\wlanapi\wlanapi.dll 1
+dll\win32\wldap32\wldap32.dll 1
+dll\win32\wmi\wmi.dll 1
+dll\win32\ws2_32\ws2_32.dll 1
+dll\win32\ws2help\ws2help.dll 1
+dll\win32\wshirda\wshirda.dll 1
+dll\win32\wshtcpip\wshtcpip.dll 1
+dll\win32\wsock32\wsock32.dll 1
+dll\win32\wtsapi32\wtsapi32.dll 1
+dll\win32\wuapi\wuapi.dll 1
+dll\win32\xinput1_1\xinput1_1.dll 1
+dll\win32\xinput1_2\xinput1_2.dll 1
+dll\win32\xinput1_3\xinput1_3.dll 1
+dll\win32\xinput9_1_0\xinput9_1_0.dll 1
+dll\win32\xmllite\xmllite.dll 1
+
+; Shell Extensions
+dll\shellext\deskadp\deskadp.dll 1
+dll\shellext\deskmon\deskmon.dll 1
+dll\shellext\devcpux\devcpux.dll 1
+dll\shellext\fontext\fontext.dll 1
+dll\shellext\slayer\slayer.dll 1
+
+; Drivers
+drivers\base\beep\beep.sys 2
+drivers\base\bootvid\bootvid.dll 1
+drivers\base\nmidebug\nmidebug.sys 2
+drivers\base\null\null.sys 2
+
+drivers\battery\battc\battc.sys 2
+
+drivers\bus\acpi\cmbatt\cmbatt.sys 2
+drivers\bus\acpi\compbatt\compbatt.sys 2
+
+drivers\directx\dxapi\dxapi.sys 2
+drivers\directx\dxg\dxg.sys 2
+drivers\directx\dxgthk\dxgthk.sys 2
+
+drivers\filesystems\fs_rec\fs_rec.sys 2
+drivers\filesystems\msfs\msfs.sys 2
+drivers\filesystems\mup\mup.sys 2
+drivers\filesystems\npfs\npfs.sys 2
+
+drivers\input\mouclass\mouclass.sys 2
+drivers\input\sermouse\sermouse.sys 2
+
+drivers\ksfilter\ks\ks.sys 2
+;drivers\multimedia\bdasup\bdasup.sys 2
+
+drivers\network\afd\afd.sys 2
+drivers\network\ndis\ndis.sys 2
+drivers\network\tcpip\tcpip.sys 2
+drivers\network\tdi\tdi.sys 2
+drivers\network\dd\ne2000\ne2000.sys 2
+drivers\network\dd\pcnet\pcnet.sys 2
+
+drivers\serial\serenum\serenum.sys 2
+drivers\serial\serial\serial.sys 2
+
+drivers\storage\ide\pciide\pciide.sys 2
+drivers\storage\ide\pciidex\pciidex.sys 2
+
+;drivers\usb\miniport\usbohci\usbohci.sys 2
+;drivers\usb\miniport\usbuhci\usbuhci.sys 2
+;drivers\usb\usbhub\usbhub.sys 2
+;drivers\usb\usbport\usbport.sys 2
+;drivers\usb\nt4compat\usbdriver\usbdriver.sys 2
+
+drivers\video\displays\vga\vgaddi.dll 1
+drivers\video\displays\framebuf\framebuf.dll 1
+drivers\video\miniport\vga\vgamp.sys 2
+drivers\video\miniport\vbe\vbemp.sys 2
+drivers\video\videoprt\videoprt.sys 2
+drivers\video\font\ftfd\ftfd.dll 1
+
+drivers\wdm\audio\filters\kmixer\kmixer.sys 2
+drivers\wdm\audio\sysaudio\sysaudio.sys 2
+drivers\wdm\audio\legacy\wdmaud\wdmaud.sys 2
+drivers\wdm\audio\backpln\portcls\portcls.sys 2
+drivers\wdm\audio\drm\drmk\drmk.sys 2
+drivers\wmi\wmilib.sys 2
+
+; Media
+media\fonts\DejaVuSans.ttf 3
+media\fonts\DejaVuSans-Bold.ttf 3
+media\fonts\DejaVuSans-BoldOblique.ttf 3
+media\fonts\DejaVuSansMono.ttf 3
+media\fonts\DejaVuSansMono-Bold.ttf 3
+media\fonts\DejaVuSansMono-BoldOblique.ttf 3
+media\fonts\DejaVuSansMono-Oblique.ttf 3
+media\fonts\DejaVuSans-Oblique.ttf 3
+media\fonts\DejaVuSerif.ttf 3
+media\fonts\DejaVuSerif-Bold.ttf 3
+media\fonts\DejaVuSerif-BoldItalic.ttf 3
+media\fonts\DejaVuSerif-Italic.ttf 3
+
+media\fonts\FreeMono.ttf 3
+media\fonts\FreeMonoBold.ttf 3
+media\fonts\FreeMonoBoldOblique.ttf 3
+media\fonts\FreeMonoOblique.ttf 3
+
+media\fonts\LiberationMono-Bold.ttf 3
+media\fonts\LiberationMono-BoldItalic.ttf 3
+media\fonts\LiberationMono-Italic.ttf 3
+media\fonts\LiberationMono-Regular.ttf 3
+media\fonts\LiberationSans-Bold.ttf 3
+media\fonts\LiberationSans-BoldItalic.ttf 3
+media\fonts\LiberationSans-Italic.ttf 3
+media\fonts\LiberationSans-Regular.ttf 3
+media\fonts\LiberationSerif-Bold.ttf 3
+media\fonts\LiberationSerif-BoldItalic.ttf 3
+media\fonts\LiberationSerif-Italic.ttf 3
+media\fonts\LiberationSerif-Regular.ttf 3
+
+media\fonts\Marlett.ttf 3
+media\fonts\symbol.ttf 3
+media\fonts\tahoma.ttf 3
+media\fonts\tahomabd.ttf 3
+
+media\vgafonts\vgafonts.cab 4
+
+media\nls\c_037.nls 1
+media\nls\c_424.nls 1
+media\nls\c_500.nls 1
+media\nls\c_737.nls 1
+media\nls\c_775.nls 1
+media\nls\c_850.nls 1
+media\nls\c_852.nls 1
+media\nls\c_855.nls 1
+media\nls\c_856.nls 1
+media\nls\c_857.nls 1
+media\nls\c_860.nls 1
+media\nls\c_861.nls 1
+media\nls\c_862.nls 1
+media\nls\c_863.nls 1
+media\nls\c_864.nls 1
+media\nls\c_865.nls 1
+media\nls\c_866.nls 1
+media\nls\c_869.nls 1
+media\nls\c_874.nls 1
+media\nls\c_875.nls 1
+media\nls\c_878.nls 1
+media\nls\c_932.nls 1
+media\nls\c_936.nls 1
+media\nls\c_949.nls 1
+media\nls\c_950.nls 1
+media\nls\c_1006.nls 1
+media\nls\c_1026.nls 1
+media\nls\c_1250.nls 1
+media\nls\c_1251.nls 1
+media\nls\c_1253.nls 1
+media\nls\c_1254.nls 1
+media\nls\c_1255.nls 1
+media\nls\c_1256.nls 1
+media\nls\c_1257.nls 1
+media\nls\c_1258.nls 1
+media\nls\c_10000.nls 1
+media\nls\c_10006.nls 1
+media\nls\c_10007.nls 1
+media\nls\c_10029.nls 1
+media\nls\c_10079.nls 1
+media\nls\c_10081.nls 1
+media\nls\c_20866.nls 1
+media\nls\c_21866.nls 1
+media\nls\c_28591.nls 1
+media\nls\c_28592.nls 1
+media\nls\c_28593.nls 1
+media\nls\c_28594.nls 1
+media\nls\c_28595.nls 1
+media\nls\c_28596.nls 1
+media\nls\c_28597.nls 1
+media\nls\c_28598.nls 1
+media\nls\c_28599.nls 1
+media\nls\c_28600.nls 1
+media\nls\c_28603.nls 1
+media\nls\c_28604.nls 1
+media\nls\c_28605.nls 1
+media\nls\c_28606.nls 1
+media\drivers\etc\hosts 5
+media\drivers\etc\services 5
+media\inf\audio.inf 6
+media\inf\acpi.inf 6
+media\inf\battery.inf 6
+media\inf\cdrom.inf 6
+media\inf\cpu.inf 6
+media\inf\disk.inf 6
+media\inf\display.inf 6
+media\inf\font.inf 6
+media\inf\fdc.inf 6
+media\inf\hdc.inf 6
+media\inf\intl.inf 6
+media\inf\layout.inf 6
+media\inf\machine.inf 6
+media\inf\msmouse.inf 6
+media\inf\keyboard.inf 6
+media\inf\ks.inf 6
+media\inf\NET_NIC.inf 6
+media\inf\netamd.inf 6
+media\inf\netisa.inf 6
+media\inf\netrtpnt.inf 6
+media\inf\nettcpip.inf 6
+media\inf\ports.inf 6
+media\inf\scsi.inf 6
+media\inf\syssetup.inf 6
+media\inf\unknown.inf 6
+media\inf\usbport.inf 6
+media\inf\usb.inf 6
+media\inf\usbstor.inf 6
+media\inf\xboxdisp.inf 6
+
+
+; Media Files
+media\sounds\ReactOS_LogOn.wav 8
+
+; Ini Files
+boot\bootdata\system.ini 4
+
+; Regression Testing
+boot\bootdata\bootcdregtest\regtest.cmd 7 optional
+
+; Subsystems
+subsystems\win32\csrss\csrss.exe 1
+subsystems\win32\csrss\win32csr\win32csr.dll 1
+subsystems\win32\csrss\csrsrv\csrsrv.dll 1
+subsystems\ntvdm\ntvdm.exe 1 optional
+subsystems\win32\win32k\win32k.sys 1
+
+; Optional/proprietary files
+modules\optional\DroidSansFallback.ttf 3 optional
+modules\optional\NOTICE_for_Droid_Font.txt 4 optional
+modules\optional\netkvm2k.inf 6 optional
+modules\optional\netkvm2k.cat 6 optional
+modules\optional\netkvm.sys 2 optional
+modules\optional\alcxwdm.inf 6 optional
+modules\optional\alcxwdm.sys 2 optional
+modules\optional\mfc42.dll 1 optional
+modules\optional\mfc42u.dll 1 optional
+modules\optional\mfc71.dll 1 optional
+modules\optional\mfc71u.dll 1 optional
+modules\optional\msvbvm50.dll 1 optional
+modules\optional\msvbvm60.dll 1 optional
+modules\optional\msvcirt.dll 1 optional
+modules\optional\msvcp71.dll 1 optional
+modules\optional\msvcr71.dll 1 optional
+modules\optional\vmx_fb.dll 1 optional
+modules\optional\vmx_mode.dll 1 optional
+modules\optional\vmx_svga.inf 6 optional
+modules\optional\vmx_svga.sys 2 optional
+modules\optional\wine_gecko-1.0.0-x86.cab 4 optional
+
+; Rosapps
+modules\rosapps\applications\screensavers\cylfrac\cylfrac.scr 1 optional
+modules\rosapps\applications\screensavers\matrix\matrix.scr 1 optional
+modules\rosapps\applications\screensavers\blankscr\scrnsave.scr 1 optional
+modules\rosapps\applications\screensavers\starfield\starfield.scr 1 optional
+modules\rosapps\applications\screensavers\mazescr\mazescr.scr 1 optional
+modules\rosapps\applications\screensavers\butterflies\butterflies.scr 1 optional
+modules\rosapps\applications\cmdutils\comp\comp.exe 1
optional
+modules\rosapps\applications\cmdutils\mode\mode.exe 1
optional
+modules\rosapps\applications\cmdutils\sort\sort.exe 1
optional
+modules\rosapps\applications\cmdutils\tee\tee.exe 1
optional
+modules\rosapps\applications\cmdutils\touch\touch.exe 1
optional
+modules\rosapps\applications\cmdutils\uptime\uptime.exe 1
optional
+modules\rosapps\applications\cmdutils\y\y.exe 1
optional
+modules\rosapps\applications\devutils\gdb2\gdb2.exe 1
optional
+modules\rosapps\applications\devutils\gdihv\gdihv.exe 1
optional
+modules\rosapps\applications\devutils\genguid\genguid.exe 1
optional
+modules\rosapps\applications\sysutils\gettype\gettype.exe 1
optional
+modules\rosapps\applications\net\ncftp\ncftp.exe 1
optional
+modules\rosapps\applications\net\netreg\netreg.exe 1
optional
+modules\rosapps\applications\net\niclist\niclist.exe 1
optional
+modules\rosapps\applications\net\roshttpd\roshttpd.exe 1
optional
+modules\rosapps\applications\notevil\notevil.exe 1
optional
+modules\rosapps\applications\sysutils\chkdsk\chkdsk.exe 1
optional
+modules\rosapps\applications\sysutils\systeminfo\systeminfo.exe 1
optional
+modules\rosapps\applications\sysutils\chklib\chklib.exe 1
optional
+modules\rosapps\applications\sysutils\ctm\ctm.exe 1
optional
+modules\rosapps\applications\sysutils\kill\kill.exe 1
optional
+modules\rosapps\applications\sysutils\lsdd\lsdd.exe 1
optional
+modules\rosapps\applications\sysutils\man\man.exe 1
optional
+modules\rosapps\applications\sysutils\pedump\pedump.exe 1
optional
+modules\rosapps\applications\sysutils\regexpl\regexpl.exe 1
optional
+modules\rosapps\applications\sysutils\tcat\tcat.exe 1
optional
+modules\rosapps\applications\sysutils\tlist\tlist.exe 1
optional
+modules\rosapps\applications\sysutils\screenshot\screenshot.exe 1
optional
+modules\rosapps\applications\sysutils\utils\binpatch\binpatch.exe 1
optional
+modules\rosapps\applications\sysutils\utils\cat\cat.exe 1
optional
+modules\rosapps\applications\sysutils\utils\driver\load\load.exe 1
optional
+modules\rosapps\applications\sysutils\utils\driver\unload\unload.exe 1
optional
+modules\rosapps\applications\sysutils\utils\infinst\infinst.exe 1
optional
+modules\rosapps\applications\sysutils\utils\nts2w32err\nts2w32err.exe 1
optional
+modules\rosapps\applications\sysutils\utils\objdir\objdir.exe 1
optional
+modules\rosapps\applications\sysutils\utils\partinfo\partinfo.exe 1
optional
+modules\rosapps\applications\sysutils\utils\ps\ps.exe 1
optional
+modules\rosapps\applications\sysutils\utils\rosperf\rosperf.exe 1
optional
+modules\rosapps\applications\sysutils\utils\stats\stats.exe 1
optional
+modules\rosapps\applications\sysutils\utils\tickcount\tickcount.exe 1
optional
+modules\rosapps\applications\winfile\winfile.exe 1
optional
+modules\rosapps\demos\maze\maze.exe 1 optional
+modules\rosapps\drivers\green\green.sys 2 optional
+
+; Rostests
+modules\rostests\rosautotest\rosautotest.exe 1 optional
+modules\rostests\drivers\kmtest\kmtest.sys 2 optional
+modules\rostests\drivers\kmtest\kmtestassist.sys 2 optional
+modules\rostests\tests\pseh2\pseh2_test.exe 7 optional
+modules\rostests\winetests\advapi32\advapi32_winetest.exe 7 optional
+modules\rostests\winetests\advpack\advpack_winetest.exe 7 optional
+modules\rostests\winetests\amstream\amstream_winetest.exe 7 optional
+modules\rostests\winetests\atl\atl_winetest.exe 7 optional
+modules\rostests\winetests\avifil32\avifil32_winetest.exe 7 optional
+modules\rostests\winetests\browseui\browseui_winetest.exe 7 optional
+modules\rostests\winetests\cabinet\cabinet_winetest.exe 7 optional
+modules\rostests\winetests\comcat\comcat_winetest.exe 7 optional
+modules\rostests\winetests\comctl32\comctl32_winetest.exe 7 optional
+modules\rostests\winetests\comdlg32\comdlg32_winetest.exe 7 optional
+modules\rostests\winetests\credui\credui_winetest.exe 7 optional
+modules\rostests\winetests\crypt32\crypt32_winetest.exe 7 optional
+modules\rostests\winetests\cryptnet\cryptnet_winetest.exe 7 optional
+modules\rostests\winetests\cryptui\cryptui_winetest.exe 7 optional
+modules\rostests\winetests\dnsapi\dnsapi_winetest.exe 7 optional
+modules\rostests\winetests\dsound\dsound_winetest.exe 7 optional
+modules\rostests\winetests\fusion\fusion_winetest.exe 7 optional
+modules\rostests\winetests\gdi32\gdi32_winetest.exe 7 optional
+modules\rostests\winetests\gdiplus\gdiplus_winetest.exe 7 optional
+modules\rostests\winetests\hlink\hlink_winetest.exe 7 optional
+modules\rostests\winetests\icmp\icmp_winetest.exe 7 optional
+modules\rostests\winetests\imagehlp\imagehlp_winetest.exe 7 optional
+modules\rostests\winetests\imm32\imm32_winetest.exe 7 optional
+modules\rostests\winetests\inetcomm\inetcomm_winetest.exe 7 optional
+modules\rostests\winetests\inetmib1\inetmib1_winetest.exe 7 optional
+modules\rostests\winetests\iphlpapi\iphlpapi_winetest.exe 7 optional
+modules\rostests\winetests\itss\itss_winetest.exe 7 optional
+modules\rostests\winetests\jscript\jscript_winetest.exe 7 optional
+modules\rostests\winetests\kernel32\kernel32_winetest.exe 7 optional
+modules\rostests\winetests\localspl\localspl_winetest.exe 7 optional
+modules\rostests\winetests\localui\localui_winetest.exe 7 optional
+modules\rostests\winetests\lz32\lz32_winetest.exe 7 optional
+modules\rostests\winetests\mapi32\mapi32_winetest.exe 7 optional
+modules\rostests\winetests\mlang\mlang_winetest.exe 7 optional
+modules\rostests\winetests\msacm32\msacm32_winetest.exe 7 optional
+modules\rostests\winetests\mscms\mscms_winetest.exe 7 optional
+modules\rostests\winetests\msctf\msctf_winetest.exe 7 optional
+modules\rostests\winetests\mshtml\mshtml_winetest.exe 7 optional
+modules\rostests\winetests\msi\msi_winetest.exe 7 optional
+modules\rostests\winetests\mstask\mstask_winetest.exe 7 optional
+modules\rostests\winetests\msvcrt\msvcrt_winetest.exe 7 optional
+modules\rostests\winetests\msvcrtd\msvcrtd_winetest.exe 7 optional
+modules\rostests\winetests\msvfw32\msvfw32_winetest.exe 7 optional
+modules\rostests\winetests\msxml3\msxml3_winetest.exe 7 optional
+modules\rostests\winetests\netapi32\netapi32_winetest.exe 7 optional
+modules\rostests\winetests\ntdll\ntdll_winetest.exe 7 optional
+modules\rostests\winetests\ntdsapi\ntdsapi_winetest.exe 7 optional
+modules\rostests\winetests\ntprint\ntprint_winetest.exe 7 optional
+modules\rostests\winetests\odbccp32\odbccp32_winetest.exe 7 optional
+modules\rostests\winetests\ole32\ole32_winetest.exe 7 optional
+modules\rostests\winetests\oleacc\oleacc_winetest.exe 7 optional
+modules\rostests\winetests\oleaut32\oleaut32_winetest.exe 7 optional
+modules\rostests\winetests\opengl32\opengl32_winetest.exe 7 optional
+modules\rostests\winetests\pdh\pdh_winetest.exe 7 optional
+modules\rostests\winetests\powrprof\powrprof_winetest.exe 7 optional
+modules\rostests\winetests\psapi\psapi_winetest.exe 7 optional
+modules\rostests\winetests\qmgr\qmgr_winetest.exe 7 optional
+modules\rostests\winetests\quartz\quartz_winetest.exe 7 optional
+modules\rostests\winetests\rasapi32\rasapi32_winetest.exe 7 optional
+modules\rostests\winetests\riched20\riched20_winetest.exe 7 optional
+modules\rostests\winetests\riched32\riched32_winetest.exe 7 optional
+modules\rostests\winetests\rpcrt4\rpcrt4_winetest.exe 7 optional
+modules\rostests\winetests\rsabase\rsabase_winetest.exe 7 optional
+modules\rostests\winetests\rsaenh\rsaenh_winetest.exe 7 optional
+modules\rostests\winetests\schannel\schannel_winetest.exe 7 optional
+modules\rostests\winetests\secur32\secur32_winetest.exe 7 optional
+modules\rostests\winetests\serialui\serialui_winetest.exe 7 optional
+modules\rostests\winetests\setupapi\setupapi_winetest.exe 7 optional
+modules\rostests\winetests\shdocvw\shdocvw_winetest.exe 7 optional
+modules\rostests\winetests\shell32\shell32_winetest.exe 7 optional
+modules\rostests\winetests\shlwapi\shlwapi_winetest.exe 7 optional
+modules\rostests\winetests\snmpapi\snmpapi_winetest.exe 7 optional
+modules\rostests\winetests\spoolss\spoolss_winetest.exe 7 optional
+modules\rostests\winetests\twain_32\twain_32_winetest.exe 7 optional
+modules\rostests\winetests\urlmon\urlmon_winetest.exe 7 optional
+modules\rostests\winetests\user32\user32_winetest.exe 7 optional
+modules\rostests\winetests\userenv\userenv_winetest.exe 7 optional
+modules\rostests\winetests\usp10\usp10_winetest.exe 7 optional
+modules\rostests\winetests\uxtheme\uxtheme_winetest.exe 7 optional
+modules\rostests\winetests\version\version_winetest.exe 7 optional
+modules\rostests\winetests\winhttp\winhttp_winetest.exe 7 optional
+modules\rostests\winetests\wininet\wininet_winetest.exe 7 optional
+modules\rostests\winetests\winmm\winmm_winetest.exe 7 optional
+modules\rostests\winetests\wintrust\wintrust_winetest.exe 7 optional
+modules\rostests\winetests\wlanapi\wlanapi_winetest.exe 7 optional
+modules\rostests\winetests\wldap32\wldap32_winetest.exe 7 optional
+modules\rostests\winetests\ws2_32\ws2_32_winetest.exe 7 optional
+modules\rostests\winetests\xmllite\xmllite_winetest.exe 7 optional
+
+modules\rostests\apitests\dciman32\dciman32_apitest.exe 7 optional
+modules\rostests\apitests\gdi32\gdi32_apitest.exe 7 optional
+modules\rostests\apitests\kernel32\kernel32_apitest.exe 7 optional
+modules\rostests\apitests\ntdll\ntdll_apitest.exe 7 optional
+modules\rostests\apitests\user32\user32_apitest.exe 7 optional
+modules\rostests\apitests\ws2_32\ws2_32_apitest.exe 7 optional
+
+modules\wallpaper\Angelus_02_ROSWP.bmp 4 optional
Propchange: branches/GSoC_2011/GdiFontDriver/boot/bootdata/packages/reactos.dff
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/bootsect/bootsect.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/bootsect/bootsect.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/bootsect/bootsect.rbuild [iso-8859-1]
Fri Jul 29 13:19:34 2011
@@ -1,0 +1,28 @@
+<?xml version="1.0"?>
+<!DOCTYPE group SYSTEM "../../../tools/rbuild/project.dtd">
+<group>
+<module name="dosmbr" type="bootsector" >
+ <bootstrap installbase="loader" nameoncd="dosmbr.bin" />
+ <file>dosmbr.asm</file>
+</module>
+<module name="ext2" type="bootsector">
+ <bootstrap installbase="loader" nameoncd="ext2.bin" />
+ <file>ext2.asm</file>
+</module>
+<module name="fat32" type="bootsector">
+ <bootstrap installbase="loader" nameoncd="fat32.bin" />
+ <file>fat32.asm</file>
+</module>
+<module name="fat" type="bootsector">
+ <bootstrap installbase="loader" nameoncd="fat.bin" />
+ <file>fat.asm</file>
+</module>
+<module name="isoboot" type="bootsector">
+ <bootstrap installbase="loader" nameoncd="isoboot.bin" />
+ <file>isoboot.asm</file>
+</module>
+<module name="isobtrt" type="bootsector">
+ <bootstrap installbase="loader" nameoncd="isobtrt.bin" />
+ <file>isobtrt.asm</file>
+</module>
+</group>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/bootsect/bootsect.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/fdebug/fdebug.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/fdebug/fdebug.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/fdebug/fdebug.rbuild [iso-8859-1] Fri
Jul 29 13:19:34 2011
@@ -1,0 +1,11 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<module name="freeldr_fdebug" type="win32gui"
installbase="system32" installname="fdebug.exe"
unicode="yes">
+ <include base="freeldr_fdebug">.</include>
+ <library>user32</library>
+ <library>comdlg32</library>
+ <library>gdi32</library>
+ <file>fdebug.c</file>
+ <file>rs232.c</file>
+ <file>fdebug.rc</file>
+</module>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/fdebug/fdebug.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr.rbuild [iso-8859-1] Fri Jul 29
13:19:34 2011
@@ -1,0 +1,47 @@
+<?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">
+ <property name="BASEADDRESS_FREELDR" value="0x8000" />
+ </if>
+ <if property="ARCH" value="amd64">
+ <property name="BASEADDRESS_FREELDR" value="0x8000" />
+ </if>
+ <if property="ARCH" value="arm">
+ <if property="SARCH" value="omap3-beagle">
+ <property name="BASEADDRESS_FREELDR" value="0x80FFF000" />
+ </if>
+ <if property="SARCH" value="omap3-zoom2">
+ <define name="_ZOOM2_" />
+ <property name="BASEADDRESS_FREELDR" value="0x8106F000" />
+ </if>
+ <if property="SARCH" value="versatile">
+ <property name="BASEADDRESS_FREELDR" value="0x0001F000" />
+ </if>
+ </if>
+
+ <directory name="bootsect">
+ <xi:include href="bootsect/bootsect.rbuild" />
+ </directory>
+ <directory name="freeldr">
+ <xi:include href="freeldr/freeldr_startup.rbuild" />
+ <xi:include href="freeldr/freeldr_base64k.rbuild" />
+ <xi:include href="freeldr/freeldr_base.rbuild" />
+ <xi:include href="freeldr/freeldr_arch.rbuild" />
+ <xi:include href="freeldr/freeldr_main.rbuild" />
+ <xi:include href="freeldr/freeldr.rbuild" />
+ <if property="ARCH" value="i386">
+ <xi:include href="freeldr/setupldr_main.rbuild" />
+ <xi:include href="freeldr/setupldr.rbuild" />
+ </if>
+ <if property="ARCH" value="ppc">
+ <xi:include href="freeldr/setupldr_main.rbuild" />
+ <xi:include href="freeldr/setupldr.rbuild" />
+ </if>
+ <if property="ARCH" value="amd64">
+ <xi:include href="freeldr/setupldr_main.rbuild" />
+ <xi:include href="freeldr/setupldr.rbuild" />
+ </if>
+ </directory>
+</group>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr.rbuild [iso-8859-1] Fri
Jul 29 13:19:34 2011
@@ -1,0 +1,57 @@
+<?xml version="1.0"?>
+<!DOCTYPE group SYSTEM "../../../tools/rbuild/project.dtd">
+
+<if property="ARCH" value="powerpc">
+ <module name="ofwldr" type="elfexecutable"
buildtype="OFWLDR">
+ <library>freeldr_startup</library>
+ <library>freeldr_base64k</library>
+ <library>freeldr_base</library>
+ <library>freeldr_arch</library>
+ <library>freeldr_main</library>
+ <library>rossym</library>
+ <library>cmlib</library>
+ <library>rtl</library>
+ <library>libcntpr</library>
+ <library>ppcmmu</library>
+ </module>
+</if>
+
+<if property="ARCH" value="arm">
+ <module name="freeldr" type="kernel"
entrypoint="_start" baseaddress="$(BASEADDRESS_FREELDR)">
+ <linkerscript>freeldr_$(ARCH).lnk</linkerscript>
+ <bootstrap installbase="loader" />
+ <library>freeldr_startup</library>
+ <library>freeldr_base64k</library>
+ <library>freeldr_base</library>
+ <library>freeldr_arch</library>
+ <library>freeldr_main</library>
+ <library>rossym</library>
+ <library>cmlib</library>
+ <library>rtl</library>
+ <library>libcntpr</library>
+ </module>
+</if>
+
+<ifnot property="ARCH" value="powerpc">
+ <module name="freeldr" type="bootloader"
baseaddress="$(BASEADDRESS_FREELDR)">
+ <linkerscript>freeldr_$(ARCH).lnk</linkerscript>
+ <bootstrap installbase="loader" />
+ <library>freeldr_startup</library>
+ <library>freeldr_base64k</library>
+ <library>freeldr_base</library>
+ <if property="ARCH" value="i386">
+ <library>mini_hal</library>
+ </if>
+ <library>freeldr_arch</library>
+ <library>freeldr_main</library>
+ <library>rossym</library>
+ <library>cmlib</library>
+ <library>rtl</library>
+ <library>libcntpr</library>
+ <library>cportlib</library>
+ <group linkerset="ld">
+ <linkerflag>-static</linkerflag>
+ <linkerflag>-lgcc</linkerflag>
+ </group>
+ </module>
+</ifnot>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_arch.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_arch.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_arch.rbuild [iso-8859-1]
Fri Jul 29 13:19:34 2011
@@ -1,0 +1,111 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<module name="freeldr_arch" type="objectlibrary"
crt="static">
+ <include base="freeldr_base">include</include>
+ <include base="freeldr_base">cache</include>
+ <include base="ntoskrnl">include</include>
+ <include base="ReactOS">include/reactos/libs</include>
+ <include base="ReactOS">include/reactos/elf</include>
+ <define name="_BLDR_" />
+ <define name="_NTHAL_" />
+ <define name="_NTSYSTEM_" />
+ <directory name="arch">
+ <directory name="i386">
+ <if property="ARCH" value="i386">
+ <file>archmach.c</file>
+ <file>custom.c</file>
+ <file>drivemap.c</file>
+ <file>halstub.c</file>
+ <file>hardware.c</file>
+ <file>hwacpi.c</file>
+ <file>hwapm.c</file>
+ <file>hwpci.c</file>
+ <file>i386bug.c</file>
+ <file>i386disk.c</file>
+ <file>i386rtl.c</file>
+ <file>i386vid.c</file>
+ <file>machpc.c</file>
+ <file>miscboot.c</file>
+ <file>ntoskrnl.c</file>
+ <file>pccons.c</file>
+ <file>pcdisk.c</file>
+ <file>pcmem.c</file>
+ <file>pcrtc.c</file>
+ <file>pcvideo.c</file>
+ <file>machxbox.c</file>
+ <file>xboxcons.c</file>
+ <file>xboxdisk.c</file>
+ <file>xboxfont.c</file>
+ <file>xboxhw.c</file>
+ <file>xboxi2c.c</file>
+ <file>xboxmem.c</file>
+ <file>xboxrtc.c</file>
+ <file>xboxvideo.c</file>
+ </if>
+ </directory>
+ <directory name="powerpc">
+ <if property="ARCH" value="powerpc">
+ <file>boot.s</file>
+ <file>loader.c</file>
+ <file>mach.c</file>
+ <file>mboot.c</file>
+ <file>ofw.c</file>
+ <file>ofw_util.s</file>
+ <file>ofw_calls.s</file>
+ <file>ofwdisk.c</file>
+ <file>ofw_method.c</file>
+ <file>prep.c</file>
+ <file>prep_ide.c</file>
+ <file>prep_pci.c</file>
+ <file>prep_vga.c</file>
+ </if>
+ </directory>
+ <directory name="arm">
+ <if property="ARCH" value="arm">
+ <file>macharm.c</file>
+ </if>
+ </directory>
+
+ <if property="ARCH" value="amd64">
+ <directory name="amd64">
+ <file>loader.c</file>
+ </directory>
+ <directory name="i386">
+ <file>hardware.c</file>
+ <file>hwacpi.c</file>
+ <file>hwapm.c</file>
+ <file>hwpci.c</file>
+ <file>i386rtl.c</file>
+ <file>i386disk.c</file>
+ <file>i386vid.c</file>
+ <file>machpc.c</file>
+ <file>pccons.c</file>
+ <file>pcdisk.c</file>
+ <file>pcmem.c</file>
+ <file>pcrtc.c</file>
+ <file>pcvideo.c</file>
+ </directory>
+ </if>
+
+ </directory>
+
+ <directory name="windows">
+ <if property="ARCH" value="arm">
+ <directory name="arm">
+ <file>wlmemory.c</file>
+ </directory>
+ </if>
+ <if property="ARCH" value="i386">
+ <directory name="i386">
+ <file>ntsetup.c</file>
+ <file>wlmemory.c</file>
+ </directory>
+ </if>
+ <if property="ARCH" value="amd64">
+ <directory name="amd64">
+ <file>ntsetup.c</file>
+ <file>wlmemory.c</file>
+ </directory>
+ </if>
+ </directory>
+</module>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_arch.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_base.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_base.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_base.rbuild [iso-8859-1]
Fri Jul 29 13:19:34 2011
@@ -1,0 +1,92 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<module name="freeldr_base" type="objectlibrary"
crt="static">
+ <include base="freeldr_base">include</include>
+ <include base="freeldr_base">cache</include>
+ <include base="cmlib">.</include>
+ <include base="ntoskrnl">include</include>
+ <define name="_BLDR_" />
+ <define name="_NTHAL_" />
+ <define name="_NTSYSTEM_" />
+ <directory name="arcemul">
+ <file>mm.c</file>
+ <file>time.c</file>
+ </directory>
+ <directory name="cache">
+ <file>blocklist.c</file>
+ <file>cache.c</file>
+ </directory>
+ <directory name="comm">
+ <file>rs232.c</file>
+ </directory>
+ <directory name="disk">
+ <file>disk.c</file>
+ <file>partition.c</file>
+ <file>ramdisk.c</file>
+ <if property="ARCH" value="i386">
+ <file>scsiport.c</file>
+ </if>
+ </directory>
+ <directory name="fs">
+ <file>ext2.c</file>
+ <file>fat.c</file>
+ <file>fs.c</file>
+ <file>iso.c</file>
+ <file>ntfs.c</file>
+ <file>pxe.c</file>
+ </directory>
+ <directory name="inifile">
+ <file>ini_init.c</file>
+ <file>inifile.c</file>
+ <file>parse.c</file>
+ </directory>
+ <directory name="mm">
+ <file>meminit.c</file>
+ <file>mm.c</file>
+ </directory>
+ <directory name="reactos">
+ <file>registry.c</file>
+ <file>arcname.c</file>
+ <file>archwsup.c</file>
+ <file>binhive.c</file>
+ </directory>
+ <directory name="rtl">
+ <file>bget.c</file>
+ <file>libsupp.c</file>
+ </directory>
+ <directory name="ui">
+ <file>directui.c</file>
+ <file>gui.c</file>
+ <file>minitui.c</file>
+ <file>noui.c</file>
+ <file>tui.c</file>
+ <file>tuimenu.c</file>
+ <file>ui.c</file>
+ </directory>
+ <directory name="video">
+ <file>fade.c</file>
+ <file>palette.c</file>
+ <file>video.c</file>
+ </directory>
+ <directory name="windows">
+ <file>conversion.c</file>
+ <file>peloader.c</file>
+ <file>winldr.c</file>
+ <file>wlmemory.c</file>
+ <file>wlregistry.c</file>
+ <if property="ARCH" value="i386">
+ <file>headless.c</file>
+ </if>
+ </directory>
+ <file>freeldr.c</file>
+ <file>debug.c</file>
+ <file>version.c</file>
+ <file>cmdline.c</file>
+ <file>machine.c</file>
+ <directory name="include">
+ <pch>freeldr.h</pch>
+ </directory>
+ <file>options.c</file>
+ <file>linuxboot.c</file>
+ <file>oslist.c</file>
+</module>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_base.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_base64k.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_base64k.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_base64k.rbuild
[iso-8859-1] Fri Jul 29 13:19:34 2011
@@ -1,0 +1,32 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<module name="freeldr_base64k" type="objectlibrary">
+ <include base="freeldr_base64k">include</include>
+ <include base="ntoskrnl">include</include>
+ <define name="_NTHAL_" />
+ <directory name="arch">
+ <if property="ARCH" value="i386">
+ <directory name="i386">
+ <file>boot.S</file>
+ <file>drvmap.S</file>
+ <file>i386cpu.S</file>
+ <file>i386idt.S</file>
+ <file>i386pnp.S</file>
+ <file>i386pxe.S</file>
+ <file>i386trap.S</file>
+ <file>int386.S</file>
+ <file>linux.S</file>
+ <file>mb.S</file>
+ </directory>
+ </if>
+ <if property="ARCH" value="amd64">
+ <directory name="amd64">
+ <file>drvmap.S</file>
+ <file>i386cpu.S</file>
+ <file>i386idt.S</file>
+ <file>i386trap.S</file>
+ <file>mb.S</file>
+ </directory>
+ </if>
+ </directory>
+</module>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_base64k.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_main.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_main.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_main.rbuild [iso-8859-1]
Fri Jul 29 13:19:34 2011
@@ -1,0 +1,8 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<module name="freeldr_main" type="objectlibrary"
crt="static">
+ <include base="freeldr_main">include</include>
+ <include base="ntoskrnl">include</include>
+ <define name="_NTHAL_" />
+ <file>bootmgr.c</file>
+</module>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_main.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_startup.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_startup.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_startup.rbuild
[iso-8859-1] Fri Jul 29 13:19:34 2011
@@ -1,0 +1,25 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<module name="freeldr_startup" type="objectlibrary">
+ <include base="freeldr_startup">include</include>
+ <include base="ntoskrnl">include</include>
+ <directory name="arch">
+ <if property="ARCH" value="i386">
+ <directory name="i386">
+ <file first="true">fathelp.asm</file>
+ <file>arch.S</file>
+ </directory>
+ </if>
+ <if property="ARCH" value="amd64">
+ <directory name="amd64">
+ <file first="true">fathelp.S</file>
+ <file>arch.S</file>
+ </directory>
+ </if>
+ <if property="ARCH" value="arm">
+ <directory name="arm">
+ <file first="true">boot.s</file>
+ </directory>
+ </if>
+ </directory>
+</module>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/freeldr_startup.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/setupldr.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/setupldr.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/setupldr.rbuild [iso-8859-1] Fri
Jul 29 13:19:34 2011
@@ -1,0 +1,24 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+
+<module name="setupldr" type="bootloader"
baseaddress="$(BASEADDRESS_FREELDR)">
+ <linkerscript>freeldr_$(ARCH).lnk</linkerscript>
+ <bootstrap installbase="loader" />
+ <library>freeldr_startup</library>
+ <library>freeldr_base64k</library>
+ <library>freeldr_base</library>
+ <if property="ARCH" value="i386">
+ <library>mini_hal</library>
+ </if>
+ <library>freeldr_arch</library>
+ <library>setupldr_main</library>
+ <library>rossym</library>
+ <library>cmlib</library>
+ <library>cportlib</library>
+ <library>rtl</library>
+ <library>libcntpr</library>
+ <group linkerset="ld">
+ <linkerflag>-static</linkerflag>
+ <linkerflag>-lgcc</linkerflag>
+ </group>
+</module>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/setupldr.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/setupldr_main.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/setupldr_main.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/setupldr_main.rbuild
[iso-8859-1] Fri Jul 29 13:19:34 2011
@@ -1,0 +1,22 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<module name="setupldr_main" type="objectlibrary"
crt="static">
+ <include base="setupldr_main">include</include>
+ <include base="ntoskrnl">include</include>
+ <define name="_NTHAL_" />
+ <define name="FREELDR_REACTOS_SETUP" />
+ <file>bootmgr.c</file>
+ <directory name="inffile">
+ <file>inffile.c</file>
+ </directory>
+ <if property="ARCH" value="i386">
+ <directory name="windows">
+ <file>setupldr2.c</file>
+ </directory>
+ </if>
+ <if property="ARCH" value="amd64">
+ <directory name="windows">
+ <file>setupldr2.c</file>
+ </directory>
+ </if>
+</module>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/freeldr/setupldr_main.rbuild
------------------------------------------------------------------------------
svn:eol-style = native
Added: branches/GSoC_2011/GdiFontDriver/boot/freeldr/install/installfreeldr.rbuild
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/GdiFontDriver/boot/fr…
==============================================================================
--- branches/GSoC_2011/GdiFontDriver/boot/freeldr/install/installfreeldr.rbuild (added)
+++ branches/GSoC_2011/GdiFontDriver/boot/freeldr/install/installfreeldr.rbuild
[iso-8859-1] Fri Jul 29 13:19:34 2011
@@ -1,0 +1,7 @@
+<?xml version="1.0"?>
+<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
+<module name="installfreeldr" type="win32cui">
+ <include base="installfreeldr">.</include>
+ <file>install.c</file>
+ <file>volume.c</file>
+</module>
Propchange: branches/GSoC_2011/GdiFontDriver/boot/freeldr/install/installfreeldr.rbuild
------------------------------------------------------------------------------
svn:eol-style = native