From f79892e399dbe9ab08042d86cc1b9eef3dccbfc3 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Fri, 11 Mar 2011 02:31:15 +0100 Subject: [PATCH] busybox: use /bin/sh anstead /bin/bash Signed-off-by: Stephan Raue --- packages/sysutils/busybox/init.d/99_shell | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/busybox/init.d/99_shell b/packages/sysutils/busybox/init.d/99_shell index 0d73433493..155d8ce538 100644 --- a/packages/sysutils/busybox/init.d/99_shell +++ b/packages/sysutils/busybox/init.d/99_shell @@ -31,5 +31,5 @@ echo "## ...... switch with ctrl-alt-f$TTY ...... ##" echo "###########################################" while true; do - exec /sbin/getty -n -l /bin/bash 38400 tty$TTY + exec /sbin/getty -n -l /bin/sh 38400 tty$TTY done