We now report the correct sector start for the ramdisk -- the actual volume boot sector is at 0x63, not 0x00 which is the MBR.

FreeLDR now reads freeldr.ini correctly and continues all the way to hardware detection (ArmHwDetect)

svn path=/trunk/; revision=32170
This commit is contained in:
ReactOS Portable Systems Group 2008-02-06 20:38:59 +00:00
parent 336ca7d838
commit 5dfb41e641
2 changed files with 2 additions and 1 deletions

View file

@ -40,7 +40,7 @@ ArmDiskGetBootVolume(IN PULONG DriveNumber,
// Use magic ramdisk drive number and count the number of 512-byte sectors
//
*DriveNumber = 0x49;
*StartSector = 0;
*StartSector = 63;
*SectorCount = gRamDiskSize * 512;
//

View file

@ -43,6 +43,7 @@ VOID NoUiDrawCenteredText(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, PCST
VOID NoUiDrawStatusText(PCSTR StatusText)
{
printf("%s\n", StatusText);
}
VOID NoUiUpdateDateTime(VOID)