[FS] During 1st stage, disable any FS we don't support install to in order to let RawFS these volumes.

This avoids bloated setup and avoids potential bugs in 3rd party drivers.

This is following 806cd1.
This commit is contained in:
Pierre Schweitzer 2017-12-18 08:44:24 +01:00
parent 4ef08871ee
commit 5a650f6ba5
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B
5 changed files with 4 additions and 8 deletions

View file

@ -57,7 +57,6 @@ scsiport.sys=,,,,,,x,,,,,,4
storport.sys=,,,,,,x,,,,,,4
fastfat.sys=,,,,,,x,,,,,,4
ramdisk.sys=,,,,,,x,,,,,,4
ext2fs.sys=,,,,,,x,,,,,,4
classpnp.sys=,,,,,,,,,,,,4
pciide.sys=,,,,,,,,,,,,4
pciidex.sys=,,,,,,,,,,,,4
@ -68,9 +67,6 @@ ntdll.dll=,,,,,,,,,,,,2
wmilib.sys=,,,,,,,,,,,,4
ksecdd.sys=,,,,,,,,,,,,4
mountmgr.sys=,,,,,,x,,,,,,4
reiserfs.sys=,,,,,,x,,,,,,4
ffs.sys=,,,,,,x,,,,,,4
udfs.sys=,,,,,,x,,,,,,4
[SystemPartitionFiles]

View file

@ -118,4 +118,4 @@ if(NOT USE_CLANG_CL)
add_pch(ext2fs inc/ext2fs.h SOURCE)
endif()
add_cd_file(TARGET ext2fs DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_cd_file(TARGET ext2fs DESTINATION reactos/system32/drivers FOR all)

View file

@ -45,5 +45,5 @@ set_module_type(ffs kernelmodedriver)
target_link_libraries(ffs memcmp ${PSEH_LIB})
add_importlibs(ffs ntoskrnl hal)
add_pch(ffs inc/ffsdrv.h SOURCE)
add_cd_file(TARGET ffs DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_cd_file(TARGET ffs DESTINATION reactos/system32/drivers FOR all)

View file

@ -95,4 +95,4 @@ add_definitions(-D__KERNEL__)
set_module_type(reiserfs kernelmodedriver)
add_importlibs(reiserfs ntoskrnl hal)
add_pch(reiserfs inc/rfsd.h SOURCE)
add_cd_file(TARGET reiserfs DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_cd_file(TARGET reiserfs DESTINATION reactos/system32/drivers FOR all)

View file

@ -60,5 +60,5 @@ set_module_type(udfs kernelmodedriver)
target_link_libraries(udfs ${PSEH_LIB})
add_importlibs(udfs ntoskrnl hal)
add_pch(udfs udffs.h SOURCE)
add_cd_file(TARGET udfs DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_cd_file(TARGET udfs DESTINATION reactos/system32/drivers FOR all)
add_registry_inf(udfs_reg.inf)