2009-11-30 Fernando Nicodemos <fgnicodemos@terra.com.br>

* umon/cli.h, umon/monlib.c, umon/monlib.h, umon/tfs.h,
	umon/tfsDriver.c, umon/umon.h, umon/umonrtemsglue.c: Update to match
	development version.
This commit is contained in:
Joel Sherrill
2009-11-30 22:00:47 +00:00
parent 7b25525607
commit e5764eebed
8 changed files with 149 additions and 89 deletions

View File

@@ -1,3 +1,9 @@
2009-11-30 Fernando Nicodemos <fgnicodemos@terra.com.br>
* umon/cli.h, umon/monlib.c, umon/monlib.h, umon/tfs.h,
umon/tfsDriver.c, umon/umon.h, umon/umonrtemsglue.c: Update to match
development version.
2009-11-23 Joel Sherrill <joel.sherrill@OARcorp.com> 2009-11-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* clockdrv_shell.h: Clean up. * clockdrv_shell.h: Clean up.

View File

@@ -1,6 +1,10 @@
/* cli.h: /*
* Header file for Command Line Interface related stuff. * cli.h - Header file for Command Line Interface related stuff
* *
* Based upon code from MicroMonitor 1.17 from http://www.umonfw.com/
* which includes this notice:
*
**************************************************************************
* General notice: * General notice:
* This code is part of a boot-monitor package developed as a generic base * This code is part of a boot-monitor package developed as a generic base
* platform for embedded system designs. As such, it is likely to be * platform for embedded system designs. As such, it is likely to be
@@ -15,9 +19,20 @@
* is becoming a mis-representation of credit. * is becoming a mis-representation of credit.
* *
* Original author: Ed Sutter * Original author: Ed Sutter
* Email: esutter@lucent.com * Email: esutter@alcatel-lucent.com
* Phone: 908-582-2351 * Phone: 908-582-2351
**************************************************************************
*
* Ed Sutter has been informed that this code is being used in RTEMS.
*
* This code was reformatted by Joel Sherrill from OAR Corporation and
* Fernando Nicodemos <fgnicodemos@terra.com.br> from NCB - Sistemas
* Embarcados Ltda. (Brazil) to be more compliant with RTEMS coding
* standards and to eliminate C++ style comments.
*
* $Id$
*/ */
#ifndef _cli_h #ifndef _cli_h
#define _cli_h #define _cli_h

View File

@@ -1,4 +1,5 @@
/* monlib.c: /*
* monlib.c -
* This file is part of the monitor code, but it is actually linked into * This file is part of the monitor code, but it is actually linked into
* the application. It is built with (but not linked with) the monitor, * the application. It is built with (but not linked with) the monitor,
* then the monlib.o file is linked with the application. * then the monlib.o file is linked with the application.
@@ -15,6 +16,7 @@
* fact that the monitor and application will share the monlib.h header * fact that the monitor and application will share the monlib.h header
* file. * file.
* *
**************************************************************************
* General notice: * General notice:
* This code is part of a boot-monitor package developed as a generic base * This code is part of a boot-monitor package developed as a generic base
* platform for embedded system designs. As such, it is likely to be * platform for embedded system designs. As such, it is likely to be
@@ -29,9 +31,20 @@
* is becoming a mis-representation of credit. * is becoming a mis-representation of credit.
* *
* Original author: Ed Sutter * Original author: Ed Sutter
* Email: esutter@lucent.com * Email: esutter@alcatel-lucent.com
* Phone: 908-582-2351 * Phone: 908-582-2351
**************************************************************************
*
* Ed Sutter has been informed that this code is being used in RTEMS.
*
* This code was reformatted by Joel Sherrill from OAR Corporation and
* Fernando Nicodemos <fgnicodemos@terra.com.br> from NCB - Sistemas
* Embarcados Ltda. (Brazil) to be more compliant with RTEMS coding
* standards and to eliminate C++ style comments.
*
* $Id$
*/ */
#include <umon/monlib.h> #include <umon/monlib.h>
static int (*_tfsseek)(int,int,int); static int (*_tfsseek)(int,int,int);

