mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 04:13:32 +00:00
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:
@@ -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;
|
||||
|
||||
//
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user