Skip to content

Commit acf1705

Browse files
committed
Merge branch 'rdkcentral:develop' into bpi_extender_6_6_kernel
2 parents 9ce6df4 + 90f88d5 commit acf1705

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

conf/distro/include/rdk-bpi-ap-extender.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,3 @@ DISTRO_FEATURES_append = " generic_mlo"
3434

3535
# Kernel 6.6
3636
#DISTRO_FEATURES_append = " kernel6-6"
37-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
include ccsp_common_bananapi.inc
2+
SRC_URI:remove = "file://filogic-factoryReset.patch"

meta-rdk-mtk-bpir4/recipes-ccsp/ccsp/ccsp-psm/bbhm_def_cfg_banana.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,9 @@
214214
<Record name="eRT.com.cisco.spvtg.ccsp.tr181pa.Device.WiFi.Radio.2.FactoryResetSSID" type="astr">0</Record>
215215
<Record name="eRT.com.cisco.spvtg.ccsp.tr181pa.Device.WiFi.SsidUpgradeRequired" type="astr">1</Record>
216216

217+
<!-- Ethernet interfaces of BananaPi Pi -->
218+
<Record name="dmsb.ethagent.ethifcount" type="astr">4</Record>
219+
217220
<Record name="dmsb.BridgeNamePrefix" type="astr">brlan</Record>
218221
<Record name="dmsb.bridgeVlanRange" type="astr">164...512</Record>
219222

meta-rdk-mtk-bpir4/recipes-ccsp/hal/files/Ethernet-Lan-changes.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Index: ethsw/rdkb_hal/src/ethsw/ccsp_hal_ethsw.c
4747
memset(&ifr, 0, sizeof(ifr));
4848
- snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "%s", "eth1");
4949
+ if (PortId == 1)
50-
+ snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "erouter0");
50+
+ snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "%s", "erouter0");
5151
+ else
52-
+ snprintf(ifr.ifr_name, sizeof(ifr.ifr_name),"lan",(PortId-1));
52+
+ snprintf(ifr.ifr_name, sizeof(ifr.ifr_name),"lan%d",(PortId-1));
5353

5454
if (ioctl(sockfd, SIOCGIFFLAGS, &ifr) < 0)
5555
{

meta-rdk-mtk-bpir4/recipes-core/images/rdk-generic-ap-extender-image.bbappend

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ IMAGE_INSTALL += " \
5959
strongswan \
6060
libpcap \
6161
tcpdump \
62-
${@bb.utils.contains('DISTRO_FEATURES','kernel6-6','linux-firmware-mt7988 linux-firmware-airoha fitblk','airoha-eth-firmware',d)} \
6362
${@bb.utils.contains('DISTRO_FEATURES','kernel6-6','','perf',d)} \
6463
${@bb.utils.contains('DISTRO_FEATURES','mt76','packagegroup-filogic-mt76','',d)} \
6564
${@bb.utils.contains('DISTRO_FEATURES','em_extender','packagegroup-ap-extender','',d)} \

0 commit comments

Comments
 (0)