View File

@@ -1,6 +1,11 @@
/* monlib.h: /*
* This header file is used by both the monitor and the application that * monlib.h - Used by both the monitor and the application that
* may reside on top of the monitor. * may reside on top of the monitor
*
* Based upon code from MicroMonitor 1.17 from http://www.umonfw.com/
* which includes this notice:
*
**************************************************************************
* General notice: * General notice:
* This code is part of a boot-monitor package developed as a generic base * This code is part of a boot-monitor package developed as a generic base
* platform for embedded system designs. As such, it is likely to be * platform for embedded system designs. As such, it is likely to be
@@ -15,9 +20,20 @@
* is becoming a mis-representation of credit. * is becoming a mis-representation of credit.
* *
* Original author: Ed Sutter * Original author: Ed Sutter
* Email: esutter@lucent.com * Email: esutter@alcatel-lucent.com
* Phone: 908-582-2351 * Phone: 908-582-2351
**************************************************************************
*
* Ed Sutter has been informed that this code is being used in RTEMS.
*
* This code was reformatted by Joel Sherrill from OAR Corporation and
* Fernando Nicodemos <fgnicodemos@terra.com.br> from NCB - Sistemas
* Embarcados Ltda. (Brazil) to be more compliant with RTEMS coding
* standards and to eliminate C++ style comments.
*
* $Id$
*/ */
#ifndef _MONLIB_H_ #ifndef _MONLIB_H_
#define _MONLIB_H_ #define _MONLIB_H_

View File

@@ -18,6 +18,7 @@
* Email: esutter@lucent.com * Email: esutter@lucent.com
* Phone: 908-582-2351 * Phone: 908-582-2351
*/ */
#ifndef _tfs_h #ifndef _tfs_h
#define _tfs_h #define _tfs_h

View File

@@ -1,12 +1,19 @@
/* /*
* MicroMonitor TFS Hookup to RTEMS FS * tfsDriver.c - MicroMonitor TFS Hookup to RTEMS FS
* *
* Initial release: Oct 1, 2004 by Ed Sutter * Initial release: Oct 1, 2004 by Ed Sutter
* *
* This code was derived from the tftpDriver.c code written by * This code was derived from the tftpDriver.c code written by
* W. Eric Norum, which was apparently derived from the IMFS driver. * W. Eric Norum, which was apparently derived from the IMFS driver.
* *
* This code was updated and merged with RTEMS CVS by Joel Sherrill, 2009. * This code was reformatted by Joel Sherrill from OAR Corporation and
* Fernando Nicodemos <fgnicodemos@terra.com.br> from NCB - Sistemas
* Embarcados Ltda. (Brazil) to be more compliant with RTEMS coding
* standards and to eliminate C++ style comments.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
* *
* $Id$ * $Id$
*/ */

View File

@@ -1,13 +1,12 @@
/**
* @file rtems/umon.h
*
* This file contains the RTEMS specific interface to MicroMonitor.
*/
/* /*
* COPYRIGHT (c) 1989-2007. * umon.h - RTEMS specific interface to MicroMonitor.
*
* COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* Modified by Fernando Nicodemos <fgnicodemos@terra.com.br>
* from NCB - Sistemas Embarcados Ltda. (Brazil)
*
* The license and distribution terms for this file may be * The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at * found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE. * http://www.rtems.com/license/LICENSE.

View File

@@ -2,6 +2,9 @@
* COPYRIGHT (c) 1989-2009. * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR). * On-Line Applications Research Corporation (OAR).
* *
* Modified by Fernando Nicodemos <fgnicodemos@terra.com.br>
* from NCB - Sistemas Embarcados Ltda. (Brazil)
*
* The license and distribution terms for this file may be * The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at * found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE. * http://www.rtems.com/license/LICENSE.