blob: 0d95f570817b97e94f4f57c6210f66a84c9b30ae [file] [log] [blame]
developer15a43312022-04-12 11:23:23 +08001From 6d1fbccb0f1bf9057055f3802d19d6d2d549a213 Mon Sep 17 00:00:00 2001
2From: "rajakumaran.a" <rajakumaran.a@lnttechservices.com>
3Date: Mon, 22 Jun 2020 09:08:27 +0000
4Subject: [PATCH] Work around for brlan0 issue
5
6Signed-off-by: rajakumaran.a <rajakumaran.a@lnttechservices.com>
7---
8 source/scripts/init/service.d/lan_handler.sh | 5 +++++
9 1 file changed, 5 insertions(+)
10
11diff --git a/source/scripts/init/service.d/lan_handler.sh b/source/scripts/init/service.d/lan_handler.sh
12index 73f274f7..e84090cd 100755
13--- a/source/scripts/init/service.d/lan_handler.sh
14+++ b/source/scripts/init/service.d/lan_handler.sh
15@@ -369,6 +369,11 @@ case "$1" in
16 echo_t "Calling lan-start"
17 eval '$THIS lan-start NULL'
18 fi
developercc441a02022-05-09 19:04:26 +080019+ if [ "$BOX_TYPE" = "filogic" ]; then
developer15a43312022-04-12 11:23:23 +080020+ sleep 2
21+ echo_t "Calling lan-start"
22+ eval '$THIS lan-start NULL'
23+ fi
24 elif [ "$BOX_TYPE" = "TCCBR" ]; then
25 if [ "$INST" = "" ]; then
26 echo "*****SET THE PRIMARY LAN ******" > /dev/null
27--
282.17.1
29