From b6e9ec7df152a48cea2ea3dcafbd11a65f70f5f2 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Thu, 26 May 2016 20:50:44 +0000 Subject: [PATCH 1/1] [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 --- reactos/base/setup/usetup/bootsup.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/reactos/base/setup/usetup/bootsup.c b/reactos/base/setup/usetup/bootsup.c index 1d970a6147a..8ed151c6a79 100644 --- a/reactos/base/setup/usetup/bootsup.c +++ b/reactos/base/setup/usetup/bootsup.c @@ -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; -- 2.17.1