summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/shell.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-12-05 13:09:11 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-12-05 13:09:11 +0100
commita2097c56ad29c182f97fa9d4d5268b8e6086ab7a (patch)
tree1b472ba8cc2763807b7b5329805c51134ca9c250 /cpukit/libmisc/shell/shell.c
parentnfsclient: Avoid __FILE__ and __LINE__ (diff)
downloadrtems-a2097c56ad29c182f97fa9d4d5268b8e6086ab7a.tar.bz2
shell: Avoid __DATE__ and adjust welcome message
The use of __DATE__ prevents reproducible builds.
Diffstat (limited to 'cpukit/libmisc/shell/shell.c')
-rw-r--r--cpukit/libmisc/shell/shell.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpukit/libmisc/shell/shell.c b/cpukit/libmisc/shell/shell.c
index 14d4b5f674..e7e57933a0 100644
--- a/cpukit/libmisc/shell/shell.c
+++ b/cpukit/libmisc/shell/shell.c
@@ -854,8 +854,7 @@ bool rtems_shell_main_loop(
if (!input_file) {
rtems_shell_cat_file(stdout,"/etc/motd");
fprintf(stdout, "\n"
- "RTEMS SHELL (Ver.1.0-FRC):%s. " \
- __DATE__". 'help' to list commands.\n",
+ "RTEMS Shell on %s. Use 'help' to list commands.\n",
shell_env->devname);
}