aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2006-02-16 15:40:24 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2006-02-16 15:40:24 +0000
commitdd1ccddf1b33972966760857092eb9b659b7a40a (patch)
tree311c032dd6a55cc3923e744d8e888d9edd9ede44 /shell/ash.c
parent21e68703ce35805ff8b9590c22a400de05155ac2 (diff)
downloadbusybox-w32-dd1ccddf1b33972966760857092eb9b659b7a40a.tar.gz
busybox-w32-dd1ccddf1b33972966760857092eb9b659b7a40a.tar.bz2
busybox-w32-dd1ccddf1b33972966760857092eb9b659b7a40a.zip
moved BB_BANNER to applets/version.c file: make kernel like version,
removed depend loop: busybox.h depend with BB_BT, and all sources depend with busybox.h
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index e9e6def22..9eb395fd9 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -11833,8 +11833,9 @@ setinteractive(int on)
11833 11833
11834 if(!do_banner) { 11834 if(!do_banner) {
11835 out1fmt( 11835 out1fmt(
11836 "\n\n" BB_BANNER " Built-in shell (ash)\n" 11836 "\n\n%s Built-in shell (ash)\n"
11837 "Enter 'help' for a list of built-in commands.\n\n"); 11837 "Enter 'help' for a list of built-in commands.\n\n",
11838 BB_BANNER);
11838 do_banner++; 11839 do_banner++;
11839 } 11840 }
11840 } 11841 }