[NTOS:KD64] Improve the ARC Paths output in the KdpPrintBanner()

Instead of mixing the paths order (ArcBoot, NtHal, ArcHal, NtBoot),
show them in a meaningful order: ArcHal, NtHal, ArcBoot, NtBoot.

- The `ArcHalDeviceName` + `NtHalPathName` is the path to the system
  loader started by the firmware (and the HAL in old non-x86 Windows
  versions).

- The `ArcBootDeviceName` + `NtBootPathName` is the operating system
  boot partition and directory ("system root").
This commit is contained in:
Hermès Bélusca-Maïto
2026-04-09 22:00:40 +02:00
parent 7fc926974f
commit 9336919fec

View File

@@ -99,8 +99,8 @@ KdpPrintBanner(VOID)
{
DPRINT1("Command Line: %s\n", KeLoaderBlock->LoadOptions);
DPRINT1("ARC Paths: %s %s %s %s\n",
KeLoaderBlock->ArcBootDeviceName, KeLoaderBlock->NtHalPathName,
KeLoaderBlock->ArcHalDeviceName, KeLoaderBlock->NtBootPathName);
KeLoaderBlock->ArcHalDeviceName, KeLoaderBlock->NtHalPathName,
KeLoaderBlock->ArcBootDeviceName, KeLoaderBlock->NtBootPathName);
}
}