mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +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:
parent
336ca7d838
commit
5dfb41e641
2 changed files with 2 additions and 1 deletions
|
@ -40,7 +40,7 @@ ArmDiskGetBootVolume(IN PULONG DriveNumber,
|
||||||
// Use magic ramdisk drive number and count the number of 512-byte sectors
|
// Use magic ramdisk drive number and count the number of 512-byte sectors
|
||||||
//
|
//
|
||||||
*DriveNumber = 0x49;
|
*DriveNumber = 0x49;
|
||||||
*StartSector = 0;
|
*StartSector = 63;
|
||||||
*SectorCount = gRamDiskSize * 512;
|
*SectorCount = gRamDiskSize * 512;
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
@ -43,6 +43,7 @@ VOID NoUiDrawCenteredText(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, PCST
|
||||||
|
|
||||||
VOID NoUiDrawStatusText(PCSTR StatusText)
|
VOID NoUiDrawStatusText(PCSTR StatusText)
|
||||||
{
|
{
|
||||||
|
printf("%s\n", StatusText);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID NoUiUpdateDateTime(VOID)
|
VOID NoUiUpdateDateTime(VOID)
|
||||||
|
|
Loading…
Reference in a new issue