feature: Prepare ras for netlink interface

Related-To: NEO-8568

Signed-off-by: Aravind Gopalakrishnan <Aravind.Gopalakrishnan@intel.com>
This commit is contained in:
Aravind Gopalakrishnan 2024-04-01 20:01:31 +00:00 committed by Compute-Runtime-Automation
parent da6a4f573c
commit 1af48cec4e
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# #
# Copyright (C) 2023 Intel Corporation # Copyright (C) 2023-2024 Intel Corporation
# #
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
# #
@ -13,4 +13,5 @@ if(UNIX)
${CMAKE_CURRENT_SOURCE_DIR}/sysman_ras_util_pmu.cpp ${CMAKE_CURRENT_SOURCE_DIR}/sysman_ras_util_pmu.cpp
${CMAKE_CURRENT_SOURCE_DIR}/sysman_ras_util_gsc.cpp ${CMAKE_CURRENT_SOURCE_DIR}/sysman_ras_util_gsc.cpp
) )
add_subdirectories()
endif() endif()

View File

@ -30,6 +30,7 @@ enum class RasInterfaceType {
pmu = 0, pmu = 0,
pmt, pmt,
gsc, gsc,
netlink,
none, none,
}; };