Author: fireball Date: Thu Feb 7 21:06:11 2008 New Revision: 32193
URL: http://svn.reactos.org/svn/reactos?rev=32193&view=rev Log: - Rename vfatfs.sys to fastfat.sys for compatibility reasons.
Added: trunk/reactos/drivers/filesystems/fastfat/ - copied from r32184, trunk/reactos/drivers/filesystems/vfat/ Removed: trunk/reactos/drivers/filesystems/vfat/ Modified: trunk/reactos/boot/bootdata/hivesys.inf trunk/reactos/boot/bootdata/txtsetup.sif trunk/reactos/boot/freeldr/freeldr/reactos/setupldr.c trunk/reactos/drivers/filesystems/directory.rbuild trunk/reactos/drivers/filesystems/fastfat/vfatfs.rbuild
Modified: trunk/reactos/boot/bootdata/hivesys.inf URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/hivesys.inf?r... ============================================================================== --- trunk/reactos/boot/bootdata/hivesys.inf (original) +++ trunk/reactos/boot/bootdata/hivesys.inf Thu Feb 7 21:06:11 2008 @@ -733,11 +733,11 @@ HKLM,"SYSTEM\CurrentControlSet\Services\tcpsvcs","Type",0x00010001,0x00000020
; Virtual FAT filesystem driver -HKLM,"SYSTEM\CurrentControlSet\Services\Vfatfs","ErrorControl",0x00010001,0x00000000 -HKLM,"SYSTEM\CurrentControlSet\Services\Vfatfs","Group",0x00000000,"Boot File System" -HKLM,"SYSTEM\CurrentControlSet\Services\Vfatfs","ImagePath",0x00020000,"system32\drivers\vfatfs.sys" -HKLM,"SYSTEM\CurrentControlSet\Services\Vfatfs","Start",0x00010001,0x00000000 -HKLM,"SYSTEM\CurrentControlSet\Services\Vfatfs","Type",0x00010001,0x00000002 +HKLM,"SYSTEM\CurrentControlSet\Services\fastfat","ErrorControl",0x00010001,0x00000000 +HKLM,"SYSTEM\CurrentControlSet\Services\fastfat","Group",0x00000000,"Boot File System" +HKLM,"SYSTEM\CurrentControlSet\Services\fastfat","ImagePath",0x00020000,"system32\drivers\fastfat.sys" +HKLM,"SYSTEM\CurrentControlSet\Services\fastfat","Start",0x00010001,0x00000000 +HKLM,"SYSTEM\CurrentControlSet\Services\fastfat","Type",0x00010001,0x00000002
; VBE SVGA driver HKLM,"SYSTEM\CurrentControlSet\Services\VBE","ErrorControl",0x00010001,0x00000000
Modified: trunk/reactos/boot/bootdata/txtsetup.sif URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/txtsetup.sif?... ============================================================================== --- trunk/reactos/boot/bootdata/txtsetup.sif (original) +++ trunk/reactos/boot/bootdata/txtsetup.sif Thu Feb 7 21:06:11 2008 @@ -32,7 +32,7 @@ pci.sys=,,,,,,,,,,,,4 scsiport.sys=,,,,,,x,,,,,,4 uniata.sys=,,,,,,,,,,,,4 -vfatfs.sys=,,,,,,,,,,,,4 +fastfat.sys=,,,,,,,,,,,,4
[HardwareIdsDatabase] *PNP0C08 = acpi
Modified: trunk/reactos/boot/freeldr/freeldr/reactos/setupldr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/reacto... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/reactos/setupldr.c (original) +++ trunk/reactos/boot/freeldr/freeldr/reactos/setupldr.c Thu Feb 7 21:06:11 2008 @@ -400,8 +400,8 @@ return; }
- /* Load vfatfs.sys (could be loaded by the setup prog!) */ - if (!LoadDriver(SourcePath, "vfatfs.sys")) + /* Load fastfat.sys (could be loaded by the setup prog!) */ + if (!LoadDriver(SourcePath, "fastfat.sys")) return;
/* Load additional files specified in txtsetup.inf */
Modified: trunk/reactos/drivers/filesystems/directory.rbuild URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/directo... ============================================================================== --- trunk/reactos/drivers/filesystems/directory.rbuild (original) +++ trunk/reactos/drivers/filesystems/directory.rbuild Thu Feb 7 21:06:11 2008 @@ -19,7 +19,7 @@ <directory name="ntfs"> <xi:include href="ntfs/ntfs.rbuild" /> </directory> -<directory name="vfat"> - <xi:include href="vfat/vfatfs.rbuild" /> +<directory name="fastfat"> + <xi:include href="fastfat/vfatfs.rbuild" /> </directory> </group>
Modified: trunk/reactos/drivers/filesystems/fastfat/vfatfs.rbuild URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfat... ============================================================================== --- trunk/reactos/drivers/filesystems/fastfat/vfatfs.rbuild (original) +++ trunk/reactos/drivers/filesystems/fastfat/vfatfs.rbuild Thu Feb 7 21:06:11 2008 @@ -1,8 +1,8 @@ <?xml version="1.0"?> <!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd"> -<module name="vfatfs" type="kernelmodedriver" installbase="system32/drivers" installname="vfatfs.sys"> +<module name="fastfat" type="kernelmodedriver" installbase="system32/drivers" installname="fastfat.sys"> <bootstrap installbase="$(CDOUTPUT)" /> - <include base="vfatfs">.</include> + <include base="fastfat">.</include> <linkerflag>-lgcc</linkerflag> <library>ntoskrnl</library> <library>hal</library>