[ACPI] Move CMBATT and COMPBATT out of the acpi directory (#7599)

Move these out of ACPI in preparation for ACPI_NEW so they keep their juicy commit history.
Also both ACPIs can coexist for awhile as I don't see the old driver getting removed anytime soon.
This commit is contained in:
Justin Miller 2025-01-29 00:49:35 -08:00 committed by GitHub
parent b35becef2e
commit a8da29e888
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,7 @@
PROJECT(Drivers) PROJECT(Drivers)
add_subdirectory(acpi)
add_subdirectory(base) add_subdirectory(base)
add_subdirectory(battery) add_subdirectory(battery)
add_subdirectory(bluetooth) add_subdirectory(bluetooth)

View file

@ -0,0 +1 @@
add_subdirectory(cmbatt)

View file

@ -1,2 +1,3 @@
add_subdirectory(battc) add_subdirectory(battc)
add_subdirectory(compbatt)

View file

@ -209,6 +209,3 @@ add_importlibs(acpi ntoskrnl hal)
add_pch(acpi precomp.h ACPI_SOURCE) add_pch(acpi precomp.h ACPI_SOURCE)
add_cd_file(TARGET acpi DESTINATION reactos/system32/drivers NO_CAB FOR all) add_cd_file(TARGET acpi DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_driver_inf(acpi acpi.inf) add_driver_inf(acpi acpi.inf)
add_subdirectory(cmbatt)
add_subdirectory(compbatt)