1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:17:35 +00:00

Kernel: Move VMWare backdoor communication code to the x86 directory

The VMWare backdoor handling code involves many x86-specific
instructions and therefore should be in the Arch/x86 directory. This
ensures we can easily omit the code in compile-time for non-x86 builds.
This commit is contained in:
Liav A 2022-09-02 17:26:54 +03:00 committed by Linus Groh
parent e39086f2c6
commit 485d4e01ed
6 changed files with 6 additions and 5 deletions

View file

@ -164,7 +164,6 @@ set(KERNEL_SOURCES
Firmware/BIOS.cpp
Firmware/ACPI/Initialize.cpp
Firmware/ACPI/Parser.cpp
Firmware/Hypervisor/VMWareBackdoor.cpp
Firmware/MultiProcessor/Parser.cpp
FutexQueue.cpp
Interrupts/APIC.cpp
@ -339,6 +338,8 @@ if ("${SERENITY_ARCH}" STREQUAL "i686" OR "${SERENITY_ARCH}" STREQUAL "x86_64")
Arch/x86/common/SmapDisabler.cpp
Arch/x86/common/Shutdown.cpp
Arch/x86/Hypervisor/VMWareBackdoor.cpp
Arch/x86/PCI/Controller/HostBridge.cpp
Arch/x86/PCI/Initializer.cpp
)