Author: hpoussin
Date: Tue Apr 21 23:05:07 2009
New Revision: 40636
URL:
http://svn.reactos.org/svn/reactos?rev=40636&view=rev
Log:
Disable partition table exploration, as long as it displays an error message if disk is
not partitioned
Modified:
trunk/reactos/boot/freeldr/freeldr/arch/i386/hardware.c
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/hardware.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/arch/i386/hardware.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/arch/i386/hardware.c [iso-8859-1] Tue Apr 21
23:05:07 2009
@@ -536,6 +536,7 @@
sprintf(ArcName, "multi(0)disk(0)rdisk(%lu)partition(0)", DriveNumber -
0x80);
FsRegisterDevice(ArcName, &DiskVtbl);
+#if 0
/* Add partitions */
i = 0;
while (MachDiskGetPartitionEntry(DriveNumber, i, &PartitionTableEntry))
@@ -547,6 +548,7 @@
}
i++;
}
+#endif
/* Convert checksum and signature to identifier string */
Identifier[0] = Hex[(Checksum >> 28) & 0x0F];