From b3dd091a092f218ab1003134f4c1c7382770854a Mon Sep 17 00:00:00 2001 From: Justin Miller Date: Tue, 31 Oct 2023 12:06:32 -0700 Subject: [PATCH] [BOOTDATA][HALX86] Make SMP entry consistent on x64 --- boot/bootdata/txtsetup.sif | 2 +- hal/halx86/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boot/bootdata/txtsetup.sif b/boot/bootdata/txtsetup.sif index 1c084276ce423..1acbed5f1f788 100644 --- a/boot/bootdata/txtsetup.sif +++ b/boot/bootdata/txtsetup.sif @@ -293,7 +293,7 @@ hal.dll = 1,,,,,,,2,,,,1,2 [Files.x64_mp] ntkrnlmp.exe = 1,,,,,,,2,,,ntoskrnl.exe,1,2 -halmp.dll = 1,,,,,,,2,,,hal.dll,1,2 +halmacpi.dll = 1,,,,,,,2,,,hal.dll,1,2 [Display] ; = ,,,,, diff --git a/hal/halx86/CMakeLists.txt b/hal/halx86/CMakeLists.txt index dc22b0c9614a8..0477fd710d57f 100644 --- a/hal/halx86/CMakeLists.txt +++ b/hal/halx86/CMakeLists.txt @@ -72,6 +72,6 @@ if(ARCH STREQUAL "i386") elseif(ARCH STREQUAL "amd64") add_hal(hal SOURCES ${HAL_SOURCE} COMPONENTS generic acpi up apic) - add_hal(halmp SOURCES ${HAL_SOURCE} COMPONENTS generic acpi smp apic) + add_hal(halmacpi SOURCES ${HAL_SOURCE} COMPONENTS generic acpi smp apic) endif()