Patch rtemsdoc-4.5.0-rc-3.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:

It addresses:
  * .cvsignore (only minor changes to yours, as they were pretty clean,
    most changes result from my mkcvsignore script being overly pedantic
    sorting entries alphabetically.)
  * timing.t handling and time<BSP>_.texi handling in supplements
  * network.t handling in bsp_howto
  * RTEMS_DATE and RTEMS_UPDATE handling in  configure.in. [It actually is
    a hack, as we could apply automake's version.texi handling instead - I
    know think to understand what automake does with it.]
  * avoid using temporary files; Therefore a new tool called bmenu2,
    derived from bemenu, is introduced, which reads a single file from stdin
    and writes to stdio.

  To apply:

    cd rtemsdoc
    patch -p1 < rtemsdoc-4.5.0-rc-3.diff
    cvs rm -f bsp_howto/network.t
    cvs add tools/bmenu/bmenu2.c
    ./bootstrap

  BTW: word-replace now is unused. It could be removed if you like to.
This commit is contained in:
Joel Sherrill
2000-05-01 16:53:13 +00:00
parent f3c096a312
commit a4ad948732
56 changed files with 630 additions and 679 deletions

View File

@@ -1,27 +1,27 @@
FAQ*.html
Makefile.in
Makefile
basic.texi
tools.texi
concepts.texi
bsp.texi
debug.texi
freesw.texi
embeddedinfo.texi
hwdebugaids.texi
projects.texi
endoftime.texi
FAQ
FAQ.log
FAQ.dvi
FAQ*.html
FAQ.aux
FAQ.cp
FAQ.dvi
FAQ.fn
FAQ.vr
FAQ.tp
FAQ.ky
FAQ.pg
FAQ.toc
FAQ.log
FAQ.pdf
index.html
FAQ.pg
FAQ.ps
FAQ.toc
FAQ.tp
FAQ.vr
Makefile
Makefile.in
basic.texi
bsp.texi
concepts.texi
debug.texi
embeddedinfo.texi
endoftime.texi
freesw.texi
hwdebugaids.texi
index.html
projects.texi
tools.texi

View File

@@ -1,33 +1,23 @@
ada_user*.html
Makefile.in
Makefile
Makefile.in
ada_user
ada_user-1
ada_user-2
ada_user-3
ada_user-4
ada_user-5
ada_user-6
ada_user-7
ada_user-8
ada_user-9
ada_user-10
ada_user-11
ada_user-12
ada_user.log
ada_user.dvi
ada_user*.html
ada_user-?
ada_user-??
ada_user.aux
ada_user.cp
ada_user.fn
ada_user.vr
ada_user.tp
ada_user.ky
ada_user.pg
ada_user.toc
ada_user.cps
ada_user.dvi
ada_user.fn
ada_user.fns
ada_user.ky
ada_user.log
ada_user.pdf
ada_user.pg
ada_user.ps
ada_user.toc
ada_user.tp
ada_user.vr
index.html
rtemspie.pdf
states.pdf
ada_user.pdf
ada_user.ps

View File

@@ -1,37 +1,36 @@
bsp_howto*.html
Makefile.in
Makefile
intro.texi
target.texi
makefiles.texi
linkcmds.texi
support.texi
Makefile.in
adaintr.texi
init.texi
console.texi
clock.texi
timer.texi
rtc.texi
nvmem.texi
network.texi
shmsupp.texi
analog.texi
discrete.texi
bsp_howto
bsp_howto-1
bsp_howto-2
bsp_howto-3
bsp_howto-4
bsp_howto.log
bsp_howto.dvi
bsp_howto*.html
bsp_howto-?
bsp_howto-??
bsp_howto.aux
bsp_howto.cp
bsp_howto.dvi
bsp_howto.fn
bsp_howto.vr
bsp_howto.tp
bsp_howto.ky
bsp_howto.pg
bsp_howto.toc
index.html
bsp_howto.log
bsp_howto.pdf
bsp_howto.pg
bsp_howto.ps
bsp_howto.toc
bsp_howto.tp
bsp_howto.vr
clock.texi
console.texi
discrete.texi
index.html
init.texi
intro.texi
linkcmds.texi
makefiles.texi
network.t
network.texi
nvmem.texi
rtc.texi
shmsupp.texi
support.texi
target.texi
timer.texi

View File

@@ -24,13 +24,6 @@ FILES=
info_TEXINFOS = bsp_howto.texi
bsp_howto_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
#
# Grab the chapter on writing a network device driver.
#
network.t:
ln -s ../networking/driver.t network.t
#
# Process Automatically Generated Files
#
@@ -94,11 +87,13 @@ nvmem.texi: nvmem.t
$(BMENU) -p "" \
-u "Top" \
-n "" $<
network.texi: network.t
$(BMENU) -p "" \
#
# Grab the chapter on writing a network device driver.
#
network.texi: ../networking/driver.t
$(BMENU2) -p "" \
-u "Top" \
-n "" $<
-n "" < $< > $@
shmsupp.texi: shmsupp.t
$(BMENU) -p "" \

View File

@@ -1,3 +1,3 @@
Makefile.in
Makefile
Makefile.in
setup.texi

View File

@@ -13,8 +13,8 @@
@set RTEMS-RELEASE @RTEMS_RELEASE@
@set RTEMS-EDITION 1
@set RTEMS-VERSION @RTEMS_VERSION@
@set RTEMS-UPDATE-DATE February 23 2000
@set RTEMS-UPDATE-MONTH February 2000
@set RTEMS-UPDATE-DATE @RTEMS_UPDATE_DATE@
@set RTEMS-UPDATE-MONTH @RTEMS_UPDATE_MONTH@
@c
@c The following determines which set of the tables and figures we will use.

View File

