diff options
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 |
commit | dd1ccddf1b33972966760857092eb9b659b7a40a (patch) | |
tree | 311c032dd6a55cc3923e744d8e888d9edd9ede44 /shell/hush.c | |
parent | 21e68703ce35805ff8b9590c22a400de05155ac2 (diff) |
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/hush.c')
-rw-r--r-- | shell/hush.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c index 8b6cbe7c9..387b6cd7a 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -104,7 +104,7 @@ #include "standalone.h" #define hush_main main #undef CONFIG_FEATURE_SH_FANCY_PROMPT -#define BB_BANNER +#define BB_BANNER "" #endif #define SPECIAL_VAR_SYMBOL 03 #define FLAG_EXIT_FROM_LOOP 1 @@ -2812,7 +2812,8 @@ int hush_main(int argc, char **argv) if (interactive) { /* Looks like they want an interactive shell */ #ifndef CONFIG_FEATURE_SH_EXTRA_QUIET - printf( "\n\n" BB_BANNER " hush - the humble shell v0.01 (testing)\n"); + printf( "\n\n%s hush - the humble shell v0.01 (testing)\n", + BB_BANNER); printf( "Enter 'help' for a list of built-in commands.\n\n"); #endif setup_job_control(); |