Skip to content

Commit b51aa5d

Browse files
authored
Merge pull request rdkcentral#5947 from santoshcomcast/main
RDK-51777: Remove irmgr reference from rdkservices and rdkservices-cpc
2 parents 466d41f + 9d0af9b commit b51aa5d

23 files changed

+45
-30
lines changed

DisplaySettings/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.
1616

1717
* For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README.
1818

19+
## [2.0.3] - 2024-12-29
20+
### Removed
21+
- Removed irmgr references from rdkservices.
22+
1923
## [2.0.2] - 2024-12-03
2024
### Fixed
2125
- Corrected the documentation for several functions to make them more accurate for their actual use.

DisplaySettings/DisplaySettings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ using namespace std;
8585

8686
#define API_VERSION_NUMBER_MAJOR 2
8787
#define API_VERSION_NUMBER_MINOR 0
88-
#define API_VERSION_NUMBER_PATCH 2
88+
#define API_VERSION_NUMBER_PATCH 3
8989

9090
static bool isCecEnabled = false;
9191
static bool isResCacheUpdated = false;

DisplaySettings/DisplaySettings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
#include "dsTypes.h"
2626
#include "tptimer.h"
2727
#include "libIARM.h"
28-
#include "irMgr.h"
2928
#include "pwrMgr.h"
3029
#include "rfcapi.h"
3130
#include <interfaces/ISystemMode.h>
3231
#include <interfaces/IDeviceOptimizeStateActivator.h>
3332
#include <iostream>
3433
#include <fstream>
3534

35+
3636
namespace WPEFramework {
3737

3838
namespace Plugin {

DisplaySettings/cmake/FindIARMBus.cmake

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ find_package(PkgConfig)
2727

2828
find_library(IARMBUS_LIBRARIES NAMES IARMBus)
2929
find_path(IARMBUS_INCLUDE_DIRS NAMES libIARM.h PATH_SUFFIXES rdk/iarmbus)
30-
find_path(IARMIR_INCLUDE_DIRS NAMES irMgr.h PATH_SUFFIXES rdk/iarmmgrs/ir)
3130

3231
set(IARMBUS_LIBRARIES ${IARMBUS_LIBRARIES} CACHE PATH "Path to IARMBus library")
33-
set(IARMBUS_INCLUDE_DIRS ${IARMBUS_INCLUDE_DIRS} ${IARMIR_INCLUDE_DIRS})
34-
set(IARMBUS_INCLUDE_DIRS ${IARMBUS_INCLUDE_DIRS} ${IARMIR_INCLUDE_DIRS} CACHE PATH "Path to IARMBus include")
32+
set(IARMBUS_INCLUDE_DIRS ${IARMBUS_INCLUDE_DIRS})
33+
set(IARMBUS_INCLUDE_DIRS ${IARMBUS_INCLUDE_DIRS} CACHE PATH "Path to IARMBus include")
3534

3635

3736
include(FindPackageHandleStandardArgs)

FrameRate/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.
1616

1717
* For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README.
1818

19+
## [1.0.7] - 2024-12-18
20+
### Removed
21+
- remove irmgr reference from rdkservices.
22+
1923
## [1.0.6] - 2024-05-25
2024
### Added
2125
- Make plugin autostart configurable from recipe

FrameRate/FrameRate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
#define API_VERSION_NUMBER_MAJOR 1
5353
#define API_VERSION_NUMBER_MINOR 0
54-
#define API_VERSION_NUMBER_PATCH 6
54+
#define API_VERSION_NUMBER_PATCH 7
5555

5656
namespace WPEFramework
5757
{

FrameRate/cmake/FindIARMBus.cmake

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,12 @@ find_package(PkgConfig)
2727

2828
find_library(IARMBUS_LIBRARIES NAMES IARMBus)
2929
find_path(IARMBUS_INCLUDE_DIRS NAMES libIARM.h PATH_SUFFIXES rdk/iarmbus)
30-
find_path(IARMIR_INCLUDE_DIRS NAMES irMgr.h PATH_SUFFIXES rdk/iarmmgrs/ir)
3130
find_path(IARMRECEIVER_INCLUDE_DIRS NAMES receiverMgr.h PATH_SUFFIXES rdk/iarmmgrs/receiver)
3231
find_path(IARMPWR_INCLUDE_DIRS NAMES pwrMgr.h PATH_SUFFIXES rdk/iarmmgrs-hal)
3332

3433
set(IARMBUS_LIBRARIES ${IARMBUS_LIBRARIES} CACHE PATH "Path to IARMBus library")
35-
set(IARMBUS_INCLUDE_DIRS ${IARMBUS_INCLUDE_DIRS} ${IARMIR_INCLUDE_DIRS} ${IARMRECEIVER_INCLUDE_DIRS} ${IARMPWR_INCLUDE_DIRS})
36-
set(IARMBUS_INCLUDE_DIRS ${IARMBUS_INCLUDE_DIRS} ${IARMIR_INCLUDE_DIRS} ${IARMRECEIVER_INCLUDE_DIRS} ${IARMPWR_INCLUDE_DIRS} CACHE PATH "Path to IARMBus include")
34+
set(IARMBUS_INCLUDE_DIRS ${IARMBUS_INCLUDE_DIRS} ${IARMRECEIVER_INCLUDE_DIRS} ${IARMPWR_INCLUDE_DIRS})
35+
set(IARMBUS_INCLUDE_DIRS ${IARMBUS_INCLUDE_DIRS} ${IARMRECEIVER_INCLUDE_DIRS} ${IARMPWR_INCLUDE_DIRS} CACHE PATH "Path to IARMBus include")
3736

3837
include(FindPackageHandleStandardArgs)
3938
FIND_PACKAGE_HANDLE_STANDARD_ARGS(IARMBUS DEFAULT_MSG IARMBUS_INCLUDE_DIRS IARMBUS_LIBRARIES)

MaintenanceManager/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.
1616

1717
* For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README.
1818

19+
## [1.0.39] - 2024-12-18
20+
### Removed
21+
- remove irmgr reference from rdkservices.
22+
1923
## [1.0.38] - 2024-11-26
2024
### Added
2125
- MaintenanceManager is stuck at MAINTENANCE_STARTED in non-WAI case, when SUPPRESSED_MAINTENANCE is enabled with no Skip Firmware

MaintenanceManager/MaintenanceManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ using namespace std;
6868

6969
#define API_VERSION_NUMBER_MAJOR 1
7070
#define API_VERSION_NUMBER_MINOR 0
71-
#define API_VERSION_NUMBER_PATCH 36
71+
#define API_VERSION_NUMBER_PATCH 39
7272
#define SERVER_DETAILS "127.0.0.1:9998"
7373

7474

MaintenanceManager/MaintenanceManager.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
#include "tracing/Logging.h"
2929
#if defined(USE_IARMBUS) || defined(USE_IARM_BUS)
3030
#include "libIARM.h"
31-
#include "irMgr.h"
3231
#include "pwrMgr.h"
3332
#include "maintenanceMGR.h" /* IARM INTERFACE HELPER */
3433
#endif /* USE_IARMBUS || USE_IARM_BUS */

0 commit comments

Comments
 (0)