summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2022-04-01 13:18:49 -0500
committerJoel Sherrill <joel@rtems.org>2022-04-05 13:13:31 -0500
commit5f8c41c389a32b3c8d0503e550c6388f62f2927f (patch)
tree9f975164ebb0540675ff5b03dcd8db2fe256f8b9
parentbsp/stm32h7: Convert to UNIX line endings (diff)
downloadrtems-5f8c41c389a32b3c8d0503e550c6388f62f2927f.tar.bz2
Update email address of Fernando Ruiz Casas to <fruizcasas@gmail.com>
This was requested to be executed prior to relicensing to BSD-2.
-rw-r--r--cpukit/include/rtems/pty.h11
-rw-r--r--cpukit/include/rtems/shell.h11
-rw-r--r--cpukit/include/rtems/telnetd.h12
-rw-r--r--cpukit/libcsupport/src/chroot.c10
-rw-r--r--cpukit/libcsupport/src/getgrent.c2
-rw-r--r--cpukit/libcsupport/src/getgrnam.c2
-rw-r--r--cpukit/libcsupport/src/getpwent.c2
-rw-r--r--cpukit/libcsupport/src/privateenv.c2
-rw-r--r--cpukit/libcsupport/src/pwdgrp.c2
-rw-r--r--cpukit/libmisc/shell/cat_file.c12
-rw-r--r--cpukit/libmisc/shell/cmds.c12
-rw-r--r--cpukit/libmisc/shell/login_check.c1
-rw-r--r--cpukit/libmisc/shell/main_alias.c12
-rw-r--r--cpukit/libmisc/shell/main_blksync.c12
-rw-r--r--cpukit/libmisc/shell/main_cat.c12
-rw-r--r--cpukit/libmisc/shell/main_cd.c12
-rw-r--r--cpukit/libmisc/shell/main_chdir.c12
-rw-r--r--cpukit/libmisc/shell/main_chmod.c12
-rw-r--r--cpukit/libmisc/shell/main_chroot.c12
-rw-r--r--cpukit/libmisc/shell/main_date.c15
-rw-r--r--cpukit/libmisc/shell/main_dir.c12
-rw-r--r--cpukit/libmisc/shell/main_exit.c12
-rw-r--r--cpukit/libmisc/shell/main_id.c12
-rw-r--r--cpukit/libmisc/shell/main_logoff.c12
-rw-r--r--cpukit/libmisc/shell/main_mdump.c12
-rw-r--r--cpukit/libmisc/shell/main_medit.c12
-rw-r--r--cpukit/libmisc/shell/main_mfill.c12
-rw-r--r--cpukit/libmisc/shell/main_mkdir.c12
-rw-r--r--cpukit/libmisc/shell/main_mmove.c12
-rw-r--r--cpukit/libmisc/shell/main_mount.c12
-rw-r--r--cpukit/libmisc/shell/main_mount_nfs.c12
-rw-r--r--cpukit/libmisc/shell/main_pwd.c12
-rw-r--r--cpukit/libmisc/shell/main_rmdir.c12
-rw-r--r--cpukit/libmisc/shell/main_tty.c12
-rw-r--r--cpukit/libmisc/shell/main_umask.c12
-rw-r--r--cpukit/libmisc/shell/main_unmount.c12
-rw-r--r--cpukit/libmisc/shell/main_whoami.c12
-rw-r--r--cpukit/libmisc/shell/shell.c14
-rw-r--r--cpukit/libmisc/shell/shell_cmdset.c13
-rw-r--r--cpukit/libmisc/shell/write_file.c14
-rw-r--r--cpukit/telnetd/README11
-rw-r--r--cpukit/telnetd/pty.c11
-rw-r--r--cpukit/telnetd/telnetd.c17
43 files changed, 260 insertions, 202 deletions
diff --git a/cpukit/include/rtems/pty.h b/cpukit/include/rtems/pty.h
index 94b66d63c4..46d07602b4 100644
--- a/cpukit/include/rtems/pty.h
+++ b/cpukit/include/rtems/pty.h
@@ -1,8 +1,11 @@
+/**
+ * @file
+ *
+ * @brief /dev/ptyXX (A first version for pseudo-terminals)
+ */
+
/*
- * /dev/ptyXX (A first version for pseudo-terminals)
- *
- * Author: Fernando RUIZ CASAS (fernando.ruiz@ctv.es)
- * May 2001
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/cpukit/include/rtems/shell.h b/cpukit/include/rtems/shell.h
index d705dcb0a7..58d0c515b3 100644
--- a/cpukit/include/rtems/shell.h
+++ b/cpukit/include/rtems/shell.h
@@ -5,13 +5,12 @@
*/
/*
- * Author:
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
- * WORK: fernando.ruiz@ctv.es
- * HOME: correo@fernando-ruiz.com
- *
- * Thanks at:
- * Chris Johns
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ *
*/
#ifndef __RTEMS_SHELL_H__
diff --git a/cpukit/include/rtems/telnetd.h b/cpukit/include/rtems/telnetd.h
index 325872b633..86ec1f0eb5 100644
--- a/cpukit/include/rtems/telnetd.h
+++ b/cpukit/include/rtems/telnetd.h
@@ -1,8 +1,12 @@
+/**
+ * @file
+ *
+ * @brief Telnet Daemon Interface
+ */
+
/*
- * Original Author: Fernando RUIZ CASAS (fernando.ruiz@ctv.es)
- * May 2001
- * Reworked by Till Straumann and .h overhauled by Joel Sherrill.
- *
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
+ * Reworked by Till Straumann and .h overhauled by Joel Sherrill.
* Copyright (c) 2009 embedded brains GmbH and others.
*
* The license and distribution terms for this file may be
diff --git a/cpukit/libcsupport/src/chroot.c b/cpukit/libcsupport/src/chroot.c
index fc0f3f92ed..ca4c46f5a8 100644
--- a/cpukit/libcsupport/src/chroot.c
+++ b/cpukit/libcsupport/src/chroot.c
@@ -9,13 +9,13 @@
*/
/*
- * Author: fernando.ruiz@ctv.es
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
+ * COPYRIGHT (c) 1989-2008.
+ * On-Line Applications Research Corporation (OAR).
*
- * Modifications to support reference counting in the file system are
- * Copyright (c) 2012 embedded brains GmbH.
+ * Modifications to support reference counting in the file system are
+ * Copyright (c) 2012 embedded brains GmbH.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/cpukit/libcsupport/src/getgrent.c b/cpukit/libcsupport/src/getgrent.c
index e52724edf3..8ba7ac8577 100644
--- a/cpukit/libcsupport/src/getgrent.c
+++ b/cpukit/libcsupport/src/getgrent.c
@@ -8,7 +8,7 @@
/*
* Copyright (c) 1999-2009 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Copyright (c) 1999-2013 Joel Sherrill <joel.sherrill@OARcorp.com>
- * Copyright (c) 2000-2001 Fernando Ruiz Casas <fernando.ruiz@ctv.es>
+ * Copyright (c) 2000-2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
* Copyright (c) 2002 Eric Norum <eric@norum.ca>
* Copyright (c) 2003 Till Straumann <strauman@slac.stanford.edu>
* Copyright (c) 2012 Alex Ivanov <alexivanov97@gmail.com>
diff --git a/cpukit/libcsupport/src/getgrnam.c b/cpukit/libcsupport/src/getgrnam.c
index 6ab7fe5d31..deeea728fe 100644
--- a/cpukit/libcsupport/src/getgrnam.c
+++ b/cpukit/libcsupport/src/getgrnam.c
@@ -8,7 +8,7 @@
/*
* Copyright (c) 1999-2009 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Copyright (c) 1999-2013 Joel Sherrill <joel.sherrill@OARcorp.com>
- * Copyright (c) 2000-2001 Fernando Ruiz Casas <fernando.ruiz@ctv.es>
+ * Copyright (c) 2000-2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
* Copyright (c) 2002 Eric Norum <eric@norum.ca>
* Copyright (c) 2003 Till Straumann <strauman@slac.stanford.edu>
* Copyright (c) 2012 Alex Ivanov <alexivanov97@gmail.com>
diff --git a/cpukit/libcsupport/src/getpwent.c b/cpukit/libcsupport/src/getpwent.c
index ce2b5a59da..3af2660286 100644
--- a/cpukit/libcsupport/src/getpwent.c
+++ b/cpukit/libcsupport/src/getpwent.c
@@ -8,7 +8,7 @@
/*
* Copyright (c) 1999-2009 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Copyright (c) 1999-2013 Joel Sherrill <joel.sherrill@OARcorp.com>
- * Copyright (c) 2000-2001 Fernando Ruiz Casas <fernando.ruiz@ctv.es>
+ * Copyright (c) 2000-2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
* Copyright (c) 2002 Eric Norum <eric@norum.ca>
* Copyright (c) 2003 Till Straumann <strauman@slac.stanford.edu>
* Copyright (c) 2012 Alex Ivanov <alexivanov97@gmail.com>
diff --git a/cpukit/libcsupport/src/privateenv.c b/cpukit/libcsupport/src/privateenv.c
index 6c6549c9ca..3fec6e3c69 100644
--- a/cpukit/libcsupport/src/privateenv.c
+++ b/cpukit/libcsupport/src/privateenv.c
@@ -8,7 +8,7 @@
*/
/*
- * Submitted by: fernando.ruiz@ctv.es (correo@fernando-ruiz.com)
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* COPYRIGHT (c) 1989-2010.
* On-Line Applications Research Corporation (OAR).
diff --git a/cpukit/libcsupport/src/pwdgrp.c b/cpukit/libcsupport/src/pwdgrp.c
index 258978a0ac..5a7a424fdb 100644
--- a/cpukit/libcsupport/src/pwdgrp.c
+++ b/cpukit/libcsupport/src/pwdgrp.c
@@ -8,7 +8,7 @@
/*
* Copyright (c) 1999-2009 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Copyright (c) 1999-2013 Joel Sherrill <joel.sherrill@OARcorp.com>
- * Copyright (c) 2000-2001 Fernando Ruiz Casas <fernando.ruiz@ctv.es>
+ * Copyright (c) 2000-2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
* Copyright (c) 2002 Eric Norum <eric@norum.ca>
* Copyright (c) 2003 Till Straumann <strauman@slac.stanford.edu>
* Copyright (c) 2012 Alex Ivanov <alexivanov97@gmail.com>
diff --git a/cpukit/libmisc/shell/cat_file.c b/cpukit/libmisc/shell/cat_file.c
index f7a530c56c..50aaa8e3f4 100644
--- a/cpukit/libmisc/shell/cat_file.c
+++ b/cpukit/libmisc/shell/cat_file.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CAT Command Implementation
+ */
+
/*
- * CAT Command Implementation
- *
- * Author:
- * WORK: fernando.ruiz@ctv.es
- * HOME: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/cmds.c b/cpukit/libmisc/shell/cmds.c
index dbc63639eb..608961de4c 100644
--- a/cpukit/libmisc/shell/cmds.c
+++ b/cpukit/libmisc/shell/cmds.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief XXX -- Just monitor commands until those can be integrated better
+ */
+
/*
- * XXX -- Just monitor commands until those can be integrated better
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/login_check.c b/cpukit/libmisc/shell/login_check.c
index 023f5c9281..5ba2332070 100644
--- a/cpukit/libmisc/shell/login_check.c
+++ b/cpukit/libmisc/shell/login_check.c
@@ -7,7 +7,6 @@
/*
* Copyright (c) 2009-2014 embedded brains GmbH and others.
*
- *
* Based on work from Chris Johns and Fernando Ruiz.
*
* Derived from file "cpukit/libmisc/shell/shell.c".
diff --git a/cpukit/libmisc/shell/main_alias.c b/cpukit/libmisc/shell/main_alias.c
index 63a808c066..163a8475aa 100644
--- a/cpukit/libmisc/shell/main_alias.c
+++ b/cpukit/libmisc/shell/main_alias.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief ALIAS Shell Command Implmentation
+ */
+
/*
- * ALIAS Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_blksync.c b/cpukit/libmisc/shell/main_blksync.c
index 9b1cd24fbc..bc429e08f2 100644
--- a/cpukit/libmisc/shell/main_blksync.c
+++ b/cpukit/libmisc/shell/main_blksync.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief RM Shell Command Implmentation
+ */
+
/*
- * RM Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_cat.c b/cpukit/libmisc/shell/main_cat.c
index 145db6b928..539f4493e6 100644
--- a/cpukit/libmisc/shell/main_cat.c
+++ b/cpukit/libmisc/shell/main_cat.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CAT Shell Command Implmentation
+ */
+
/*
- * CAT Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_cd.c b/cpukit/libmisc/shell/main_cd.c
index 7b138742d3..dca1618d70 100644
--- a/cpukit/libmisc/shell/main_cd.c
+++ b/cpukit/libmisc/shell/main_cd.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CD Shell Command Implmentation
+ */
+
/*
- * CD Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_chdir.c b/cpukit/libmisc/shell/main_chdir.c
index 08d1c6e1ef..69f439d6f8 100644
--- a/cpukit/libmisc/shell/main_chdir.c
+++ b/cpukit/libmisc/shell/main_chdir.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CHDIR Shell Command Implmentation
+ */
+
/*
- * CHDIR Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_chmod.c b/cpukit/libmisc/shell/main_chmod.c
index 8b932fac15..1f646d92d4 100644
--- a/cpukit/libmisc/shell/main_chmod.c
+++ b/cpukit/libmisc/shell/main_chmod.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CHMOD Shell Command Implmentation
+ */
+
/*
- * CHMOD Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_chroot.c b/cpukit/libmisc/shell/main_chroot.c
index 415a47c912..247cd2a22f 100644
--- a/cpukit/libmisc/shell/main_chroot.c
+++ b/cpukit/libmisc/shell/main_chroot.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CHROOT Shell Command Implmentation
+ */
+
/*
- * CHROOT Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_date.c b/cpukit/libmisc/shell/main_date.c
index f93e5df016..5cae378b3c 100644
--- a/cpukit/libmisc/shell/main_date.c
+++ b/cpukit/libmisc/shell/main_date.c
@@ -1,11 +1,12 @@
+/**
+ * @file
+ *
+ * @brief DATE Shell Command Implmentation
+ */
+
/*
- * DATE Shell Command Implmentation
- *
- * OAuthor: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
- *
- * Significantly rewritten by Joel Sherrill <joel.sherrill@oarcorp.com>.
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
+ * Copyright (c) 2008 Joel Sherrill <joel.sherrill@oarcorp.com>.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_dir.c b/cpukit/libmisc/shell/main_dir.c
index 7d8e8bcb6b..6357a99243 100644
--- a/cpukit/libmisc/shell/main_dir.c
+++ b/cpukit/libmisc/shell/main_dir.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief DIR Shell Command Implmentation
+ */
+
/*
- * DIR Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_exit.c b/cpukit/libmisc/shell/main_exit.c
index e44f853494..b1ad9579ba 100644
--- a/cpukit/libmisc/shell/main_exit.c
+++ b/cpukit/libmisc/shell/main_exit.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief exit Shell Command Implmentation
+ */
+
/*
- * exit Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_id.c b/cpukit/libmisc/shell/main_id.c
index 2d2b05fe11..bd1906cab1 100644
--- a/cpukit/libmisc/shell/main_id.c
+++ b/cpukit/libmisc/shell/main_id.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief ID Command Implementation
+ */
+
/*
- * ID Command Implementation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_logoff.c b/cpukit/libmisc/shell/main_logoff.c
index 67a2967228..99ed957161 100644
--- a/cpukit/libmisc/shell/main_logoff.c
+++ b/cpukit/libmisc/shell/main_logoff.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief LOGOFF Shell Command Implmentation
+ */
+
/*
- * LOGOFF Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mdump.c b/cpukit/libmisc/shell/main_mdump.c
index 7f49480927..214b57c401 100644
--- a/cpukit/libmisc/shell/main_mdump.c
+++ b/cpukit/libmisc/shell/main_mdump.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief MDUMP Shell Command Implmentation
+ */
+
/*
- * MDUMP Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* Reworked by Ric Claus at SLAC.Stanford.edu
*
diff --git a/cpukit/libmisc/shell/main_medit.c b/cpukit/libmisc/shell/main_medit.c
index d14a518800..e175868cac 100644
--- a/cpukit/libmisc/shell/main_medit.c
+++ b/cpukit/libmisc/shell/main_medit.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief MEDIT Shell Command Implmentation
+ */
+
/*
- * MEDIT Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mfill.c b/cpukit/libmisc/shell/main_mfill.c
index 47a55d3a2f..4ac6bfcf31 100644
--- a/cpukit/libmisc/shell/main_mfill.c
+++ b/cpukit/libmisc/shell/main_mfill.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief MFILL Shell Command Implmentation
+ */
+
/*
- * MFILL Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mkdir.c b/cpukit/libmisc/shell/main_mkdir.c
index 5595bfd3fd..c3027800bc 100644
--- a/cpukit/libmisc/shell/main_mkdir.c
+++ b/cpukit/libmisc/shell/main_mkdir.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief MKDIR Shell Command Implmentation
+ */
+
/*
- * MKDIR Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mmove.c b/cpukit/libmisc/shell/main_mmove.c
index a319355444..38731b10a2 100644
--- a/cpukit/libmisc/shell/main_mmove.c
+++ b/cpukit/libmisc/shell/main_mmove.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief MMOVE Shell Command Implmentation
+ */
+
/*
- * MMOVE Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mount.c b/cpukit/libmisc/shell/main_mount.c
index d326a59097..5a6b36cede 100644
--- a/cpukit/libmisc/shell/main_mount.c
+++ b/cpukit/libmisc/shell/main_mount.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Shell Command Implmentation
+ */
+
/*
- * Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mount_nfs.c b/cpukit/libmisc/shell/main_mount_nfs.c
index 8a2aaa4b29..c0ad3ebdb0 100644
--- a/cpukit/libmisc/shell/main_mount_nfs.c
+++ b/cpukit/libmisc/shell/main_mount_nfs.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Shell Command Implmentation
+ */
+
/*
- * Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_pwd.c b/cpukit/libmisc/shell/main_pwd.c
index ea657dc848..1e3ef450e8 100644
--- a/cpukit/libmisc/shell/main_pwd.c
+++ b/cpukit/libmisc/shell/main_pwd.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief PWD Shell Command Implmentation
+ */
+
/*
- * PWD Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_rmdir.c b/cpukit/libmisc/shell/main_rmdir.c
index 250da83d27..b9cde24886 100644
--- a/cpukit/libmisc/shell/main_rmdir.c
+++ b/cpukit/libmisc/shell/main_rmdir.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief RMDIR Shell Command Implmentation
+ */
+
/*
- * RMDIR Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_tty.c b/cpukit/libmisc/shell/main_tty.c
index 29dc673dbb..9b884a612c 100644
--- a/cpukit/libmisc/shell/main_tty.c
+++ b/cpukit/libmisc/shell/main_tty.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief TTY Shell Command Implmentation
+ */
+
/*
- * TTY Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_umask.c b/cpukit/libmisc/shell/main_umask.c
index 66cd102195..a5c983d126 100644
--- a/cpukit/libmisc/shell/main_umask.c
+++ b/cpukit/libmisc/shell/main_umask.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief UMASK Shell Command Implmentation
+ */
+
/*
- * UMASK Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_unmount.c b/cpukit/libmisc/shell/main_unmount.c
index e7e5fddc68..8c56727f42 100644
--- a/cpukit/libmisc/shell/main_unmount.c
+++ b/cpukit/libmisc/shell/main_unmount.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Shell Command Implmentation
+ */
+
/*
- * Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_whoami.c b/cpukit/libmisc/shell/main_whoami.c
index 8771c66c50..d2183266e6 100644
--- a/cpukit/libmisc/shell/main_whoami.c
+++ b/cpukit/libmisc/shell/main_whoami.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief WHOAMI Shell Command Implmentation
+ */
+
/*
- * WHOAMI Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/shell.c b/cpukit/libmisc/shell/shell.c
index 3268bfe4f5..a2ed909aae 100644
--- a/cpukit/libmisc/shell/shell.c
+++ b/cpukit/libmisc/shell/shell.c
@@ -1,11 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Instantatiate a new terminal shell.
+ */
+
/*
- *
- * Instantatiate a new terminal shell.
- *
- * Author:
- *
- * WORK: fernando.ruiz@ctv.es
- * HOME: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/shell_cmdset.c b/cpukit/libmisc/shell/shell_cmdset.c
index 95f180bbb5..89a6aeb32b 100644
--- a/cpukit/libmisc/shell/shell_cmdset.c
+++ b/cpukit/libmisc/shell/shell_cmdset.c
@@ -1,10 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Shell Command Set Management
+ */
+
/*
- *
- * Shell Command Set Management
- *
- * Author:
- * WORK: fernando.ruiz@ctv.es
- * HOME: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/write_file.c b/cpukit/libmisc/shell/write_file.c
index cc57f4c2c2..1cceb0c6ea 100644
--- a/cpukit/libmisc/shell/write_file.c
+++ b/cpukit/libmisc/shell/write_file.c
@@ -1,11 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Write buffer to a file
+ */
+
/*
- *
- * Write buffer to a file
- *
- * Author:
- *
- * WORK: fernando.ruiz@ctv.es
- * HOME: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/telnetd/README b/cpukit/telnetd/README
index 3807aa5ebf..bf6dbb0524 100644
--- a/cpukit/telnetd/README
+++ b/cpukit/telnetd/README
@@ -1,13 +1,11 @@
-Author: fernando.ruiz@ctv.es (correo@fernando-ruiz.com)
+Author: Fernando Ruiz Casas <fruizcasas@gmail.com>
-This directory contains a telnetd server
-primary features:
+This directory contains a telnetd server with the primary features:
+ create a user shell pseudo-terminal task.
-This code has not been extensively tested. It is provided as a tool
-for RTEMS users to open more shell tcp/ip pseudo-terminal.
-Suggestions and comments are appreciated.
+It is provided as a tool for RTEMS users to open more shell tcp/ip
+pseudo-terminal. Suggestions and comments are appreciated.
Read libmisc/shell for more information.
@@ -20,4 +18,3 @@ NOTES:
Enjoy it.
-FUTURE:
diff --git a/cpukit/telnetd/pty.c b/cpukit/telnetd/pty.c
index a593bbd224..0753a799c1 100644
--- a/cpukit/telnetd/pty.c
+++ b/cpukit/telnetd/pty.c
@@ -1,8 +1,11 @@
+/**
+ * @file
+ *
+ * @brief /dev/ptyXX (Support for pseudo-terminals)
+ */
+
/*
- * /dev/ptyXX (Support for pseudo-terminals)
- *
- * Original Author: Fernando RUIZ CASAS (fernando.ruiz@ctv.es)
- * May 2001
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
diff --git a/cpukit/telnetd/telnetd.c b/cpukit/telnetd/telnetd.c
index 8d3a488ee6..6ca39575fd 100644
--- a/cpukit/telnetd/telnetd.c
+++ b/cpukit/telnetd/telnetd.c
@@ -1,12 +1,7 @@
-/***********************************************************/
-/*
- *
- * The telnet DAEMON
- *
- * Author: 17,may 2001
- *
- * WORK: fernando.ruiz@ctv.es
- * HOME: correo@fernando-ruiz.com
+/**
+ * @file
+ *
+ * @brief The telnet DAEMON
*
* After start the net you can start this daemon.
* It uses the previously inited pseudo-terminales (pty.c)
@@ -17,6 +12,10 @@
* this daemon interactively. (Login in /dev/console of course)
*
* Sorry but OOB is not still implemented. (This is the first version)
+ */
+
+/*
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* Till Straumann <strauman@slac.stanford.edu>
* - made the 'shell' interface more generic, i.e. it is now