[Feature][YUKUAI_patch]add 18.02 code

Only Configure: No
Affected branch: master
Affected module: unknow
Is it affected on both ZXIC and MTK: only ZXIC
Self-test: Yes
Doc Update: No

Change-Id: I7f71153004f10fc0ea5adfa083866aaeeb1053ac
diff --git a/rootfs/sbin/start_telnetd.sh b/rootfs/sbin/start_telnetd.sh
new file mode 100755
index 0000000..9ed0fc3
--- /dev/null
+++ b/rootfs/sbin/start_telnetd.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+flag=`nv get telnetd_enable`
+
+if [ "$flag" == "y" ]; then
+    echo "Starting telnetd......!"
+    /usr/sbin/telnetd -p 4719 & 
+fi
+
+