mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[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:
parent
4ef08871ee
commit
5a650f6ba5
5 changed files with 4 additions and 8 deletions
|
@ -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]
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue