From 3fa6c570486cb3b8be07155771162fd8082d4112 Mon Sep 17 00:00:00 2001 From: mahanteshchitt Date: Fri, 16 Jan 2026 17:15:51 +0530 Subject: [PATCH] RDKBACCL-1083: default ssh support in arm system ready image Reason For Change: No default ssh support in arm system ready image. Test Procedure: Able to take ssh to ARM system ready image. Risks: None Signed-off-by: mahanteshchitt --- source/scripts/init/service.d/service_sshd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/scripts/init/service.d/service_sshd.sh b/source/scripts/init/service.d/service_sshd.sh index a2ba75cc..4fc6c182 100755 --- a/source/scripts/init/service.d/service_sshd.sh +++ b/source/scripts/init/service.d/service_sshd.sh @@ -222,7 +222,7 @@ do_start() { fi else CM_IP="" - if ([ "$BOX_TYPE" = "rpi" ] || [ "$BOX_TYPE" = "bpi" ]) ;then + if ([ "$BOX_TYPE" = "rpi" ] || [ "$BOX_TYPE" = "bpi" ] || [ "$BOX_TYPE" = "genericarm" ]) ;then #for Raspberry-pi, use the ipv4 address as default for ssh CM_IP=`ip -4 addr show dev $CMINTERFACE scope global | awk '/inet/{print $2}' | cut -d '/' -f1` else