Build storage drivers Modified: branches/xmlbuildsystem/reactos/drivers/directory.xml Added: branches/xmlbuildsystem/reactos/drivers/storage/atapi/atapi.xml Added: branches/xmlbuildsystem/reactos/drivers/storage/cdrom/cdrom.xml Added: branches/xmlbuildsystem/reactos/drivers/storage/class2/class2.xml Added: branches/xmlbuildsystem/reactos/drivers/storage/directory.xml Added: branches/xmlbuildsystem/reactos/drivers/storage/disk/disk.xml Added: branches/xmlbuildsystem/reactos/drivers/storage/diskdump/diskdump.xml Added: branches/xmlbuildsystem/reactos/drivers/storage/floppy/floppy.xml Added: branches/xmlbuildsystem/reactos/drivers/storage/scsiport/scsiport.xml _____
Modified: branches/xmlbuildsystem/reactos/drivers/directory.xml --- branches/xmlbuildsystem/reactos/drivers/directory.xml 2005-01-17 21:29:43 UTC (rev 13102) +++ branches/xmlbuildsystem/reactos/drivers/directory.xml 2005-01-17 21:40:12 UTC (rev 13103) @@ -16,3 +16,6 @@
<directory name="net"> <xi:include href="net/directory.xml" /> </directory> +<directory name="storage"> + <xi:include href="storage/directory.xml" /> +</directory> _____
Added: branches/xmlbuildsystem/reactos/drivers/storage/atapi/atapi.xml --- branches/xmlbuildsystem/reactos/drivers/storage/atapi/atapi.xml 2005-01-17 21:29:43 UTC (rev 13102) +++ branches/xmlbuildsystem/reactos/drivers/storage/atapi/atapi.xml 2005-01-17 21:40:12 UTC (rev 13103) @@ -0,0 +1,8 @@
+<module name="atapi" type="kernelmodedriver"> + <include base="atapi">.</include> + <library>ntoskrnl</library> + <library>hal</library> + <library>scsiport</library> + <file>atapi.c</file> + <file>atapi.rc</file> +</module> _____
Added: branches/xmlbuildsystem/reactos/drivers/storage/cdrom/cdrom.xml --- branches/xmlbuildsystem/reactos/drivers/storage/cdrom/cdrom.xml 2005-01-17 21:29:43 UTC (rev 13102) +++ branches/xmlbuildsystem/reactos/drivers/storage/cdrom/cdrom.xml 2005-01-17 21:40:12 UTC (rev 13103) @@ -0,0 +1,7 @@
+<module name="cdrom" type="kernelmodedriver"> + <library>ntoskrnl</library> + <library>hal</library> + <library>class2</library> + <file>cdrom.c</file> + <file>cdrom.rc</file> +</module> _____
Added: branches/xmlbuildsystem/reactos/drivers/storage/class2/class2.xml --- branches/xmlbuildsystem/reactos/drivers/storage/class2/class2.xml 2005-01-17 21:29:43 UTC (rev 13102) +++ branches/xmlbuildsystem/reactos/drivers/storage/class2/class2.xml 2005-01-17 21:40:12 UTC (rev 13103) @@ -0,0 +1,7 @@
+<module name="class2" type="kernelmodedriver"> + <importlibrary definition="class2.def" /> + <library>ntoskrnl</library> + <library>hal</library> + <file>class2.c</file> + <file>class2.rc</file> +</module> _____
Added: branches/xmlbuildsystem/reactos/drivers/storage/directory.xml --- branches/xmlbuildsystem/reactos/drivers/storage/directory.xml 2005-01-17 21:29:43 UTC (rev 13102) +++ branches/xmlbuildsystem/reactos/drivers/storage/directory.xml 2005-01-17 21:40:12 UTC (rev 13103) @@ -0,0 +1,21 @@
+<directory name="atapi"> + <xi:include href="atapi/atapi.xml" /> +</directory> +<directory name="cdrom"> + <xi:include href="cdrom/cdrom.xml" /> +</directory> +<directory name="class2"> + <xi:include href="class2/class2.xml" /> +</directory> +<directory name="disk"> + <xi:include href="disk/disk.xml" /> +</directory> +<directory name="diskdump"> + <xi:include href="diskdump/diskdump.xml" /> +</directory> +<directory name="floppy"> + <xi:include href="floppy/floppy.xml" /> +</directory> +<directory name="scsiport"> + <xi:include href="scsiport/scsiport.xml" /> +</directory> _____
Added: branches/xmlbuildsystem/reactos/drivers/storage/disk/disk.xml --- branches/xmlbuildsystem/reactos/drivers/storage/disk/disk.xml 2005-01-17 21:29:43 UTC (rev 13102) +++ branches/xmlbuildsystem/reactos/drivers/storage/disk/disk.xml 2005-01-17 21:40:12 UTC (rev 13103) @@ -0,0 +1,7 @@
+<module name="disk" type="kernelmodedriver"> + <library>ntoskrnl</library> + <library>hal</library> + <library>class2</library> + <file>disk.c</file> + <file>disk.rc</file> +</module> _____
Added: branches/xmlbuildsystem/reactos/drivers/storage/diskdump/diskdump.xml --- branches/xmlbuildsystem/reactos/drivers/storage/diskdump/diskdump.xml 2005-01-17 21:29:43 UTC (rev 13102) +++ branches/xmlbuildsystem/reactos/drivers/storage/diskdump/diskdump.xml 2005-01-17 21:40:12 UTC (rev 13103) @@ -0,0 +1,9 @@
+<module name="diskdump" type="kernelmodedriver"> + <library definition="diskdump.def" /> + <library>ntoskrnl</library> + <library>hal</library> + <library>class2</library> + <file>diskdump.c</file> + <file>diskdump_helper.S</file> + <file>diskdump.rc</file> +</module> _____
Added: branches/xmlbuildsystem/reactos/drivers/storage/floppy/floppy.xml --- branches/xmlbuildsystem/reactos/drivers/storage/floppy/floppy.xml 2005-01-17 21:29:43 UTC (rev 13102) +++ branches/xmlbuildsystem/reactos/drivers/storage/floppy/floppy.xml 2005-01-17 21:40:12 UTC (rev 13103) @@ -0,0 +1,12 @@
+<module name="floppy" type="kernelmodedriver"> + <include base="floppy">.</include> + <library>ntoskrnl</library> + <library>hal</library> + <library>csq</library> + <file>csqrtns.c</file> + <file>floppy.c</file> + <file>hardware.c</file> + <file>ioctl.c</file> + <file>readwrite.c</file> + <file>floppy.rc</file> +</module> _____
Added: branches/xmlbuildsystem/reactos/drivers/storage/scsiport/scsiport.xml --- branches/xmlbuildsystem/reactos/drivers/storage/scsiport/scsiport.xml 2005-01-17 21:29:43 UTC (rev 13102) +++ branches/xmlbuildsystem/reactos/drivers/storage/scsiport/scsiport.xml 2005-01-17 21:40:12 UTC (rev 13103) @@ -0,0 +1,8 @@
+<module name="scsiport" type="kernelmodedriver"> + <importlibrary definition="scsiport.def" /> + <include base="scsiport">.</include> + <library>ntoskrnl</library> + <library>hal</library> + <file>scsiport.c</file> + <file>scsiport.rc</file> +</module>