Further tidying up of the multimedia components. Renamed MPU401_KS to

MPU401 and SB16_KS to SB16. Have updated the rbuild files so these 
should still build without issue.


svn path=/trunk/; revision=27487
This commit is contained in:
Andrew Greenwood 2007-07-08 16:12:09 +00:00
parent 6c0a11007b
commit 224af7cee9
12 changed files with 24 additions and 14 deletions

View file

@ -1,3 +1,6 @@
<directory name="mpu401_ks">
<xi:include href="mpu401_ks/mpu401.rbuild" />
</directory>
<directory name="mpu401">
<xi:include href="mpu401/mpu401.rbuild" />
</directory>
<!--directory name="sb16">
<xi:include href="sb16/sb16.rbuild" />
</directory-->

View file

@ -0,0 +1,18 @@
<!--
This module fails to load as NTOSKRNL currently does not support
imports (hence PORTCLS fails to load.)
A. Greenwood (July 2007)
-->
<module name="mpu401" type="kernelmodedriver" installbase="system32/drivers" installname="mpu401.sys" allowwarnings="true" entrypoint="DriverEntry">
<linkerflag>-Wl,--entry,_DriverEntry@8</linkerflag>
<include base="mpu401">.</include>
<include base="mpu401">..</include>
<library>ntoskrnl</library>
<library>portcls</library>
<define name="DBG" />
<define name="__USE_W32API" />
<!--file>mpu401.rc</file-->
<file>adapter.cpp</file>
</module>

View file

@ -1,11 +0,0 @@
<module name="mpu401" type="kernelmodedriver" installbase="system32/drivers" installname="mpu401.sys" allowwarnings="true" entrypoint="DriverEntry">
<linkerflag>-Wl,--entry,_DriverEntry@8</linkerflag>
<include base="mpu401">.</include>
<include base="mpu401">..</include>
<library>ntoskrnl</library>
<library>portcls</library>
<define name="DBG" />
<define name="__USE_W32API" />
<!--file>mpu401.rc</file-->
<file>adapter.cpp</file>
</module>