shell: Avoid __DATE__ and adjust welcome message

The use of __DATE__ prevents reproducible builds.
This commit is contained in:
Sebastian Huber
2014-12-05 13:09:11 +01:00
parent b657ea4d33
commit a2097c56ad

View File

@@ -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);
}