Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/pr-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: PR Format Check

on:
pull_request_target:
types: [opened, edited, synchronize, reopened]

permissions:
contents: read
issues: write
pull-requests: write

concurrency:
group: pr-format-check-${{ github.event.pull_request.number }}
cancel-in-progress: true

jobs:
lint:
uses: rdkcentral/build_tools_workflows/.github/workflows/pr-lint.yml@develop
Comment on lines +16 to +18
Comment on lines +17 to +18
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d

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

#### [2.6.0](https://github.com/rdkcentral/open-virtual-switch-agent/compare/2.5.0...2.6.0)

- RDKB-65709: In coperate XER2 Platform support in OvsAgent [`#34`](https://github.com/rdkcentral/open-virtual-switch-agent/pull/34)
- RDKB-66032 : Add PR Format Check workflow [`#33`](https://github.com/rdkcentral/open-virtual-switch-agent/pull/33)
Comment on lines +7 to +10
- Merge tag '2.5.0' into develop [`602e422`](https://github.com/rdkcentral/open-virtual-switch-agent/commit/602e4220732b53d90eed51cc989da4f136c492f8)

#### [2.5.0](https://github.com/rdkcentral/open-virtual-switch-agent/compare/2.4.0...2.5.0)

> 15 June 2026

- RDKB-64520: Add support for pseudo bridge mode [`#29`](https://github.com/rdkcentral/open-virtual-switch-agent/pull/29)
- Add changelog for release 2.5.0 [`58d990b`](https://github.com/rdkcentral/open-virtual-switch-agent/commit/58d990b7118850d8f5ba572cc776fa7d3d9aaa09)
- Merge tag '2.4.0' into develop [`98f9c46`](https://github.com/rdkcentral/open-virtual-switch-agent/commit/98f9c46fe04cf1313121bb5b80ee6875bb62a529)

#### [2.4.0](https://github.com/rdkcentral/open-virtual-switch-agent/compare/2.3.0...2.4.0)
Expand Down
8 changes: 7 additions & 1 deletion source/OvsAction/ovs_action.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ static bool is_brcm_wifi_model(int model)
case OVS_SCXF11BFL_MODEL:
case OVS_SR213_MODEL:
case OVS_SCER11BEL_MODEL:
case OVS_WNXL11BWL_MODEL:
case OVS_WNXL11BWL_MODEL:
case OVS_AYER21BEL_MODEL:
return true;
default:
return false;
Expand Down Expand Up @@ -244,6 +245,11 @@ static bool SetModelNum(const char * model_num, ovs_action_config * config)
config->modelNum = OVS_SCXF11BFL_MODEL;
rtn = true;
}
else if (strcmp(model_num, "AYER21BEL") == 0)
{
config->modelNum = OVS_AYER21BEL_MODEL;
rtn = true;
}
else
{
config->modelNum = OVS_UNKNOWN_MODEL;
Expand Down
3 changes: 2 additions & 1 deletion source/include/OvsDataTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ typedef enum ovs_device_model
OVS_CGA4332COM_MODEL, /** Technicolor CBR2. vinoth */
OVS_SCER11BEL_MODEL, /** Sercomm XER10 */
OVS_RPI_MODEL, /** RPI Reference Platform */
OVS_SCXF11BFL_MODEL /** Sercomm XF10 */
OVS_SCXF11BFL_MODEL, /** Sercomm XF10 */
OVS_AYER21BEL_MODEL /** Arcadyan XER2 */
} OVS_DEVICE_MODEL;

#endif /* OVS_DATA_TYPES_H_ */
6 changes: 4 additions & 2 deletions source/test/OvsAgent/OvsActionTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,8 @@ TEST_P(ModelNumBasedTestFixture, ovs_action_add_http_llan0_port_in_bridge_mode)

INSTANTIATE_TEST_SUITE_P(PlatformSpecificOvsActionTests, ModelNumBasedTestFixture,
::testing::Values((char*)"CGM4140COM", (char*)"TG3482G",
(char*)"CGM4331COM", (char*)"CGM4981COM", (char*)"CGM601TCOM", (char*)"CWA438TCOM", (char*)"SG417DBCT"));
(char*)"CGM4331COM", (char*)"CGM4981COM", (char*)"CGM601TCOM", (char*)"CWA438TCOM", (char*)"SG417DBCT",
(char*)"AYER21BEL"));
Comment on lines 690 to +693

// RDKB-35124 and RDKB-42700
// parent - br1
Expand Down Expand Up @@ -1230,7 +1231,8 @@ TEST_P(ModelNumBasedTestFixture, ovs_action_add_brcm_wifi_flows_test)
(strcmp(expectedModel, "CGM601TCOM") == 0) ||
(strcmp(expectedModel, "CWA438TCOM") == 0) ||
(strcmp(expectedModel, "SG417DBCT") == 0) ||
(strcmp(expectedModel, "CGM4981COM") == 0))
(strcmp(expectedModel, "CGM4981COM") == 0) ||
(strcmp(expectedModel, "AYER21BEL") == 0))
{
for (int idx = 0; idx < sizeof(eth_types)/sizeof(eth_types[0]); idx++)
{
Expand Down
Loading