busybox: remove telnet server support

This commit is contained in:
Stephan Raue 2009-09-20 05:29:51 +02:00
parent 205b35cc08
commit a37e8dd3c1
3 changed files with 3 additions and 28 deletions

View File

@ -1,11 +0,0 @@
################################################################################
# Telnet Server environment variables.
#
# This file contains non-OpenELEC evironment variables as well as OpenELEC
# evironment variables that are not user defined.
################################################################################
#-------------------------------------------------------------------------------
# Start Telnet Server on boot.
#-------------------------------------------------------------------------------
OE_START_TELNETSERVER=yes

View File

@ -1,7 +1,7 @@
#
# Automatically generated make config: don't edit
# Busybox version: 1.15.1
# Sun Sep 20 04:53:32 2009
# Sun Sep 20 05:27:58 2009
#
CONFIG_HAVE_DOT_CONFIG=y
@ -723,8 +723,8 @@ CONFIG_ROUTE=y
# CONFIG_TELNET is not set
# CONFIG_FEATURE_TELNET_TTYPE is not set
# CONFIG_FEATURE_TELNET_AUTOLOGIN is not set
CONFIG_TELNETD=y
CONFIG_FEATURE_TELNETD_STANDALONE=y
# CONFIG_TELNETD is not set
# CONFIG_FEATURE_TELNETD_STANDALONE is not set
# CONFIG_TFTP is not set
# CONFIG_TFTPD is not set
# CONFIG_FEATURE_TFTP_GET is not set

View File

@ -1,14 +0,0 @@
#!/bin/sh
#
# start telnet daemon
#
# runlevels: openelec, text, debug
. /etc/sysconfig
if test "$OE_START_TELNETSERVER" = "yes" -a -f /etc/issue; then
progress "Starting telnet daemon"
telnetd -f /etc/issue >/dev/null 2>&1 &
fi
exit 0