@@ -12,6 +12,12 @@ AC_SUBST(RTEMS_VERSION)
RTEMS_RELEASE="4.5.0"
AC_SUBST(RTEMS_RELEASE)
RTEMS_UPDATE_DATE="April 26 2000"
AC_SUBST(RTEMS_UPDATE_DATE)
RTEMS_UPDATE_MONTH="April 2000"
AC_SUBST(RTEMS_UPDATE_MONTH)
AC_ARG_ENABLE(html,
[ --disable-html disable html support ],
[case $enableval in
@@ -99,6 +105,8 @@ AM_CONDITIONAL(USE_EXP, test x=y )
BMENU='$(top_builddir)/tools/bmenu/bmenu'
AC_SUBST(BMENU)
BMENU2='$(top_builddir)/tools/bmenu/bmenu2'
AC_SUBST(BMENU2)
dnl Checks for libraries.

View File

@@ -1,17 +1,17 @@
develenv*.html
Makefile.in
Makefile
Makefile.in
develenv
develenv.log
develenv.dvi
develenv*.html
develenv.aux
develenv.cp
develenv.dvi
develenv.fn
develenv.vr
develenv.tp
develenv.ky
develenv.pg
develenv.toc
index.html
develenv.log
develenv.pdf
develenv.pg
develenv.ps
develenv.toc
develenv.tp
develenv.vr
index.html

View File

@@ -1,28 +1,27 @@
filesystem*.html
Makefile.in
Makefile
patheval.texi
init.texi
mounting.texi
syscalls.texi
fsrequirements.texi
imfs.texi
miniimfs.texi
tftp.texi
Makefile.in
filesystem
filesystem-1
filesystem-2
filesystem-3
filesystem.log
filesystem.dvi
filesystem*.html
filesystem-?
filesystem-??
filesystem.aux
filesystem.cp
filesystem.dvi
filesystem.fn
filesystem.vr
filesystem.tp
filesystem.ky
filesystem.pg
filesystem.toc
index.html
filesystem.log
filesystem.pdf
filesystem.pg
filesystem.ps
filesystem.toc
filesystem.tp
filesystem.vr
fsrequirements.texi
imfs.texi
index.html
init.texi
miniimfs.texi
mounting.texi
patheval.texi
syscalls.texi
tftp.texi

View File

@@ -1,2 +1,2 @@
Makefile.in
Makefile
Makefile.in

View File

@@ -1,2 +1,2 @@
Makefile.in
Makefile
Makefile.in

View File

@@ -1,36 +1,33 @@
itron*.html
Makefile.in
Makefile
Makefile.in
config.texi
eventflags.texi
fixedblock.texi
index.html
interrupt.texi
itron
itron*.html
itron-?
itron-??
itron.aux
itron.cp
itron.dvi
itron.fn
itron.ky
itron.log
itron.pdf
itron.pg
itron.ps
itron.toc
itron.tp
itron.vr
mailbox.texi
memorypool.texi
msgbuffer.texi
network.texi
rendezvous.texi
semaphore.texi
status.texi
task.texi
tasksync.texi
semaphore.texi
eventflags.texi
mailbox.texi
msgbuffer.texi
rendezvous.texi
interrupt.texi
memorypool.texi
fixedblock.texi
time.texi
config.texi
network.texi
itron
itron-1
itron-2
itron-3
itron-4
itron-5
itron.log
itron.dvi
itron.aux
itron.cp
itron.fn
itron.vr
itron.tp
itron.ky
itron.pg
itron.toc
index.html
itron.ps
itron.pdf

View File

@@ -1,26 +1,26 @@
networking*.html
Makefile.in
Makefile
networktasks.texi
networkapp.texi
driver.texi
testing.texi
servers.texi
Makefile.in
PCIreg.pdf
decdriver.texi
driver.texi
index.html
networkapp.texi
networkflow.pdf
networking
networking.log
networking.dvi
networking*.html
networking.aux
networking.cp
networking.dvi
networking.fn
networking.vr
networking.tp
networking.ky
networking.pg
networking.toc
index.html
networkflow.pdf
PCIreg.pdf
recvbd.pdf
networking.log
networking.pdf
networking.pg
networking.ps
networking.toc
networking.tp
networking.vr
networktasks.texi
recvbd.pdf
servers.texi
testing.texi

View File

@@ -1,29 +1,28 @@
new_chapters*.html
Makefile.in
Makefile
Makefile.in
adminiface.texi
confspace.texi
dumpcontrol.texi
eventlog.texi
stackchk.texi
rtmonuse.texi
cpuuse.texi
dumpcontrol.texi
error.texi
eventlog.texi
index.html
monitor.texi
new_chapters
new_chapters-1
new_chapters-2
new_chapters-3
new_chapters.log
new_chapters.dvi
new_chapters*.html
new_chapters-?
new_chapters-??
new_chapters.aux
new_chapters.cp
new_chapters.dvi
new_chapters.fn
new_chapters.vr
new_chapters.tp
new_chapters.ky
new_chapters.pg
new_chapters.toc
index.html
new_chapters.log
new_chapters.pdf
new_chapters.pg
new_chapters.ps
new_chapters.toc
new_chapters.tp
new_chapters.vr
rtmonuse.texi
stackchk.texi

View File

@@ -1,29 +1,29 @@
porting*.html
Makefile.in
Makefile
developtools.texi
sourcecode.texi
cpumodels.texi
cpuinit.texi
interrupts.texi
taskcontext.texi
idlethread.texi
prioritybitmap.texi
Makefile.in
codetuning.texi
cpuinit.texi
cpumodels.texi
developtools.texi
idlethread.texi
index.html
interrupts.texi
miscellaneous.texi
porting
porting-1
porting-2
porting.log
porting.dvi
porting*.html
porting-?
porting-??
porting.aux
porting.cp
porting.dvi
porting.fn
porting.vr
porting.tp
porting.ky
porting.pg
porting.toc
index.html
porting.log
porting.pdf
porting.pg
porting.ps
porting.toc
porting.tp
porting.vr
prioritybitmap.texi
sourcecode.texi
taskcontext.texi

View File

@@ -1,6 +1,5 @@
posix1003_1*.html
Makefile.in
Makefile
Makefile.in
ch01.texi
ch02.texi
ch03.texi
@@ -21,20 +20,20 @@ ch17.texi
ch18.texi
ch19.t
ch19.texi
index.html
posix1003_1
posix1003_1-1
posix1003_1-2
posix1003_1-3
posix1003_1.log
posix1003_1.dvi
posix1003_1*.html
posix1003_1-?
posix1003_1-??
posix1003_1.aux
posix1003_1.cp
posix1003_1.dvi
posix1003_1.fn
posix1003_1.vr
posix1003_1.tp
posix1003_1.ky
posix1003_1.pg
posix1003_1.toc
index.html
posix1003_1.log
posix1003_1.pdf
posix1003_1.pg
posix1003_1.ps
posix1003_1.toc
posix1003_1.tp
posix1003_1.vr

View File

@@ -1,17 +1,37 @@
posix_users*.html
Makefile.in
Makefile
Makefile.in
cancel.texi
clock.texi
cond.texi
cspecific.texi
device.texi
files.texi
index.html
io.texi
key.texi
libc.texi
libm.texi
memorymgmt.texi
message.texi
mutex.texi
posix_users
posix_users*.html
posix_users-?
posix_users-??
posix_users.aux
posix_users.cp
posix_users.cps
posix_users.dvi
posix_users.fn
posix_users.fns
posix_users.ky
posix_users.log
posix_users.pdf
posix_users.pg
posix_users.ps
posix_users.toc
posix_users.tp
posix_users.vr
procenv.texi
process.texi
sched.texi
@@ -21,30 +41,3 @@ status.texi
systemdb.texi
thread.texi
timer.texi
libc.texi
libm.texi
posix_users
posix_users-1
posix_users-2
posix_users-3
posix_users-4
posix_users-5
posix_users-6
posix_users-7
posix_users-8
posix_users-9
posix_users.log
posix_users.dvi
posix_users.aux
posix_users.cp
posix_users.fn
posix_users.vr
posix_users.tp
posix_users.ky
posix_users.pg
posix_users.toc
posix_users.cps
posix_users.fns
index.html
posix_users.pdf
posix_users.ps

View File

@@ -1,17 +1,17 @@
relnotes*.html
Makefile.in
Makefile
Makefile.in
index.html
relnotes
relnotes.log
relnotes.dvi
relnotes*.html
relnotes.aux
relnotes.cp
relnotes.dvi
relnotes.fn
relnotes.vr
relnotes.tp
relnotes.ky
relnotes.pg
relnotes.toc
index.html
relnotes.log
relnotes.pdf
relnotes.pg
relnotes.ps
relnotes.toc
relnotes.tp
relnotes.vr

View File

@@ -1,30 +1,30 @@
rgdb_specs*.html
Makefile.in
Makefile
intro.texi
revision.texi
objectives.texi
gdbinternals.texi
interfacing.texi
Makefile.in
comm.texi
daemon.texi
conclusion.texi
daemon.texi
gdbinternals.texi
index.html
interfacing.texi
intro.texi
layers.pdf
objectives.texi
process.pdf
revision.texi
rgdb_specs
rgdb_specs.log
rgdb_specs.dvi
rgdb_specs*.html
rgdb_specs.aux
rgdb_specs.cp
rgdb_specs.dvi
rgdb_specs.fn
rgdb_specs.vr
rgdb_specs.tp
rgdb_specs.ky
rgdb_specs.pg
rgdb_specs.toc
index.html
layers.pdf
process.pdf
seqdetach.pdf
seqbreak.pdf
seqinit.pdf
rgdb_specs.log
rgdb_specs.pdf
rgdb_specs.pg
rgdb_specs.ps
rgdb_specs.toc
rgdb_specs.tp
rgdb_specs.vr
seqbreak.pdf
seqdetach.pdf
seqinit.pdf

View File

@@ -1,23 +1,23 @@
rtems_gdb*.html
Makefile.in
Makefile
intro.texi
swarch.texi
started.texi
Makefile.in
commands.texi
trouble.texi
example.texi
index.html
intro.texi
rtems_gdb
rtems_gdb.log
rtems_gdb.dvi
rtems_gdb*.html
rtems_gdb.aux
rtems_gdb.cp
rtems_gdb.dvi
rtems_gdb.fn
rtems_gdb.vr
rtems_gdb.tp
rtems_gdb.ky
rtems_gdb.pg
rtems_gdb.toc
index.html
rtems_gdb.ps
rtems_gdb.log
rtems_gdb.pdf
rtems_gdb.pg
rtems_gdb.ps
rtems_gdb.toc
rtems_gdb.tp
rtems_gdb.vr
started.texi
swarch.texi
trouble.texi

View File

@@ -1,2 +1,2 @@
Makefile.in
Makefile
Makefile.in

View File

@@ -1,25 +1,25 @@
started*.html
Makefile.in
Makefile
Makefile.in
binaries.texi
buildc.texi
buildrt.texi
gdb.texi
index.html
intro.texi
nt.texi
require.texi
sample.texi
started
started.log
started.dvi
started*.html
started.aux
started.cp
started.dvi
started.fn
started.vr
started.tp
started.ky
started.pg
started.toc
index.html
started.log
started.pdf
started.pg
started.ps
started.toc
started.tp
started.vr

View File

@@ -1,2 +1,2 @@
Makefile.in
Makefile
Makefile.in

View File

@@ -1,23 +1,23 @@
started_ada*.html
Makefile.in
Makefile
Makefile.in
buildada.texi
buildrt.texi
gdb.texi
index.html
intro.texi
require.texi
sample.texi
started_ada
started_ada.log
started_ada.dvi
started_ada*.html
started_ada.aux
started_ada.cp
started_ada.dvi
started_ada.fn
started_ada.vr
started_ada.tp
started_ada.ky
started_ada.pg
started_ada.toc
index.html
started_ada.log
started_ada.pdf
started_ada.pg
started_ada.ps
started_ada.toc
started_ada.tp
started_ada.vr

View File

@@ -1,2 +1,2 @@
Makefile.in
Makefile
Makefile.in

View File

@@ -1,30 +1,32 @@
hppa1_1*.html
Makefile.in
Makefile
cpumodel.texi
callconv.texi
memmodel.texi
intr.t
intr.texi
fatalerr.texi
Makefile.in
bsp.texi
callconv.texi
cpumodel.texi
cputable.texi
wksheets.t
wksheets.texi
timing.t
timing.texi
timeSIMHPPA.texi
fatalerr.texi
hppa1_1
hppa1_1.log
hppa1_1.dvi
hppa1_1-?
hppa1_1-??
hppa1_1*.html
hppa1_1.aux
hppa1_1.cp
hppa1_1.dvi
hppa1_1.fn
hppa1_1.vr
hppa1_1.tp
hppa1_1.ky
hppa1_1.pg
hppa1_1.toc
index.html
hppa1_1.log
hppa1_1.pdf
hppa1_1.pg
hppa1_1.ps
hppa1_1.toc
hppa1_1.tp
hppa1_1.vr
index.html
intr.t
intr.texi
memmodel.texi
timeSIMHPPA.texi
timing.t
timing.texi
wksheets.t
wksheets.texi

View File

@@ -87,11 +87,9 @@ CLEANFILES += wksheets.t
# 3. Build Node Structure
timing.texi: $(top_srcdir)/common/timing.t
cp $(top_srcdir)/common/timing.t timing.t
$(BMENU) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
$(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
-u "Top" \
-n "HP-7100 Timing Data" timing.t
CLEANFILES += timing.t
-n "HP-7100 Timing Data" < $< > $@
# Timing Data for BSP Chapter:
# 1. Copy the Shared File

View File

@@ -1,33 +1,33 @@
i386*.html
Makefile.in
Makefile
cpumodel.texi
Makefile.in
bsp.texi
callconv.texi
memmodel.texi
cpumodel.texi
cputable.texi
fatalerr.texi
i386
i386*.html
i386-?
i386-??
i386.aux
i386.cp
i386.dvi
i386.fn
i386.ky
i386.log
i386.pdf
i386.pg
i386.ps
i386.toc
i386.tp
i386.vr
index.html
intr.t
intr.texi
fatalerr.texi
bsp.texi
cputable.texi
memmodel.texi
timeFORCE386.texi
timeFORCE386_.t
timing.t
timing.texi
wksheets.t
wksheets.texi
timeFORCE386_.t
i386
i386-1
timeFORCE386.texi
i386-2
i386.log
i386.dvi
i386.aux
i386.cp
i386.fn
i386.vr
i386.tp
i386.ky
i386.pg
i386.toc
i386.pdf
index.html
i386.ps

View File

@@ -86,30 +86,26 @@ CLEANFILES += wksheets.t
# 1. Copy the Shared File
# 3. Build Node Structure
timing.texi: $(top_srcdir)/common/timing.t
cp $(top_srcdir)/common/timing.t timing.t
$(BMENU) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
$(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
-u "Top" \
-n "CPU386 Timing Data" timing.t
CLEANFILES += timing.t
-n "CPU386 Timing Data" < $< > $@
# Timing Data for BSP Chapter:
# 1. Copy the Shared File
# 2. Replace Times and Sizes
# 3. Build Node Structure
timeFORCE386_.t: $(top_srcdir)/common/timetbl.t timeFORCE386.t
timeFORCE386.texi: $(top_srcdir)/common/timetbl.t timeFORCE386.t
cat timeFORCE386.t $(top_srcdir)/common/timetbl.t >timeFORCE386_.t
@echo >>timeFORCE386_.t
@echo "@tex" >>timeFORCE386_.t
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeFORCE386_.t
@echo "@end tex" >>timeFORCE386_.t
${REPLACE} -p FORCE386_TIMES timeFORCE386_.t
mv timeFORCE386_.t.fixed timeFORCE386_.t
timeFORCE386.texi: timeFORCE386_.t
${REPLACE2} -p FORCE386_TIMES timeFORCE386_.t timeFORCE386_.t
$(BMENU) -p "Timing Specification Terminology" \
-u "Top" \
-n "Command and Variable Index" timeFORCE386_.t
mv timeFORCE386_.texi timeFORCE386.texi
CLEANFILES += timeFORCE386_.t timeFORCE386_.texi
EXTRA_DIST = FORCE386_TIMES *.t

View File

@@ -1,31 +1,31 @@
i960*.html
Makefile.in
Makefile
cpumodel.texi
Makefile.in
bsp.texi
callconv.texi
memmodel.texi
cpumodel.texi
cputable.texi
fatalerr.texi
i960
i960*.html
i960.aux
i960.cp
i960.dvi
i960.fn
i960.ky
i960.log
i960.pdf
i960.pg
i960.ps
i960.toc
i960.tp
i960.vr
index.html
intr.t
intr.texi
fatalerr.texi
bsp.texi
cputable.texi
memmodel.texi
timeCVME961.texi
timeCVME961_.t
timing.t
timing.texi
wksheets.t
wksheets.texi
timeCVME961_.t
i960
i960.log
timeCVME961.texi
i960.dvi
i960.aux
i960.cp
i960.fn
i960.vr
i960.tp
i960.ky
i960.pg
i960.toc
i960.pdf
index.html
i960.ps

View File

@@ -87,30 +87,26 @@ CLEANFILES += wksheets.t
# 3. Build Node Structure
timing.texi: $(top_srcdir)/common/timing.t
cp $(top_srcdir)/common/timing.t timing.t
$(BMENU) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
$(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
-u "Top" \
-n "CVME961 Timing Data" timing.t
CLEANFILES += timing.t
-n "CVME961 Timing Data" < $< > $@
# Timing Data for BSP Chapter:
# 1. Copy the Shared File
# 2. Replace Times and Sizes
# 3. Build Node Structure
timeCVME961_.t: $(top_srcdir)/common/timetbl.t timeCVME961.t
timeCVME961.texi: $(top_srcdir)/common/timetbl.t timeCVME961.t
cat timeCVME961.t $(top_srcdir)/common/timetbl.t >timeCVME961_.t
@echo >>timeCVME961_.t
@echo "@tex" >>timeCVME961_.t
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeCVME961_.t
@echo "@end tex" >>timeCVME961_.t
${REPLACE} -p CVME961_TIMES timeCVME961_.t
mv timeCVME961_.t.fixed timeCVME961_.t
timeCVME961.texi: timeCVME961_.t
${REPLACE2} -p CVME961_TIMES timeCVME961_.t timeCVME961_.t
$(BMENU) -p "Timing Specification Terminology" \
-u "Top" \
-n "Command and Variable Index" timeCVME961_.t
mv timeCVME961_.texi timeCVME961.texi
CLEANFILES += timeCVME961_.t timeCVME961_.texi
EXTRA_DIST = CVME961_TIMES *.t

View File

@@ -1,33 +1,33 @@
m68k*.html
Makefile.in
Makefile
cpumodel.texi
Makefile.in
bsp.texi
callconv.texi
memmodel.texi
cpumodel.texi
cputable.texi
fatalerr.texi
index.html
intr.t
intr.texi
fatalerr.texi
bsp.texi
cputable.texi
m68k
m68k*.html
m68k-?
m68k-??
m68k.aux
m68k.cp
m68k.dvi
m68k.fn
m68k.ky
m68k.log
m68k.pdf
m68k.pg
m68k.ps
m68k.toc
m68k.tp
m68k.vr
memmodel.texi
timeMVME136.texi
timeMVME136_.t
timing.t
timing.texi
wksheets.t
wksheets.texi
timeMVME136_.t
m68k
m68k-1
timeMVME136.texi
m68k-2
m68k.log
m68k.dvi
m68k.aux
m68k.cp
m68k.fn
m68k.vr
m68k.tp
m68k.ky
m68k.pg
m68k.toc
m68k.pdf
index.html
m68k.ps

View File

@@ -87,30 +87,26 @@ CLEANFILES += wksheets.t
# 3. Build Node Structure
timing.texi: $(top_srcdir)/common/timing.t
cp $(top_srcdir)/common/timing.t timing.t
$(BMENU) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
$(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
-u "Top" \
-n "MVME136 Timing Data" timing.t
CLEANFILES += timing.t
-n "MVME136 Timing Data" < $< > $@
# Timing Data for BSP Chapter:
# 1. Copy the Shared File
# 2. Replace Times and Sizes
# 3. Build Node Structure
timeMVME136_.t: $(top_srcdir)/common/timetbl.t timeMVME136.t
timeMVME136.texi: $(top_srcdir)/common/timetbl.t timeMVME136.t
cat timeMVME136.t $(top_srcdir)/common/timetbl.t >timeMVME136_.t
@echo >>timeMVME136_.t
@echo "@tex" >>timeMVME136_.t
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeMVME136_.t
@echo "@end tex" >>timeMVME136_.t
${REPLACE} -p MVME136_TIMES timeMVME136_.t
mv timeMVME136_.t.fixed timeMVME136_.t
timeMVME136.texi: timeMVME136_.t
${REPLACE2} -p MVME136_TIMES timeMVME136_.t timeMVME136_.t
$(BMENU) -p "Timing Specification Terminology" \
-u "Top" \
-n "Command and Variable Index" timeMVME136_.t
mv timeMVME136_.texi timeMVME136.texi
CLEANFILES += timeMVME136_.t timeMVME136_.texi
EXTRA_DIST = MVME136_TIMES *.t

View File

@@ -1,33 +1,33 @@
mips64orion*.html
Makefile.in
Makefile
cpumodel.texi
Makefile.in
bsp.texi
callconv.texi
memmodel.texi
cpumodel.texi
cputable.texi
fatalerr.texi
index.html
intr.t
intr.texi
fatalerr.texi
bsp.texi
cputable.texi
wksheets.t
wksheets.texi
timing.t
timing.texi
timeBSP_.t
memmodel.texi
mips64orion
timeBSP.texi
mips64orion-1
mips64orion-2
mips64orion.log
mips64orion.dvi
mips64orion*.html
mips64orion-?
mips64orion-??
mips64orion.aux
mips64orion.cp
mips64orion.dvi
mips64orion.fn
mips64orion.vr
mips64orion.tp
mips64orion.ky
mips64orion.pg
mips64orion.toc
index.html
mips64orion.log
mips64orion.pdf
mips64orion.pg
mips64orion.ps
mips64orion.toc
mips64orion.tp
mips64orion.vr
timeBSP.texi
timeBSP_.t
timing.t
timing.texi
wksheets.t
wksheets.texi

View File

@@ -85,30 +85,27 @@ CLEANFILES += wksheets.t
# 3. Build Node Structure
timing.texi: $(top_srcdir)/common/timing.t
cp $(top_srcdir)/common/timing.t timing.t
$(BMENU) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
$(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
-u "Top" \
-n "BSP_FOR_TIMES Timing Data" timing.t
CLEANFILES += timing.t
-n "BSP_FOR_TIMES Timing Data" < $< > $@
# Timing Data for BSP Chapter:
# 1. Copy the Shared File
# 2. Replace Times and Sizes
# 3. Build Node Structure
timeBSP_.t: $(top_srcdir)/common/timetbl.t timeBSP.t
timeBSP.texi: $(top_srcdir)/common/timetbl.t timeBSP.t
cat timeBSP.t $(top_srcdir)/common/timetbl.t >timeBSP_.t
@echo >>timeBSP_.t
@echo "@tex" >>timeBSP_.t
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeBSP_.t
@echo "@end tex" >>timeBSP_.t
${REPLACE} -p BSP_TIMES timeBSP_.t
mv timeBSP_.t.fixed timeBSP_.t
timeBSP.texi: timeBSP_.t
${REPLACE2} -p BSP_TIMES timeBSP_.t timeBSP_.t
$(BMENU) -p "Timing Specification Terminology" \
-u "Top" \
-n "Command and Variable Index" timeBSP_.t
mv timeBSP_.texi timeBSP.texi
CLEANFILES += timeBSP_.t timeBSP_.texi
EXTRA_DIST = BSP_TIMES *.t

View File

@@ -1,36 +1,35 @@
powerpc*.html
Makefile.in
Makefile
cpumodel.texi
Makefile.in
bsp.texi
callconv.texi
memmodel.texi
cpumodel.texi
cputable.texi
fatalerr.texi
index.html
intr.t
intr.texi
fatalerr.texi
bsp.texi
cputable.texi
memmodel.texi
powerpc
powerpc*.html
powerpc-?
powerpc-??
powerpc.aux
powerpc.cp
powerpc.dvi
powerpc.fn
powerpc.ky
powerpc.log
powerpc.pdf
powerpc.pg
powerpc.ps
powerpc.toc
powerpc.tp
powerpc.vr
timeDMV177.texi
timeDMV177_.t
timePSIM.texi
timePSIM_.t
timing.t
timing.texi
wksheets.t
wksheets.texi
timePSIM_.t
timeDMV177_.t
timePSIM.texi
powerpc
timeDMV177.texi
powerpc-1
powerpc-2
powerpc-3
powerpc.log
powerpc.dvi
powerpc.aux
powerpc.cp
powerpc.fn
powerpc.vr
powerpc.tp
powerpc.ky
powerpc.pg
powerpc.toc
index.html
powerpc.pdf
powerpc.ps

View File

@@ -85,50 +85,46 @@ CLEANFILES += wksheets.t
# 1. Copy the Shared File
# 3. Build Node Structure
timing.texi: $(top_srcdir)/common/timing.t
cp $(top_srcdir)/common/timing.t timing.t
$(BMENU) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
$(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
-u "Top" \
-n "PSIM Timing Data" timing.t
CLEANFILES += timing.t
-n "PSIM Timing Data" < $< > $@
# Timing Data for PSIM BSP Chapter:
# 1. Copy the Shared File
# 2. Replace Times and Sizes
# 3. Build Node Structure
timePSIM_.t: $(top_srcdir)/common/timetbl.t timePSIM.t
timePSIM.texi: $(top_srcdir)/common/timetbl.t timePSIM.t
cat timePSIM.t $(top_srcdir)/common/timetbl.t >timePSIM_.t
@echo >>timePSIM_.t
@echo "@tex" >>timePSIM_.t
@echo "\\global\\advance \\smallskipamount by 4pt" >>timePSIM_.t
@echo "@end tex" >>timePSIM_.t
${REPLACE} -p PSIM_TIMES timePSIM_.t
mv timePSIM_.t.fixed timePSIM_.t
timePSIM.texi: timePSIM_.t
${REPLACE2} -p PSIM_TIMES timePSIM_.t timePSIM_.t
$(BMENU) -p "Timing Specification Terminology" \
-u "Top" \
-n "DMV177 Timing Data" timePSIM_.t
mv timePSIM_.texi timePSIM.texi
CLEANFILES += timePSIM_.t timePSIM_.texi
# Timing Data for DMV177 BSP Chapter:
# 1. Copy the Shared File
# 2. Replace Times and Sizes
# 3. Build Node Structure
timeDMV177_.t: $(top_srcdir)/common/timetbl.t timeDMV177.t
timeDMV177.texi: $(top_srcdir)/common/timetbl.t timeDMV177.t
cat timeDMV177.t $(top_srcdir)/common/timetbl.t >timeDMV177_.t
@echo >>timeDMV177_.t
@echo "@tex" >>timeDMV177_.t
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeDMV177_.t
@echo "@end tex" >>timeDMV177_.t
${REPLACE} -p DMV177_TIMES timeDMV177_.t
mv timeDMV177_.t.fixed timeDMV177_.t
timeDMV177.texi: timeDMV177_.t
${REPLACE2} -p DMV177_TIMES timeDMV177_.t timeDMV177_.t
$(BMENU) -p "PSIM Timing Data Rate Monotonic Manager" \
-u "Top" \
-n "Command and Variable Index" timeDMV177_.t
mv timeDMV177_.texi timeDMV177.texi
CLEANFILES += timeDMV177_.t timeDMV177_.texi
EXTRA_DIST = DMV177_TIMES PSIM_TIMES *.t

View File

@@ -1,33 +1,33 @@
sh*.html
Makefile.in
Makefile
cpumodel.texi
Makefile.in
bsp.texi
callconv.texi
memmodel.texi
cpumodel.texi
cputable.texi
fatalerr.texi
index.html
intr.t
intr.texi
fatalerr.texi
bsp.texi
cputable.texi
wksheets.t
wksheets.texi
timing.t
timing.texi
timeBSP_.t
memmodel.texi
sh
sh-1
timeBSP.texi
sh-2
sh.log
sh.dvi
sh*.html
sh-?
sh-??
sh.aux
sh.cp
sh.dvi
sh.fn
sh.vr
sh.tp
sh.ky
sh.pg
sh.toc
index.html
sh.log
sh.pdf
sh.pg
sh.ps
sh.toc
sh.tp
sh.vr
timeBSP.texi
timeBSP_.t
timing.t
timing.texi
wksheets.t
wksheets.texi

View File

@@ -85,30 +85,27 @@ CLEANFILES += wksheets.t
# 3. Build Node Structure
timing.texi: $(top_srcdir)/common/timing.t
cp $(top_srcdir)/common/timing.t timing.t
$(BMENU) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
$(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
-u "Top" \
-n "BSP_FOR_TIMES Timing Data" timing.t
CLEANFILES += timing.t
-n "BSP_FOR_TIMES Timing Data" < $< > $@
# Timing Data for BSP Chapter:
# 1. Copy the Shared File
# 2. Replace Times and Sizes
# 3. Build Node Structure
timeBSP_.t: $(top_srcdir)/common/timetbl.t timeBSP.t
timeBSP.texi: $(top_srcdir)/common/timetbl.t timeBSP.t
cat timeBSP.t $(top_srcdir)/common/timetbl.t >timeBSP_.t
@echo >>timeBSP_.t
@echo "@tex" >>timeBSP_.t
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeBSP_.t
@echo "@end tex" >>timeBSP_.t
${REPLACE} -p BSP_TIMES timeBSP_.t
mv timeBSP_.t.fixed timeBSP_.t
timeBSP.texi: timeBSP_.t
${REPLACE2} -p BSP_TIMES timeBSP_.t timeBSP_.t
$(BMENU) -p "Timing Specification Terminology" \
-u "Top" \
-n "Command and Variable Index" timeBSP_.t
mv timeBSP_.texi timeBSP.texi
CLEANFILES += timeBSP_.t timeBSP_.texi
EXTRA_DIST = BSP_TIMES *.t

View File

@@ -1,33 +1,33 @@
sparc*.html
Makefile.in
Makefile
cpumodel.texi
Makefile.in
bsp.texi
callconv.texi
memmodel.texi
cpumodel.texi
cputable.texi
fatalerr.texi
index.html
intr.t
intr.texi
fatalerr.texi
bsp.texi
cputable.texi
memmodel.texi
sparc
sparc*.html
sparc-?
sparc-??
sparc.aux
sparc.cp
sparc.dvi
sparc.fn
sparc.ky
sparc.log
sparc.pdf
sparc.pg
sparc.ps
sparc.toc
sparc.tp
sparc.vr
timeERC32.texi
timeERC32_.t
timing.t
timing.texi
wksheets.t
wksheets.texi
timeERC32_.t
sparc
timeERC32.texi
sparc-1
sparc-2
sparc.log
sparc.dvi
sparc.aux
sparc.cp
sparc.fn
sparc.vr
sparc.tp
sparc.ky
sparc.pg
sparc.toc
sparc.ps
index.html
sparc.pdf

View File

@@ -86,31 +86,26 @@ CLEANFILES += wksheets.t
# 1. Copy the Shared File
# 3. Build Node Structure
timing.texi: $(top_srcdir)/common/timing.t
cp $(top_srcdir)/common/timing.t timing.t
$(BMENU) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
$(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
-u "Top" \
-n "ERC32 Timing Data" timing.t
CLEANFILES += timing.t
-n "ERC32 Timing Data" < $< > $@
# Timing Data for ERC32 BSP Chapter:
# 1. Copy the Shared File
# 2. Replace Times and Sizes
# 3. Build Node Structure
timeERC32_.t: $(top_srcdir)/common/timetbl.t timeERC32.t
timeERC32.texi: $(top_srcdir)/common/timetbl.t timeERC32.t
cat timeERC32.t $(top_srcdir)/common/timetbl.t >timeERC32_.t
@echo >>timeERC32_.t
@echo "@tex" >>timeERC32_.t
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeERC32_.t
@echo "@end tex" >>timeERC32_.t
${REPLACE} -p ERC32_TIMES timeERC32_.t
mv timeERC32_.t.fixed timeERC32_.t
timeERC32.texi: timeERC32_.t
${REPLACE2} -p ERC32_TIMES timeERC32_.t timeERC32_.t
$(BMENU) -p "Timing Specification Terminology" \
-u "Top" \
-n "Command and Variable Index" timeERC32_.t
mv timeERC32_.texi timeERC32.texi
CLEANFILES += timeERC32_.t timeERC32_.texi
EXTRA_DIST = ERC32_TIMES *.t

View File

@@ -4,7 +4,8 @@
## Makefile fragment common to all supplements/<cpu>/Makefile.ams
##
REPLACE = $(PERL) $(top_srcdir)/tools/word-replace
## Unused
## REPLACE = $(PERL) $(top_srcdir)/tools/word-replace
REPLACE2 = $(PERL) $(top_srcdir)/tools/word-replace2
MAINTAINERCLEANFILES += $(GENERATED_FILES)

View File

@@ -1,33 +1,33 @@
template*.html
Makefile.in
Makefile
cpumodel.texi
Makefile.in
bsp.texi
callconv.texi
memmodel.texi
cpumodel.texi
cputable.texi
fatalerr.texi
index.html
intr.t
intr.texi
fatalerr.texi
bsp.texi
cputable.texi
wksheets.t
wksheets.texi
timing.t
timing.texi
timeBSP_.t
memmodel.texi
template
timeBSP.texi
template-1
template-2
template.log
template.dvi
template*.html
template-?
template-??
template.aux
template.cp
template.dvi
template.fn
template.vr
template.tp
template.ky
template.pg
template.toc
index.html
template.log
template.pdf
template.pg
template.ps
template.toc
template.tp
template.vr
timeBSP.texi
timeBSP_.t
timing.t
timing.texi
wksheets.t
wksheets.texi

View File

@@ -85,31 +85,26 @@ CLEANFILES += wksheets.t
# 3. Build Node Structure
timing.texi: $(top_srcdir)/common/timing.t
cp $(top_srcdir)/common/timing.t timing.t
$(BMENU) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
$(BMENU2) -p "Memory Requirements RTEMS RAM Workspace Worksheet" \
-u "Top" \
-n "MYBSP Timing Data" timing.t
CLEANFILES += timing.t
-n "MYBSP Timing Data" < $< > $@
# Timing Data for BSP BSP Chapter:
# 1. Copy the Shared File
# 2. Replace Times and Sizes
# 3. Build Node Structure
timeBSP_.t: $(top_srcdir)/common/timetbl.t timeBSP.t
timeBSP.texi: $(top_srcdir)/common/timetbl.t timeBSP.t
cat timeBSP.t $(top_srcdir)/common/timetbl.t >timeBSP_.t
@echo >>timeBSP_.t
@echo "@tex" >>timeBSP_.t
@echo "\\global\\advance \\smallskipamount by 4pt" >>timeBSP_.t
@echo "@end tex" >>timeBSP_.t
${REPLACE} -p BSP_TIMES timeBSP_.t
mv timeBSP_.t.fixed timeBSP_.t
MAINTAINERCLEANFILES += timeBSP_.t
timeBSP.texi: timeBSP_.t
${REPLACE2} -p BSP_TIMES timeBSP_.t timeBSP_.t
$(BMENU) -p "Timing Specification Terminology" \
-u "Top" \
-n "Command and Variable Index" timeBSP_.t
mv timeBSP_.texi timeBSP.texi
CLEANFILES += timeBSP_.t timeBSP_.texi
EXTRA_DIST = BSP_TIMES *.t

View File

@@ -1,6 +1,13 @@
aclocal.m4
configure
Makefile
Makefile.in
aclocal.m4
config.cache
config.guess
config.log
config.status
Makefile
config.sub
configure
depcomp
install-sh
missing
mkinstalldirs

View File

@@ -1,4 +1,5 @@
Makefile.in
Makefile
.deps
Makefile
Makefile.in
bmenu
bmenu2

View File

@@ -8,9 +8,15 @@
AUTOMAKE_OPTIONS = foreign 1.4
noinst_PROGRAMS=bmenu
noinst_PROGRAMS=bmenu bmenu2
bmenu_SOURCES = \
address.h chain.c isr.h \
address.inl chain.h main.c \
base.h chain.inl system.h
bmenu2_SOURCES = \
address.h chain.c isr.h \
address.inl chain.h bmenu2.c \
base.h chain.inl system.h

View File

@@ -1,4 +1,4 @@
Makefile.in
Makefile
.deps
Makefile
Makefile.in
pdl2texi

View File

@@ -1,2 +1,2 @@
Makefile.in
Makefile
Makefile.in

View File

@@ -1,2 +1,2 @@
Makefile.in
Makefile
Makefile.in

View File

@@ -1,4 +1,4 @@
Makefile.in
Makefile
.deps
Makefile
Makefile.in
ctags-new

View File

@@ -1,2 +1,2 @@
Makefile.in
Makefile
Makefile.in

View File

@@ -1,2 +1,2 @@
Makefile.in
Makefile
Makefile.in

View File

@@ -1,2 +1,2 @@
Makefile.in
Makefile
Makefile.in

View File

@@ -76,16 +76,17 @@ if ( $#ARGV > -1 )
shift @ARGV ;
}
print STDERR "$outfile\t";
open (INFILE, "<$infile") ||
die "could not open input file $infile: $!";
$line = join('',<INFILE>) ;
close INFILE;
print STDERR "$outfile\t";
open (OUTFILE, ">$outfile") ||
die "could not open output file $outfile: $!";
$line = join('',<INFILE>) ;
foreach $key (keys %patterns)
{
if ( $line =~ s/\b$key\b/$patterns{$key}/ge )
@@ -97,5 +98,4 @@ $line = join('',<INFILE>) ;
print OUTFILE $line ;
print STDERR "\n";
close INFILE;
close OUTFILE;

View File

@@ -1,55 +1,45 @@
c_user*.html
Makefile.in
Makefile
Makefile.in
bsp.texi
overview.texi
concepts.texi
init.texi
task.texi
intr.texi
clock.texi
timer.texi
sem.texi
msg.texi
event.texi
signal.texi
part.texi
region.texi
dpmem.texi
io.texi
fatal.texi
schedule.texi
rtmon.texi
userext.texi
conf.texi
mp.texi
c_user
c_user-1
c_user-2
c_user-3
c_user-4
c_user-5
c_user-6
c_user-7
c_user-8
c_user-9
c_user-10
c_user-11
c_user-12
c_user.log
c_user.dvi
c_user*.html
c_user-?
c_user-??
c_user.aux
c_user.cp
c_user.fn
c_user.vr
c_user.tp
c_user.ky
c_user.pg
c_user.toc
c_user.cps
c_user.dvi
c_user.fn
c_user.fns
index.html
rtemspie.pdf
states.pdf
c_user.ky
c_user.log
c_user.pdf
c_user.pg
c_user.ps
c_user.toc
c_user.tp
c_user.vr
clock.texi
concepts.texi
conf.texi
dpmem.texi
event.texi
fatal.texi
index.html
init.texi
intr.texi
io.texi
mp.texi
msg.texi
overview.texi
part.texi
region.texi
rtemspie.pdf
rtmon.texi
schedule.texi
sem.texi
signal.texi
states.pdf
task.texi
timer.texi
userext.texi