Skip to content

Commit 7a69580

Browse files
committed
Reverted entservices modules to 1.0.9
1 parent baf0829 commit 7a69580

File tree

14 files changed

+502
-336
lines changed

14 files changed

+502
-336
lines changed

CHANGELOG.md

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,9 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7-
#### [1.0.12](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.11...1.0.12)
8-
9-
- RDKEMW-1014 : Add COM-RPC support to HdcpProfile plugin [`#72`](https://github.com/rdkcentral/entservices-inputoutput/pull/72)
10-
- RDK-55373:[RDKServices] Coverity integration with middleware component workflow [`#80`](https://github.com/rdkcentral/entservices-inputoutput/pull/80)
11-
- [RDKEMW-2711] RDKEMW-2748 : Update the Test Coverage [`#75`](https://github.com/rdkcentral/entservices-inputoutput/pull/75)
12-
- Update Utils.py [`#73`](https://github.com/rdkcentral/entservices-inputoutput/pull/73)
13-
- Merge tag '1.0.11' into develop [`c86b827`](https://github.com/rdkcentral/entservices-inputoutput/commit/c86b82721e32a4bbc828003d0fd5cf76c77d8cca)
14-
15-
#### [1.0.11](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.10...1.0.11)
16-
17-
> 25 April 2025
18-
19-
- PowerManager Interface file modified [`#62`](https://github.com/rdkcentral/entservices-inputoutput/pull/62)
20-
- Update TestManager.py for removing frontpanel and hdcpprofile dependencies to execute testcases standalone [`#68`](https://github.com/rdkcentral/entservices-inputoutput/pull/68)
21-
- 1.0.11 release changelog updates [`85c0153`](https://github.com/rdkcentral/entservices-inputoutput/commit/85c0153a722c521a8707a49758f9df1cd4e4dc59)
22-
- Merge tag '1.0.10' into develop [`7a54d8c`](https://github.com/rdkcentral/entservices-inputoutput/commit/7a54d8cdb9da6de8071c19c8efdf48e7ec5bba96)
23-
24-
#### [1.0.10](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.9...1.0.10)
25-
26-
> 23 April 2025
27-
28-
- RDK-55554 Update return type [`#60`](https://github.com/rdkcentral/entservices-inputoutput/pull/60)
29-
- RDKEMW-3207 [OSCR SCAN] RDKE - entservices-testframework [`#61`](https://github.com/rdkcentral/entservices-inputoutput/pull/61)
30-
- RDK-55554 - Changelog updates for 1.0.10 [`36cea31`](https://github.com/rdkcentral/entservices-inputoutput/commit/36cea315c7be83b561012ea219fb78cbdd60f5d5)
31-
- Modifying L1-tests.yml L2-tests.yml [`fd0a678`](https://github.com/rdkcentral/entservices-inputoutput/commit/fd0a6783526fa0dd6d6541b31aeef4c2d8272fb5)
32-
- Merge tag '1.0.9' into develop [`668cc7c`](https://github.com/rdkcentral/entservices-inputoutput/commit/668cc7ce09864ac16e6c609cabbfcf94ae16faba)
33-
347
#### [1.0.9](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.8...1.0.9)
358

36-
> 15 April 2025
37-
389
- RDK-57093: Resolved the compilation error [`#55`](https://github.com/rdkcentral/entservices-inputoutput/pull/55)
39-
- 1.0.9 release change log updates [`fb8eb3c`](https://github.com/rdkcentral/entservices-inputoutput/commit/fb8eb3c4fe58d2165dbab6d57d8eab46673ed1f3)
4010
- Merge tag '1.0.8' into develop [`fe37f21`](https://github.com/rdkcentral/entservices-inputoutput/commit/fe37f210ddbf3e698fccc454fd7593e7fb6e4a9d)
4111

4212
#### [1.0.8](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.7...1.0.8)

HdcpProfile/CMakeLists.txt

Lines changed: 7 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
set(PLUGIN_NAME HdcpProfile)
1919
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})
20-
set(PLUGIN_IMPLEMENTATION ${MODULE_NAME}Implementation)
2120

2221
set(PLUGIN_HDCPPROFILE_AUTOSTART "false" CACHE STRING "Automatically start HdcpProfile plugin")
2322
set(PLUGIN_HDCPPROFILE_STARTUPORDER "" CACHE STRING "To configure startup order of HdcpProfile plugin")
@@ -33,42 +32,20 @@ add_library(${MODULE_NAME} SHARED
3332
HdcpProfile.cpp
3433
Module.cpp)
3534

36-
3735
set_target_properties(${MODULE_NAME} PROPERTIES
3836
CXX_STANDARD 11
3937
CXX_STANDARD_REQUIRED YES)
4038

4139
target_compile_definitions(${MODULE_NAME} PRIVATE MODULE_NAME=Plugin_${PLUGIN_NAME})
4240

43-
44-
include_directories(
45-
../helpers)
46-
47-
target_link_libraries(${MODULE_NAME} PRIVATE ${NAMESPACE}Plugins::${NAMESPACE}Plugins)
48-
49-
install(TARGETS ${MODULE_NAME}
50-
DESTINATION lib/${STORAGE_DIRECTORY}/plugins)
51-
52-
add_library(${PLUGIN_IMPLEMENTATION} SHARED
53-
HdcpProfileImplementation.cpp
54-
Module.cpp)
55-
target_link_libraries(${PLUGIN_IMPLEMENTATION}
56-
PRIVATE
57-
${NAMESPACE}Plugins::${NAMESPACE}Plugins)
58-
set_target_properties(${PLUGIN_IMPLEMENTATION} PROPERTIES
59-
CXX_STANDARD 11
60-
CXX_STANDARD_REQUIRED YES)
61-
62-
6341
if (USE_THUNDER_R4)
64-
target_link_libraries(${PLUGIN_IMPLEMENTATION} PRIVATE ${NAMESPACE}COM::${NAMESPACE}COM)
42+
target_link_libraries(${MODULE_NAME} PRIVATE ${NAMESPACE}COM::${NAMESPACE}COM)
6543
else ()
66-
target_link_libraries(${PLUGIN_IMPLEMENTATION} PRIVATE ${NAMESPACE}Protocols::${NAMESPACE}Protocols)
44+
target_link_libraries(${MODULE_NAME} PRIVATE ${NAMESPACE}Protocols::${NAMESPACE}Protocols)
6745
endif (USE_THUNDER_R4)
6846

6947
find_package(DS)
7048
find_package(IARMBus)
71-
find_package(CEC)
7249

7350
if (RDK_SERVICE_L2_TEST)
7451
message ("L2 test Enabled")
@@ -81,17 +58,16 @@ if (RDK_SERVICE_L2_TEST)
8158
endif (TESTMOCKLIB_LIBRARIES)
8259
endif()
8360

84-
85-
target_include_directories(${PLUGIN_IMPLEMENTATION} PRIVATE ${IARMBUS_INCLUDE_DIRS})
86-
target_include_directories(${PLUGIN_IMPLEMENTATION} PRIVATE ${DS_INCLUDE_DIRS})
87-
target_include_directories(${PLUGIN_IMPLEMENTATION} PRIVATE ../helpers)
61+
target_include_directories(${MODULE_NAME} PRIVATE ${IARMBUS_INCLUDE_DIRS})
62+
target_include_directories(${MODULE_NAME} PRIVATE ${DS_INCLUDE_DIRS})
63+
target_include_directories(${MODULE_NAME} PRIVATE ../helpers)
8864

8965

9066
set_source_files_properties(HdcpProfile.cpp PROPERTIES COMPILE_FLAGS "-fexceptions")
9167

92-
target_link_libraries(${PLUGIN_IMPLEMENTATION} PUBLIC ${NAMESPACE}Plugins::${NAMESPACE}Plugins ${IARMBUS_LIBRARIES} ${DS_LIBRARIES})
68+
target_link_libraries(${MODULE_NAME} PUBLIC ${NAMESPACE}Plugins::${NAMESPACE}Plugins ${IARMBUS_LIBRARIES} ${DS_LIBRARIES} )
9369

94-
install(TARGETS ${PLUGIN_IMPLEMENTATION}
70+
install(TARGETS ${MODULE_NAME}
9571
DESTINATION lib/${STORAGE_DIRECTORY}/plugins)
9672

9773
write_config(${PLUGIN_NAME})

HdcpProfile/HdcpProfile.conf.in

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,3 @@ precondition = ["Platform"]
22
callsign = "org.rdk.HdcpProfile"
33
autostart = "@PLUGIN_HDCPPROFILE_AUTOSTART@"
44
startuporder = "@PLUGIN_HDCPPROFILE_STARTUPORDER@"
5-
6-
configuration = JSON()
7-
rootobject = JSON()
8-
9-
rootobject.add("mode", "@PLUGIN_HDCPPROFILE_MODE@")
10-
rootobject.add("locator", "lib@[email protected]")
11-
12-
configuration.add("root", rootobject)

HdcpProfile/HdcpProfile.config

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,3 @@ set (callsign "org.rdk.HdcpProfile")
55
if(PLUGIN_HDCPPROFILE_STARTUPORDER)
66
set (startuporder ${PLUGIN_HDCPPROFILE_STARTUPORDER})
77
endif()
8-
9-
map()
10-
key(root)
11-
map()
12-
kv(mode ${PLUGIN_HDCPPROFILE_MODE})
13-
kv(locator lib${PLUGIN_IMPLEMENTATION}.so)
14-
end()
15-
end()
16-
ans(configuration)

0 commit comments

Comments
 (0)