From 9c47691a4c21a4b05db5264c04043e661922f3f5 Mon Sep 17 00:00:00 2001 From: KTirumalaSrihari <102281309+KTirumalaSrihari@users.noreply.github.com> Date: Tue, 3 Feb 2026 12:02:27 +0530 Subject: [PATCH 1/4] Update start_ssh.sh Remove condition to check if USE_DYNAMICKEYING is enabled or not. --- lib/rdk/start_ssh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rdk/start_ssh.sh b/lib/rdk/start_ssh.sh index b83f90cd..4b4513a8 100755 --- a/lib/rdk/start_ssh.sh +++ b/lib/rdk/start_ssh.sh @@ -75,7 +75,7 @@ checkForInterface() } DEVICETYPE=$(tr181 -d Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Identity.DeviceType 2>&1 > /dev/null) -if [ "$DEVICETYPE" = "TEST" ] && [ "$USE_DYNAMICKEYING" = "TRUE" ]; then +if [ "$DEVICETYPE" = "TEST" ]; then USE_DEVKEYS="-f authorized_keys_dev" echo " dropbear using dev authorization keys" else From c0ee1223981befa96c3020bb978e56baa8a0ff82 Mon Sep 17 00:00:00 2001 From: KTirumalaSrihari <102281309+KTirumalaSrihari@users.noreply.github.com> Date: Mon, 23 Feb 2026 20:20:30 +0530 Subject: [PATCH 2/4] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- lib/rdk/start_ssh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rdk/start_ssh.sh b/lib/rdk/start_ssh.sh index 4b4513a8..89c98c66 100755 --- a/lib/rdk/start_ssh.sh +++ b/lib/rdk/start_ssh.sh @@ -74,7 +74,7 @@ checkForInterface() fi } -DEVICETYPE=$(tr181 -d Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Identity.DeviceType 2>&1 > /dev/null) +DEVICETYPE=$(tr181 -g Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Identity.DeviceType 2>/dev/null) if [ "$DEVICETYPE" = "TEST" ]; then USE_DEVKEYS="-f authorized_keys_dev" echo " dropbear using dev authorization keys" From a77eb00f103baceb13570345d94eb38cf8be36cd Mon Sep 17 00:00:00 2001 From: KTirumalaSrihari <102281309+KTirumalaSrihari@users.noreply.github.com> Date: Tue, 24 Feb 2026 12:30:47 +0530 Subject: [PATCH 3/4] Update start_ssh.sh --- lib/rdk/start_ssh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rdk/start_ssh.sh b/lib/rdk/start_ssh.sh index 89c98c66..01ec3f56 100755 --- a/lib/rdk/start_ssh.sh +++ b/lib/rdk/start_ssh.sh @@ -74,7 +74,7 @@ checkForInterface() fi } -DEVICETYPE=$(tr181 -g Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Identity.DeviceType 2>/dev/null) +DEVICETYPE=$(tr181 -g Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Identity.DeviceType 2>&1 >/dev/null) if [ "$DEVICETYPE" = "TEST" ]; then USE_DEVKEYS="-f authorized_keys_dev" echo " dropbear using dev authorization keys" From d49f037780331c2d343ce0b30ffa82322709ed3d Mon Sep 17 00:00:00 2001 From: KTirumalaSrihari <102281309+KTirumalaSrihari@users.noreply.github.com> Date: Tue, 24 Feb 2026 14:40:11 +0530 Subject: [PATCH 4/4] Update start_ssh.sh --- lib/rdk/start_ssh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rdk/start_ssh.sh b/lib/rdk/start_ssh.sh index 01ec3f56..4b4513a8 100755 --- a/lib/rdk/start_ssh.sh +++ b/lib/rdk/start_ssh.sh @@ -74,7 +74,7 @@ checkForInterface() fi } -DEVICETYPE=$(tr181 -g Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Identity.DeviceType 2>&1 >/dev/null) +DEVICETYPE=$(tr181 -d Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Identity.DeviceType 2>&1 > /dev/null) if [ "$DEVICETYPE" = "TEST" ]; then USE_DEVKEYS="-f authorized_keys_dev" echo " dropbear using dev authorization keys"