From 48a7fa31f918a6fc88719b3c9393a9ba2829f42a Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 15 Nov 2016 10:37:59 -0600 Subject: Remove texinfo format documentation. Replaced by Sphinx formatted documentation. closes #2812. --- doc/new_chapters/Makefile.am | 35 ------ doc/new_chapters/STATUS | 5 - doc/new_chapters/TODO | 4 - doc/new_chapters/error.t | 161 ------------------------- doc/new_chapters/gen_section | 237 ------------------------------------- doc/new_chapters/monitor.t | 221 ---------------------------------- doc/new_chapters/new_chapters.texi | 107 ----------------- doc/new_chapters/stamp-vti | 4 - doc/new_chapters/version.texi | 4 - 9 files changed, 778 deletions(-) delete mode 100644 doc/new_chapters/Makefile.am delete mode 100644 doc/new_chapters/STATUS delete mode 100644 doc/new_chapters/TODO delete mode 100644 doc/new_chapters/error.t delete mode 100644 doc/new_chapters/gen_section delete mode 100644 doc/new_chapters/monitor.t delete mode 100644 doc/new_chapters/new_chapters.texi delete mode 100644 doc/new_chapters/stamp-vti delete mode 100644 doc/new_chapters/version.texi (limited to 'doc/new_chapters') diff --git a/doc/new_chapters/Makefile.am b/doc/new_chapters/Makefile.am deleted file mode 100644 index 25badd1d0e..0000000000 --- a/doc/new_chapters/Makefile.am +++ /dev/null @@ -1,35 +0,0 @@ -# -# COPYRIGHT (c) 1988-2002. -# On-Line Applications Research Corporation (OAR). -# All rights reserved. - -PROJECT = new_chapters - -include $(top_srcdir)/project.am -include $(top_srcdir)/main.am - -GENERATED_FILES = error.texi monitor.texi - -COMMON_FILES += $(top_srcdir)/common/cpright.texi - -FILES = - -info_TEXINFOS = new_chapters.texi -new_chapters_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES) - -error.texi: error.t - $(BMENU2) -p "" \ - -u "Top" \ - -n "" < $< > $@ - -monitor.texi: monitor.t - $(BMENU2) -p "" \ - -u "Top" \ - -n "" < $< > $@ - -noinst_SCRIPTS = gen_section - -EXTRA_DIST = error.t monitor.t STATUS TODO \ - $(noinst_SCRIPTS) - -CLEANFILES += new_chapters.info new_chapters.info-? diff --git a/doc/new_chapters/STATUS b/doc/new_chapters/STATUS deleted file mode 100644 index 6147647468..0000000000 --- a/doc/new_chapters/STATUS +++ /dev/null @@ -1,5 +0,0 @@ -Each of the chapters is individually generated with no attempt to link -the chapters together into a long hypertext chain. - -Some are chapters for POSIX 1003.1h managers. Some are RTEMS support -libraries that we have not figured out where to put in the documentation. diff --git a/doc/new_chapters/TODO b/doc/new_chapters/TODO deleted file mode 100644 index 9f5a884add..0000000000 --- a/doc/new_chapters/TODO +++ /dev/null @@ -1,4 +0,0 @@ - -General - check that all nodes have "none" if they don't have a note. - - diff --git a/doc/new_chapters/error.t b/doc/new_chapters/error.t deleted file mode 100644 index da1f30eba6..0000000000 --- a/doc/new_chapters/error.t +++ /dev/null @@ -1,161 +0,0 @@ -@c -@c COPYRIGHT (c) 1988-2002. -@c On-Line Applications Research Corporation (OAR). -@c All rights reserved. - -@chapter Error Reporting Support - -@section Introduction - -These error reporting facilities are an RTEMS support -component that provide convenient facilities for handling -error conditions in an RTEMS application. -of each task using a period. The services provided by the error -reporting support component are: - -@itemize @bullet -@item @code{rtems_error} - Report an Error -@item @code{rtems_panic} - Report an Error and Panic -@item @code{rtems_status_text} - ASCII Version of RTEMS Status -@end itemize - -@section Background - -@subsection Error Handling in an Embedded System - -Error handling in an embedded system is a difficult problem. If the error -is severe, then the only recourse is to shut the system down in a safe -manner. Other errors can be detected and compensated for. The -error reporting routines in this support component -- @code{rtems_error} -and @code{rtems_panic} assume that if the error is severe enough, -then the system should be shutdown. If a simple shutdown with -some basic diagnostic information is not sufficient, then -these routines should not be used in that particular system. In this case, -use the @code{rtems_status_text} routine to construct an application -specific error reporting routine. - -@section Operations - -@subsection Reporting an Error - -The @code{rtems_error} and @code{rtems_panic} routines -can be used to print some diagnostic information and -shut the system down. The @code{rtems_error} routine -is invoked with a user specified error level indicator. -This error indicator is used to determine if the system -should be shutdown after reporting this error. - -@section Routines - -This section details the error reporting support compenent's routine. -A subsection is dedicated to each of this manager's routines -and describes the calling sequence, related constants, usage, -and status codes. - -@page -@subsection rtems_status_text - ASCII Version of RTEMS Status - -@subheading CALLING SEQUENCE: - -@ifset is-C -@example -const char *rtems_status_text( - rtems_status_code status -); -@end example -@end ifset - -@ifset is-Ada -@example -An Ada interface is not currently available. -@end example -@end ifset - -@subheading STATUS CODES: - -Returns a pointer to a constant string that describes the given -RTEMS status code. - -@subheading DESCRIPTION: - -This routine returns a pointer to a string that describes -the RTEMS status code specified by @code{status}. - -@subheading NOTES: - -NONE - -@page -@subsection rtems_error - Report an Error - -@subheading CALLING SEQUENCE: - -@ifset is-C -@example -int rtems_error( - int error_code, - const char *printf_format, - ... -); -@end example -@end ifset - -@ifset is-Ada -@example -An Ada interface is not currently available. -@end example -@end ifset - -@subheading STATUS CODES: - -Returns the number of characters written. - -@subheading DESCRIPTION: - -This routine prints the requested information as specified by the -@code{printf_format} parameter and the zero or more optional arguments -following that parameter. The @code{error_code} parameter is an error -number with either @code{RTEMS_ERROR_PANIC} or @code{RTEMS_ERROR_ABORT} -bitwise or'ed with it. If the @code{RTEMS_ERROR_PANIC} bit is set, then -then the system is system is shutdown via a call to @code{_exit}. -If the @code{RTEMS_ERROR_ABORT} bit is set, then -then the system is system is shutdown via a call to @code{abort}. - -@subheading NOTES: - -NONE - -@page -@subsection rtems_panic - Report an Error and Panic - -@subheading CALLING SEQUENCE: - -@ifset is-C -@example -int rtems_panic( - const char *printf_format, - ... -); -@end example -@end ifset - -@ifset is-Ada -@example -An Ada interface is not currently available. -@end example -@end ifset - -@subheading STATUS CODES: - -Returns the number of characters written. - -@subheading DESCRIPTION: - -This routine is a wrapper for the @code{rtems_error} routine with -an implied error level of @code{RTEMS_ERROR_PANIC}. See -@code{rtems_error} for more information. - -@subheading NOTES: - -NONE - diff --git a/doc/new_chapters/gen_section b/doc/new_chapters/gen_section deleted file mode 100644 index a4524b1191..0000000000 --- a/doc/new_chapters/gen_section +++ /dev/null @@ -1,237 +0,0 @@ -# -# This shell script generates the starting template for a manager chapter. -# - - -# Set this based on which chapter you want to generate a template for. -chapter=$1 - -case ${chapter} in - smp) # Classic API SMP - CHAPTER_CAPS="Symmetric Multiprocessing" - CHAPTER_LOWER="symmetric multiprocessing" - # XXX - ROUTINES="rtems_task_get_affinity \ - rtems_task_set_affinity" - ;; - pthreadsmp) # POSIX API SMP - CHAPTER_CAPS="Thread Affinity" - CHAPTER_LOWER="Thread Affinity" - # XXX - ROUTINES="pthread_attr_getaffinity_np pthread_attr_setaffinity_np \ - pthread_getaffinity_np pthread_setaffinity_np" - ;; - process) - CHAPTER_CAPS="Process Creation and Execution" - CHAPTER_LOWER="process creation and execution" - ROUTINES="fork execl execv execle execve execlp execvp pthread_atfork \ - wait waitpid _exit" - ;; - procenv) - CHAPTER_CAPS="Process Environment" - CHAPTER_LOWER="process environment" - ROUTINES="getpid getppid getuid geteuid getgid getegid setuid setgid \ - getgroups getlogin getlogin_r getpgrp setsid setpgid uname times \ - getenv ctermid ttyname ttyname_r isatty sysconf " - ;; - files) - CHAPTER_CAPS="Files and Directories" - CHAPTER_LOWER="files and directories" - ROUTINES="opendir readdir readdir_r rewinddir closedir \ - chdir getcwd open creat umask link mkdir mkfifo unlink \ - rmdir rename stat fstat access chmod fchmod chown \ - utime ftrunctate pathconf fpathconf" - ;; - io) - CHAPTER_CAPS="Input and Output Primitives" - CHAPTER_LOWER="input and output primitives" - ROUTINES="pipe dup dup2 close read write fcntl lseek fsynch fdatasynch \ - aio_read aio_write lio_listio aio_error aio_return aio_cancel \ - aio_suspend aio_fsync" - ;; - device) - CHAPTER_CAPS="Device- and Class- Specific Functions" - CHAPTER_LOWER="device- and class- specific functions" - ROUTINES="cfgetispeed cfgetospeed cfsetispeed cfsetospeed tcgetattr \ - tcsetattr tcsendbreak tcdrain tcflush tcflow tcgetpgrp tcsetpgrp" - ;; - cspecific) - CHAPTER_CAPS="Language-Specific Services for the C Programming Language" - CHAPTER_LOWER="language-specific services for the C programming language" - ROUTINES="setlocale fileno fdopen flcokfile ftrylockfile funlockfile \ - getc_unlocked getchar_unlocked putc_unlocked putchar_unlocked \ - setjmp longjmp sigsetjmp siglongjmp tzset strtok_r asctime_r \ - ctime_r gmtime_r localtime_r rand_r" - ;; - systemdb) - CHAPTER_CAPS="System Databases" - CHAPTER_LOWER="system databases" - ROUTINES="getgrgid getgrgid_r getgrnam getgrnam_r getpwuid getpwuid_r \ - getpwnam getpwnam_r" - ;; - semaphores) - CHAPTER_CAPS="Semaphores" - CHAPTER_LOWER="semaphore" - ROUTINES="sem_init sem_destroy sem_open sem_close sem_unlink sem_wait \ - sem_trywait sem_post sem_getvalue" - ;; - memorymgmt) - CHAPTER_CAPS="Memory Management" - CHAPTER_LOWER="memory management" - ROUTINES="mlockall munlockall mlock munlock mmap munmap mprotect \ - msync shm_open shm_unlink" - ;; - message) - CHAPTER_CAPS="Message Passing" - CHAPTER_LOWER="message passing" - ROUTINES="mq_open mq_close mq_unlink mq_send mq_receive mq_notify \ - mq_setattr mq_getattr" - ;; - cancel) - CHAPTER_CAPS="Thread Cancellation" - CHAPTER_LOWER="thread cancellation" - ROUTINES="pthread_cancel pthread_setcancelstate pthread_setcanceltype \ - pthread_testcancel pthread_cleanup_push" - ;; - eventlog) - CHAPTER_CAPS="Event Logging" - CHAPTER_LOWER="event logging" - ROUTINES="log_write log_open log_read log_notify log_close log_seek \ - log_severity_before log_facilityemptyset log_facilityfillset \ - log_facilityaddset log_facilitydelset log_facilityismember" - ;; - dumpcontrol) - CHAPTER_CAPS="Process Dump Control" - CHAPTER_LOWER="process dump control" - ROUTINES="dump_setpath" - ;; - confspace) - CHAPTER_CAPS="Configuration Space" - CHAPTER_LOWER="configuration space" - ROUTINES="cfg_mount cfg_unmount cfg_mknod cfg_get cfg_set cfg_link \ - cfg_unlink cfg_open cfg_read cfg_children cfg_mark cfg_close" - ;; - adminiface) - CHAPTER_CAPS="Administration Interface" - CHAPTER_LOWER="administration interface" - ROUTINES="admin_shutdown" - ;; - # XXX this is not all of the C Library Stuff - libc_ctype) - CHAPTER_CAPS="C Library Character Handling" - CHAPTER_LOWER="character handling" - ROUTINES="isalnum isalpha iscntrl isdigit isgraph islower isprint \ - ispunct isspace isupper isxdigit tolower toupper" - ;; - libc_math) - CHAPTER_CAPS="C Math Library" - CHAPTER_LOWER="math library" - ROUTINES="acos asis atan atan2 cos sin tan cosh sinh tanh exp frexp ldexp - log log10 modf pow sqrt ceil fabs floor fmod" - ;; - libc_io) - CHAPTER_CAPS="C Library IO" - CHAPTER_LOWER="C Library IO" - ROUTINES="clearerr fclose feof ferror fflush fgetc fgets fopen fputc \ - fputs fread freopen fseek ftell fwrite getc getchar gets perror \ - printf fprintf sprintf putc putchar puts remove rename rewind \ - scanf fscanf sscanf setbuf tempfile tmpnam ungetc" - ;; - libc_string) - CHAPTER_CAPS="C Library String Handling" - CHAPTER_LOWER="string handling" - ROUTINES="strcpy strncpy strcat strncat strcmp strncmp strchr strcspn \ - strpbrk strrchr strspn strstr strtok stlen" - ;; - misc_error) - CHAPTER_CAPS="Error Reporting Support" - CHAPTER_LOWER="error reporting support" - ROUTINES="rtems_error rtems_panic" - ;; - misc_monitor) - CHAPTER_CAPS="Monitor Task" - CHAPTER_LOWER="monitor task" - ROUTINES="rtems_monitor_init rtems_monitor_wakeup" - ;; - *) - echo "Unknown chapter name" - exit 1 - ;; -esac - -if [ "x${CHAPTER_CAPS}" = "x" -o "x${CHAPTER_LOWER}" = "x" \ - -o "x${ROUTINES}" = "x" ] ; then - echo "initialization problem" - exit 1 -fi - -echo "@c" -echo "@c COPYRIGHT (c) 1988-2014." -echo "@c On-Line Applications Research Corporation (OAR)." -echo "@c All rights reserved. " -echo "@c" -echo "" -echo "@chapter ${CHAPTER_CAPS}" Manager -echo "" -echo "@section Introduction" -echo "" -echo "The " -echo "${CHAPTER_LOWER} manager is ..." -echo "" -echo "The directives provided by the ${CHAPTER_LOWER} manager are:" -echo "" -echo "@itemize @bullet" - -for routine in ${ROUTINES} -do - echo "@item @code{${routine}} - TBD" -done -echo "@end itemize" - -echo "" -echo "@section Background" -echo "" -echo "@section Operations" -echo "" -echo "@section Directives" -echo "" -echo "This section details the ${CHAPTER_LOWER} manager's directives." -echo "A subsection is dedicated to each of this manager's directives" -echo "and describes the calling sequence, related constants, usage," -echo "and status codes." -echo "" - -for routine in ${ROUTINES} -do - echo "@c" - echo "@c ${routine}" - echo "@c" - echo "@page" - echo "@subsection ${routine} - " - echo "" - echo "@subheading CALLING SEQUENCE:" - echo "" - echo "@ifset is-C" - echo "@example" - echo "int ${routine}(" - echo ");" - echo "@end example" - echo "@end ifset" - echo "" - echo "@ifset is-Ada" - echo "@end ifset" - echo "" - echo "@subheading STATUS CODES:" - echo "" - echo "@table @b" - echo "@item E" - echo "The" - echo "" - echo "@end table" - echo "" - echo "@subheading DESCRIPTION:" - echo "" - echo "@subheading NOTES:" - echo "" -done - diff --git a/doc/new_chapters/monitor.t b/doc/new_chapters/monitor.t deleted file mode 100644 index 566ca316a4..0000000000 --- a/doc/new_chapters/monitor.t +++ /dev/null @@ -1,221 +0,0 @@ -@c -@c COPYRIGHT (c) 1988-2002. -@c On-Line Applications Research Corporation (OAR). -@c All rights reserved. - -@chapter Monitor Task - -@section Introduction - -The monitor task is a simple interactive shell that allows the user to -make inquries about he state of various system objects. The routines -provided by the monitor task manager are: - -@itemize @bullet -@item @code{rtems_monitor_init} - Initialize the Monitor Task -@item @code{rtems_monitor_wakeup} - Wakeup the Monitor Task -@end itemize - -@section Background - -There is no background information. - -@section Operations - -@subsection Initializing the Monitor - -The monitor is initialized by calling @code{rtems_monitor_init}. When -initialized, the monitor is created as an independent task. An example -of initializing the monitor is shown below: - -@example -@group -#include - ... -rtems_monitor_init(0); -@end group -@end example - -The "0" parameter to the @code{rtems_monitor_init} routine -causes the monitor to immediately enter command mode. -This parameter is a bitfield. If the monitor is to suspend -itself on startup, then the @code{RTEMS_MONITOR_SUSPEND} bit -should be set. - -@section Routines - -This section details the monitor task manager's routines. -A subsection is dedicated to each of this manager's routines -and describes the calling sequence, related constants, usage, -and status codes. - -@page -@subsection rtems_monitor_init - Initialize the Monitor Task - -@subheading CALLING SEQUENCE: - -@ifset is-C -@example -void rtems_monitor_init( - unsigned32 monitor_flags -); -@end example -@end ifset - -@ifset is-Ada -@example -An Ada interface is not currently available. -@end example -@end ifset - -@subheading STATUS CODES: NONE - -@subheading DESCRIPTION: - -This routine initializes the RTEMS monitor task. The -@code{monitor_flags} parameter indicates how the server -task is to start. This parameter is a bitfield and -has the following constants associated with it: - -@itemize @bullet -@item @b{RTEMS_MONITOR_SUSPEND} - suspend monitor on startup -@item @b{RTEMS_MONITOR_GLOBAL} - monitor should be global -@end itemize - -If the @code{RTEMS_MONITOR_SUSPEND} bit is set, then the -monitor task will suspend itself after it is initialized. -A subsequent call to @code{rtems_monitor_wakeup} will be required -to activate it. - -@subheading NOTES: - -The monitor task is created with priority 1. If there are -application tasks at priority 1, then there may be times -when the monitor task is not executing. - -@page -@subsection rtems_monitor_wakeup - Wakeup the Monitor Task - -@subheading CALLING SEQUENCE: - -@ifset is-C -@example -void rtems_monitor_wakeup( void ); -@end example -@end ifset - -@ifset is-Ada -@example -An Ada interface is not currently available. -@end example -@end ifset - -@subheading STATUS CODES: NONE - -@subheading DESCRIPTION: - -This routine is used to activate the monitor task if it is suspended. - -@subheading NOTES: - -NONE - -@page -@section Monitor Interactive Commands - -The following commands are supported by the monitor task: - -@itemize @bullet -@item @code{help} - Obtain Help -@item @code{pause} - Pause Monitor for a Specified Number of Ticks -@item @code{exit} - Invoke a Fatal RTEMS Error -@item @code{symbol} - Show Entries from Symbol Table -@item @code{continue} - Put Monitor to Sleep Waiting for Explicit Wakeup -@item @code{config} - Show System Configuration -@item @code{itask} - List Init Tasks -@item @code{mpci} - List MPCI Config -@item @code{task} - Show Task Information -@item @code{queue} - Show Message Queue Information -@item @code{extension} - User Extensions -@item @code{driver} - Show Information About Named Drivers -@item @code{dname} - Show Information About Named Drivers -@item @code{object} - Generic Object Information -@item @code{node} - Specify Default Node for Commands That Take IDs -@end itemize - - -@subsection help - Obtain Help - -The @code{help} command prints out the list of commands. If invoked -with a command name as the first argument, detailed help information -on that command is printed. - -@subsection pause - Pause Monitor for a Specified Number of Ticks - -The @code{pause} command cause the monitor task to suspend itself -for the specified number of ticks. If this command is invoked with -no arguments, then the task is suspended for 1 clock tick. - -@subsection exit - Invoke a Fatal RTEMS Error - -The @code{exit} command invokes @code{rtems_error_occurred} directive -with the specified error code. If this command is invoked with -no arguments, then the @code{rtems_error_occurred} directive is -invoked with an arbitrary error code. - -@subsection symbol - Show Entries from Symbol Table - -The @code{symbol} command lists the specified entries in the symbol table. -If this command is invoked with no arguments, then all the -symbols in the symbol table are printed. - -@subsection continue - Put Monitor to Sleep Waiting for Explicit Wakeup - -The @code{continue} command suspends the monitor task with no timeout. - -@subsection config - Show System Configuration - -The @code{config} command prints the system configuration. - -@subsection itask - List Init Tasks - -The @code{itask} command lists the tasks in the initialization tasks table. - -@subsection mpci - List MPCI Config - -The @code{mpci} command shows the MPCI configuration information - -@subsection task - Show Task Information - -The @code{task} command prints out information about one or more tasks in -the system. If invoked with no arguments, then -information on all the tasks in the system is printed. - -@subsection queue - Show Message Queue Information - -The @code{queue} command prints out information about one or more -message queues in the system. If invoked with no arguments, then -information on all the message queues in the system is printed. - -@subsection extension - User Extensions - -The @code{extension} command prints out information about the user -extensions. - -@subsection driver - Show Information About Named Drivers - -The @code{driver} command prints information about the device driver table. - -@subsection dname - Show Information About Named Drivers - -The @code{dname} command prints information about the named device drivers. - -@subsection object - Generic Object Information - -The @code{object} command prints information about RTEMS objects. - -@subsection node - Specify Default Node for Commands That Take IDs - -The @code{node} command sets the default node for commands that look -at object ID ranges. - diff --git a/doc/new_chapters/new_chapters.texi b/doc/new_chapters/new_chapters.texi deleted file mode 100644 index f27724dbc3..0000000000 --- a/doc/new_chapters/new_chapters.texi +++ /dev/null @@ -1,107 +0,0 @@ -\input texinfo @c -*-texinfo-*- -@c %**start of header -@setfilename new_chapters.info -@setcontentsaftertitlepage -@syncodeindex vr fn -@synindex ky cp -@paragraphindent 0 -@c %**end of header - -@c -@c COPYRIGHT (c) 1989-2013. -@c On-Line Applications Research Corporation (OAR). -@c All rights reserved. - -@c -@c Master file for the C User's Guide -@c - -@c Joel's Questions -@c -@c 1. Why does paragraphindent only impact makeinfo? -@c 2. Why does paragraphindent show up in HTML? -@c - -@include version.texi -@include common/setup.texi -@include common/rtems.texi - -@ifset use-ascii -@dircategory RTEMS On-Line Manual -@direntry -* RTEMS New Chapters: (new_chapters). Miscellaneous New Chapters -@end direntry -@end ifset - -@c variable substitution info: -@c -@c Note: At the moment we do not document the Ada interface but by building -@c in the infrastructure Florist support should be simple to add. -@set is-C -@clear is-Ada -@set LANGUAGE C -@set STRUCTURE structure -@set ROUTINE function -@set OR | -@set RPREFIX RTEMS_ -@set DIRPREFIX rtems_ -@c the language is @value{LANGUAGE} -@c NOTE: don't use underscore in the name -@c - -@c -@c Title Page Stuff -@c - -@c -@c I don't really like having a short title page. --joel -@c -@c @shorttitlepage New Chapters - -@setchapternewpage odd -@settitle New Chapters -@titlepage -@finalout - -@title New Chapters -@subtitle Edition @value{EDITION}, for RTEMS @value{VERSION} -@sp 1 -@subtitle @value{UPDATED} -@author On-Line Applications Research Corporation -@page -@include common/cpright.texi -@end titlepage - -@c This prevents a black box from being printed on "overflow" lines. -@c The alternative is to rework a sentence to avoid this problem. - -@contents - -@node Top, , (dir), (dir) -@top RTEMS POSIX API User's Guide - -@menu -* Error Reporting Support:: -* Monitor Task:: -* Command and Variable Index:: -* Concept Index:: -@end menu - -@include error.texi -@include monitor.texi - -@node Command and Variable Index, Concept Index, , Top -@unnumbered Command and Variable Index - -There are currently no Command and Variable Index entries. - -@c @printindex fn - -@node Concept Index, , Command and Variable Index, Top -@unnumbered Concept Index - -There are currently no Concept Index entries. -@c @printindex cp - -@bye - diff --git a/doc/new_chapters/stamp-vti b/doc/new_chapters/stamp-vti deleted file mode 100644 index a77d339def..0000000000 --- a/doc/new_chapters/stamp-vti +++ /dev/null @@ -1,4 +0,0 @@ -@set UPDATED 27 June 2007 -@set UPDATED-MONTH June 2007 -@set EDITION 4.10.99.0 -@set VERSION 4.10.99.0 diff --git a/doc/new_chapters/version.texi b/doc/new_chapters/version.texi deleted file mode 100644 index c0e4bbb7b6..0000000000 --- a/doc/new_chapters/version.texi +++ /dev/null @@ -1,4 +0,0 @@ -@set UPDATED 17 July 2015 -@set UPDATED-MONTH July 2015 -@set EDITION 4.10.99.0 -@set VERSION 4.10.99.0 -- cgit v1.2.3