mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 12:14:32 +00:00
[USETUP] When choosing BTRFS for the partition, don't think of it as Ext2 but just a Linux partition
Most of Linux filesystems have the MBR ID assigned as 0x83 and when the user chooses BTRFS upon partitions page wizard, we're thinking of the partition as having Ext2 filesystem which is wrong and misleading.
This commit is contained in:
parent
b63e2d5046
commit
538f9d6aae
1 changed files with 3 additions and 3 deletions
|
@ -3886,10 +3886,10 @@ BootLoaderPage(PINPUT_RECORD Ir)
|
|||
DPRINT("Found OS/2 boot manager partition\n");
|
||||
InstallOnFloppy = TRUE;
|
||||
}
|
||||
else if (PartitionType == PARTITION_EXT2)
|
||||
else if (PartitionType == PARTITION_LINUX)
|
||||
{
|
||||
/* Linux EXT2 partition */
|
||||
DPRINT("Found Linux EXT2 partition\n");
|
||||
/* Linux partition */
|
||||
DPRINT("Found Linux native partition (ext2/ext3/ReiserFS/BTRFS/etc)\n");
|
||||
InstallOnFloppy = FALSE;
|
||||
}
|
||||
else if (PartitionType == PARTITION_IFS)
|
||||
|
|
Loading…
Reference in a new issue