[SETUP] Remove FSDs which have broken dismount implementation.

This avoids issues when these partitions are formatted to FAT for setup.

For now, this commit doesn't change anything, but once IopParseDevice hack
gets removed, this will make a difference!

CORE-6305
This commit is contained in:
Pierre Schweitzer 2017-12-17 23:13:56 +01:00
parent 5311c57b5f
commit 806cd16328
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B
3 changed files with 2 additions and 4 deletions

View file

@ -52,7 +52,6 @@ usbstor.sys=,,,,,,x,,,,,,4
kbdhid.sys=,,,,,,,,,,,,4
kbdclass.sys=,,,,,,x,,,,,,4
l_intl.nls=,,,,,,,,,,,,2
ntfs.sys=,,,,,,,,,,,,4
pci.sys=,,,,,,,,,,,,4
scsiport.sys=,,,,,,x,,,,,,4
storport.sys=,,,,,,x,,,,,,4
@ -69,7 +68,6 @@ ntdll.dll=,,,,,,,,,,,,2
wmilib.sys=,,,,,,,,,,,,4
ksecdd.sys=,,,,,,,,,,,,4
mountmgr.sys=,,,,,,x,,,,,,4
btrfs.sys=,,,,,,x,,,,,,4
reiserfs.sys=,,,,,,x,,,,,,4
ffs.sys=,,,,,,x,,,,,,4
udfs.sys=,,,,,,x,,,,,,4

View file

@ -41,4 +41,4 @@ add_definitions(-D__KERNEL__)
set_module_type(btrfs kernelmodedriver)
target_link_libraries(btrfs rtlver ntoskrnl_vista zlib_solo wdmguid ${PSEH_LIB})
add_importlibs(btrfs ntoskrnl hal)
add_cd_file(TARGET btrfs DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_cd_file(TARGET btrfs DESTINATION reactos/system32/drivers FOR all)

View file

@ -25,4 +25,4 @@ set_module_type(ntfs kernelmodedriver)
target_link_libraries(ntfs ${PSEH_LIB})
add_importlibs(ntfs ntoskrnl hal)
add_pch(ntfs ntfs.h SOURCE)
add_cd_file(TARGET ntfs DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_cd_file(TARGET ntfs DESTINATION reactos/system32/drivers FOR all)