mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 20:18:22 +00:00
[USETUP]
Don't override the hidden sectors value set during format when seting up bootsector. This allows installing ReactOS on a FAT partition that doesn't start on sector 63. Successfully tested with a partition starting on sector 2048, for instance. Patch by Wim Hueskes CORE-8825 #resolve #comment Committed in r71418. Thanks for the debugging and the patch! svn path=/trunk/; revision=71418
This commit is contained in:
parent
a1a1d0917e
commit
b6e9ec7df1
1 changed files with 0 additions and 4 deletions
|
@ -1582,8 +1582,6 @@ InstallFat16BootCodeToDisk(
|
|||
FIELD_OFFSET(FAT_BOOTSECTOR, BootCodeAndData) -
|
||||
FIELD_OFFSET(FAT_BOOTSECTOR, OemName));
|
||||
|
||||
NewBootSector->HiddenSectors = PartitionList->CurrentDisk->SectorsPerTrack;
|
||||
|
||||
/* Free the original boot sector */
|
||||
RtlFreeHeap(ProcessHeap, 0, OrigBootSector);
|
||||
|
||||
|
@ -1740,8 +1738,6 @@ InstallFat32BootCodeToDisk(
|
|||
FIELD_OFFSET(FAT32_BOOTSECTOR, BootCodeAndData) -
|
||||
FIELD_OFFSET(FAT32_BOOTSECTOR, OemName));
|
||||
|
||||
NewBootSector->HiddenSectors = PartitionList->CurrentDisk->SectorsPerTrack;
|
||||
|
||||
/* Get the location of the backup boot sector */
|
||||
BackupBootSector = OrigBootSector->BackupBootSector;
|
||||
|
||||
|
|
Loading…
Reference in a new issue