[FS] During 1st stage, disable any FS we don't support install to in order to let...
authorPierre Schweitzer <pierre@reactos.org>
Mon, 18 Dec 2017 07:44:24 +0000 (08:44 +0100)
committerPierre Schweitzer <pierre@reactos.org>
Mon, 18 Dec 2017 07:46:24 +0000 (08:46 +0100)
This avoids bloated setup and avoids potential bugs in 3rd party drivers.

This is following 806cd1.

boot/bootdata/txtsetup.sif
drivers/filesystems/ext2/CMakeLists.txt
drivers/filesystems/ffs/CMakeLists.txt
drivers/filesystems/reiserfs/CMakeLists.txt
drivers/filesystems/udfs/CMakeLists.txt

index 822c19c..7a86bef 100644 (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]
 
index 6d0bdb7..94b077b 100644 (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)
index 8138a15..6f37187 100644 (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)
 
index 7990886..95d70ea 100644 (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)
index 8b5df85..8bb85aa 100644 (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)