source: rtems/testsuites/samples/ChangeLog @ f788472a

4.104.115
Last change on this file since f788472a was f788472a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/24/09 at 05:53:14

2009-10-24 Ralf Corsépius <ralf.corsepius@…>

  • capture/init.c: Remove setup_tasks_to_watch.
  • capture/system.h: Remove test*(). Add setup_tasks_to_watch().
  • capture/test1.c: Fix prototype.
  • fileio/init.c: Fix broken printfs.
  • minimum/init.c: Remove unused var.
  • nsecs/empty.c: Add missing prototype.
  • nsecs/rprintf.h: New.
  • nsecs/init.c: Printf fixes.
  • unlimited/system.h: Add missing prototypes.
  • unlimited/init.c, unlimited/test1.c, unlimited/test2.c, unlimited/test3.c: Various warning fixes.
  • Property mode set to 100644
File size: 31.7 KB
Line 
12009-10-24      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * capture/init.c: Remove setup_tasks_to_watch.
4        * capture/system.h: Remove test*().
5        Add setup_tasks_to_watch().
6        * capture/test1.c: Fix prototype.
7        * fileio/init.c: Fix broken printfs.
8        * minimum/init.c: Remove unused var.
9        * nsecs/empty.c: Add missing prototype.
10        * nsecs/rprintf.h: New.
11        * nsecs/init.c: Printf fixes.
12        * unlimited/system.h: Add missing prototypes.
13        * unlimited/init.c, unlimited/test1.c, unlimited/test2.c,
14        unlimited/test3.c: Various warning fixes.
15
162009-10-14      Joel Sherrill <joel.sherrill@oarcorp.com>
17
18        * unlimited/test1.c: Spacing.
19
202009-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
21
22        * hello/init.c: Remove call to devFS_Show() which had accidentally
23        gotten committed.
24
252009-09-14      Ralf Corsépius <ralf.corsepius@rtems.org>
26
27        * capture/test1.c: Use size_t for sizes.
28
292009-08-26      Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        * hello/Makefile.am, hello/init.c: Simplify.
32        * hello/system.h: Removed.
33
342009-08-21      Xi Yang <hiyangxi@gmail.com>
35
36        * unlimited/test2.c: Fix spacing.
37
382009-08-12      Joel Sherrill <joel.sherrill@oarcorp.com>
39
40        * cdtest/main.cc, fileio/init.c, fileio/system.h, pppd/pppdapp.c,
41        ticker/system.h, ticker/tasks.c: Eliminate test routines
42        TICKS_PER_SECOND and get_ticks_per_second() in favor of new
43        rtems_clock_get_ticks_per_second().
44
452009-08-10      Joel Sherrill <joel.sherrill@oarcorp.com>
46
47        * fileio/system.h, ticker/system.h, ticker/ticker.scn: Convert calls to
48        legacy routine rtems_clock_get( RTEMS_CLOCK_GET_xxx, ..) to
49        rtems_clock_get_xxx().
50
512009-08-10      Joel Sherrill <joel.sherrill@oarcorp.com>
52
53        * ticker/tasks.c: Convert calls to legacy routine rtems_clock_get(
54        RTEMS_CLOCK_GET_TOD, ..) to rtems_clock_get_tod(..).
55
562009-08-10      Joel Sherrill <joel.sherrill@oarcorp.com>
57
58        * fileio/system.h: Switch to unified work area.
59
602009-06-11      Roxana Leontie <roxana.leontie@gmail.com>
61
62        * cdtest/system.h: modified the number of max semaphores - test was
63        failing before
64
652009-06-04      Ralf Corsépius <ralf.corsepius@rtems.org>
66
67        * loopback/init.c: Add missing initializers.
68
692009-04-28    Chris Johns <chrisj@rtems.org>
70
71        * iostream/system.h: Remove the Init prototype. Provide in
72        confdefs.h.
73
742009-04-28      Chris Johns <chrisj@rtems.org>
75
76        * fileio/init.c, fileio/system.h, iostream/init.cc,
77        loopback/init.c, pppd/init.c, pppd/pppdapp.c: Do not build if
78        BSP_SMALL_MEMORY is defined. Remove this code once a better way is
79        supported by the build system.
80
812009-04-14      Sebastian Huber <Sebastian.Huber@embedded-brains.de>
82
83        * fileio/init.c: Removed obsolete header include.
84
852009-04-03      Ralf Corsépius <ralf.corsepius@rtems.org>
86
87        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am,
88        base_sp/Makefile.am, capture/Makefile.am, cdtest/Makefile.am,
89        fileio/Makefile.am, hello/Makefile.am, iostream/Makefile.am,
90        loopback/Makefile.am, minimum/Makefile.am, nsecs/Makefile.am,
91        paranoia/Makefile.am, pppd/Makefile.am, ticker/Makefile.am,
92        unlimited/Makefile.am: Eliminate _exe_/.exe.
93
942009-03-29  Joel Sherrill <joel.sherrill@gmail.com>
95
96        * fileio/init.c: Change arguments to rtems_shell_init() to match
97        new expectations.
98
992009-03-02      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * cdtest/main.cc: Use printk() in global destructors since printf() no
102        longer works.
103
1042009-02-27      Sebastian Huber <Sebastian.Huber@embedded-brains.de>
105
106        * fileio/init.c: Adapt to modified shell configuration
107
1082008-12-18      Joel Sherrill <joel.sherrill@oarcorp.com>
109
110        * capture/test1.c: Add const to eliminate warning.
111
1122008-12-16      Joel Sherrill <joel.sherrill@oarcorp.com>
113
114        * capture/test1.c: Eliminate all public use of TOD conversion routines.
115
1162008-12-14      Joel Sherrill <joel.sherrill@oarcorp.com>
117
118        * unlimited/init.c: Run all tests successfully with maxixum number of
119        priorities as 16 instead of 256. This was done by temporarily
120        modifying the score priority.h maximum. This allowed testing of all
121        API code to ensure that it worked properly with a reduced number of
122        priorities. Most modifications were to switch from hard-coded maximum
123        to using the API provided methods to determine maximum number of
124        priority levels.
125
1262008-12-09      Joel Sherrill <joel.sherrill@oarcorp.com>
127
128        * fileio/init.c: Add explicit creation of /etc/passwd and /etc/group so
129        we have a test case for real password checking.
130
1312008-11-24      Ralf Corsépius <ralf.corsepius@rtems.org>
132
133        * paranoia/paranoia.c: Add missing prototypes.
134
1352008-10-13      Joel Sherrill <joel.sherrill@oarcorp.com>
136
137        * unlimited/system.h: Tighten configuration for stack space.
138
1392008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
140
141        * fileio/init.c: When USE_SHELL not defined, do not attempt to
142        configure shell.
143
1442008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
145
146        * unlimited/system.h: 10000 task ids is too many for some targets.
147
1482008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
149
150        * unlimited/system.h: Support up to 10K tasks in loop. With 64MB on
151        pc386 and configured for unified workspace, you can get close to
152        this.
153
1542008-09-17      Joel Sherrill <joel.sherrill@oarcorp.com>
155
156        * fileio/system.h: Rename STACK_CHECKER_ON to more appropriate
157        CONFIGURE_STACK_CHECKER_ENABLED.
158
1592008-09-17      Joel Sherrill <joel.sherrill@oarcorp.com>
160
161        * minimum/init.c, unlimited/system.h: Add support for optionally having
162        a unified work area. In other words, the RTEMS Workspace and C
163        Program Heap are the same pool of memory.
164
1652008-09-17      Miao Yan <yanmiaobest@gmail.com>
166
167        * hello/system.h, minimum/Makefile.am, minimum/init.c: Merge GSOC
168        project code to add simple device only filesystem (devfs), optionally
169        completely drop out filesystem, and to clean up disabling newlib
170        reentrancy support. This dropped 17K from the minimum.exe for
171        sparc/sis and arm/rtl22xx_t now has a 15K code space.
172
1732008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
174
175        * capture/system.h, capture/test1.c, fileio/init.c,
176        unlimited/init.c, unlimited/system.h, unlimited/test1.c:
177        Convert to "bool".
178
1792008-09-05      Joel Sherrill <joel.sherrill@oarcorp.com>
180
181        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am: Updating and
182        fixing while running mptests on psim.
183
1842008-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
185
186        * fileio/init.c: New argument sequence for rtems_shell_init(). Also
187        split on multiple lines and document each parameter.
188
1892008-06-17      Joel Sherrill <joel.sherrill@oarcorp.com>
190
191        * minimum/init.c: Disable confdefs.h debug.
192
1932008-06-17      Joel Sherrill <joel.sherrill@oarcorp.com>
194
195        * iostream/system.h: Init task was close to blowing stack on PowerPC.
196        * minimum/init.c: Disable Classic API Notepads.
197
1982008-06-13      Joel Sherrill <joel.sherrill@oarcorp.com>
199
200        * minimum/init.c: Add CONFIGURE_IDLE_TASK_INITIALIZES_APPLICATION and
201        CONFIGURE_MAXIMUM_PRIORITY. Workspace usage now reduces to 4696 bytes
202        on psim.
203
2042008-06-13      Joel Sherrill <joel.sherrill@oarcorp.com>
205
206        * minimum/init.c: Exerise new ability for application to configure
207        minimum stack size. This test still runs the same with a 7.5K stack
208        on the powerpc but reserves 15K less Workspace on the PowerPC.
209
2102008-06-05      Joel Sherrill <joel.sherrill@OARcorp.com>
211
212        * minimum/Makefile.am: Link against all managers.
213        * minimum/init.c: Use existing confdefs.h macros to turn off more
214        this test does not use.
215
2162008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
217
218        * iostream/system.h: Update to include definition of
219        CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER as appropriate.
220
2212008-04-17      Joel Sherrill <joel.sherrill@oarcorp.com>
222
223        * fileio/init.c, hello/system.h, minimum/init.c, unlimited/system.h:
224        Use CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER where needed.
225
2262008-02-28      Joel Sherrill <joel.sherrill@OARcorp.com>
227
228        * iostream/init.cc: Add include of stdlib.h for exit(). Needed by gcc
229        4.3.x.
230
2312008-01-29      Joel Sherrill <joel.sherrill@oarcorp.com>
232
233        * fileio/system.h, ticker/system.h: Add new Object Services collection.
234        This changed the name of a few previously public but undocumented
235        services and added a some new services.
236
2372008-01-11      Joel Sherrill <joel.sherrill@OARcorp.com>
238
239        * hello/init.c: Remove accidental commit.
240
2412008-01-11      Joel Sherrill <joel.sherrill@oarcorp.com>
242
243        * fileio/init.c, fileio/system.h, hello/init.c: Enable malloc
244        statistics so shell output can be interesting.
245
2462007-12-17      Chris Johns <chrisj@rtems.org>
247
248        * testsuites/samples/fileio/init.c: Change shell_* to
249        rtems_shell_*. Add the mount file-system type of msdos.
250
2512007-12-14      Joel Sherrill <joel.sherrill@oarcorp.com>
252
253        * fileio/init.c, fileio/system.h: Increase stack requested for shell
254        task. Turn on stack checking so the report is interesting.
255
2562007-12-11      Joel Sherrill <joel.sherrill@oarcorp.com>
257
258        * fileio/init.c: Add RTEMS Shell configuration and static configuration
259        of user commands.
260
2612007-11-29      Chris Johns <chrisj@rtems.org>
262
263        * iostream/Makefile.am: Change the executable name so it does not
264        create a file which is the same name as the standard header file.
265        * iostream/system.h: Need to increase the number of semaphores for
266        the libstdc++ runtime.
267
2682007-09-10      Joel Sherrill <joel.sherrill@OARcorp.com>
269
270        * capture/Makefile.am: Use all managers.
271
2722007-08-31      Joel Sherrill <joel.sherrill@OARcorp.com>
273
274        * capture/Makefile.am: Fix typo -- not unlimited.
275
2762007-08-21      Chris Johns <chrisj@rtems.org>
277
278        * capture/init.c, capture/system.h, capture/test1.c: Removed CRs
279        from files. Committed incorrectly.
280         
2812007-08-17      Chris Johns <chrisj@rtems.org>
282
283        * Makefile.am, README, configure.ac, capture/.cvsignore,
284        capture/Makefile.am, capture/capture.doc, capture/capture.scn,
285        capture/init.c, capture/system.h, capture/test1.c: Add a sample
286        test for the capture engine.
287
2882007-07-24      Joel Sherrill <joel.sherrill@OARcorp.com>
289
290        * nsecs/init.c: Add include of unistd.h for sleep() prototype.
291
2922007-07-17      Joel Sherrill <joel.sherrill@oarcorp.com>
293
294        * nsecs/Makefile.am, nsecs/init.c: Move empty body to another file. The
295        loop was being optimized out on the PowerPC.
296        * nsecs/empty.c: New file.
297
2982007-07-06      Joel Sherrill <joel.sherrill@OARcorp.com>
299
300        * nsecs/init.c: Change name to avoid any hint of the timer driver.
301
3022007-06-22      Joel Sherrill <joel.sherrill@OARcorp.com>
303
304        * nsecs/init.c: Do not make this test depend on the benchmark timer
305        driver.
306
3072007-06-21      Joel Sherrill <joel.sherrill@oarcorp.com>
308
309        * nsecs/init.c, nsecs/nsecs.scn: Add set of loops so you can see the
310        time varaying in proportion to the length of the loop measured.
311
3122007-05-16      Ralf Corsepius <ralf.corsepius@rtems.org>
313
314        * nsecs/init.c: Remove stray "volatile int i".
315
3162007-05-11      Joel Sherrill <joel.sherrill@OARcorp.com>
317
318        * base_sp/Makefile.am, hello/Makefile.am, iostream/Makefile.am,
319        loopback/Makefile.am, nsecs/Makefile.am,
320        pppd/Makefile.am, ticker/Makefile.am, ticker/system.h,
321        unlimited/Makefile.am: Add optional managers to Makefiles. Clean up
322        test cases so last output line follows END OF pattern. Make sure test
323        case all run. All tests appeared ok on sis.
324        * nsecs/init.c: Commit hack so test will compile when POSIX is
325        disabled.  Remove hack when clock_gettime() is present even when
326        --disable-posix.
327
3282007-05-10      Joel Sherrill <joel.sherrill@OARcorp.com>
329
330        * ticker/Makefile.am, ticker/init.c, ticker/system.h, ticker/tasks.c:
331        Test needs clock manager. Should use rtems_test_exit() instead of
332        exit().
333
3342007-05-09      Joel Sherrill <joel.sherrill@OARcorp.com>
335
336        * minimum/Makefile.am, minimum/init.c: Switch back to using optional
337        manager support. Also add use of CONFIGURE_DISABLE_NEWLIB_REENTRANCY
338        to demonstrate that the newlib reentrancy support is optional.
339
3402007-04-13      Ralf Corsépius <ralf.corsepius@rtems.org>
341
342        * nsecs/init.c: Remove private decl of _Timespec_Subtract use the
343          version from rtems/score/timespec.h.
344
3452007-04-05      Joel Sherrill <joel@OARcorp.com>
346
347        * nsecs/init.c: Provide timespec manipulation routines in the
348        SuperCore. Use them everywhere possible. Perhaps they should be part
349        of the public API so this test and others can use them without
350        peeking into the bowels.
351
3522007-04-05      Joel Sherrill <joel@OARcorp.com>
353
354        * loopback/init.c: Change all obsoleted CONFIGURE_TEST_NEEDS_XXX
355        configuration constants to CONFIGURE_APPLICATION_NEEDS_XXX.
356
3572007-04-02      Joel Sherrill <joel@OARcorp.com>
358
359        * Makefile.am, configure.ac: Convert from Classic API style TOD_Control
360        as fundamental time structure to POSIX struct timespec. Add
361        clock_get_uptime().
362        * nsecs/.cvsignore, nsecs/Makefile.am, nsecs/init.c, nsecs/nsecs.doc,
363        nsecs/nsecs.scn: New files.
364
3652007-03-26      Joel Sherrill <joel@OARcorp.com>
366
367        * loopback/init.c: Add CVS Id.
368
3692007-03-26      Joel Sherrill <joel@OARcorp.com>
370
371        PR 1230/tests
372        * minimum/init.c: Minimum should not configure console driver.
373
3742007-02-21      Joel Sherrill <joel@OARcorp.com>
375
376        * loopback/init.c: Fix exit paths in client thread and main test
377        thread.
378
3792006-12-18      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
380
381        * init.c: added stdout flushs after prompts
382
3832006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
384
385        * configure.ac: New BUG-REPORT address.
386
3872006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
388
389        * configure.ac: Require autoconf-2.60. Require automake-1.10.
390
3912006-09-08      Ken Peters <ken.peters@jpl.nasa.gov>
392
393        PR 1162/rtems
394        * unlimited/system.h: Reserve enough memory for the stacks wanted.
395
3962006-07-11      Ralf Corsépius <ralf.corsepius@rtems.org>
397
398        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am,
399        base_sp/Makefile.am, cdtest/Makefile.am, fileio/Makefile.am,
400        hello/Makefile.am, iostream/Makefile.am, loopback/Makefile.am,
401        minimum/Makefile.am, paranoia/Makefile.am, ticker/Makefile.am,
402        unlimited/Makefile.am: Eliminate scndir, docdir. Use rtems_testsdir
403        instead.
404
4052006-02-08      Joel Sherrill <joel@OARcorp.com>
406
407        * cdtest/main.cc: Fix warnings.
408
4092005-11-22      Ralf Corsepius <ralf.corsepius@rtems.org>
410
411        * configure.ac: Remove RTEMS_ENABLE_BARE,
412        BARE_CPU_CFLAGS, BARE_CPU_MODEL.
413
4142005-11-15  Eric Norum <norume@aps.anl.gov>
415
416        * cdtest/Makefile.am: Remove extraneous make-exe.
417
4182005-11-13      Ralf Corsepius <ralf.corsepius@rtems.org>
419
420        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am,
421        base_sp/Makefile.am, cdtest/Makefile.am, fileio/Makefile.am,
422        hello/Makefile.am, iostream/Makefile.am, loopback/Makefile.am,
423        minimum/Makefile.am, paranoia/Makefile.am, pppd/Makefile.am,
424        ticker/Makefile.am, unlimited/Makefile.am:
425        Convert to using *_PROGRAMS.
426
4272005-11-11      Ralf Corsepius <ralf.corsepius@rtems.org>
428
429        * configure.ac: Remove AMPOLISH3.
430        * base_mp/node1/Makefile.am,
431        base_mp/node2/Makefile.am, base_sp/Makefile.am,
432        cdtest/Makefile.am, fileio/Makefile.am,
433        hello/Makefile.am, iostream/Makefile.am,
434        loopback/Makefile.am, minimum/Makefile.am,
435        paranoia/Makefile.am, pppd/Makefile.am,
436        ticker/Makefile.am, unlimited/Makefile.am: Rework.
437
4382005-11-11      Ralf Corsepius <ralf.corsepius@rtems.org>
439
440        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am,
441        base_sp/Makefile.am, cdtest/Makefile.am, fileio/Makefile.am,
442        hello/Makefile.am, iostream/Makefile.am, loopback/Makefile.am,
443        minimum/Makefile.am, paranoia/Makefile.am, pppd/Makefile.am,
444        ticker/Makefile.am, unlimited/Makefile.am: Expand sample.am.
445        * sample.am: Remove.
446
4472005-11-10      Ralf Corsepius <ralf.corsepius@rtems.org>
448
449        * base_mp/node1/base_mp.doc, base_mp/node1/base_mp.scn,
450        base_mp/node2/base_mp.doc, base_mp/node2/base_mp.scn: Remove.
451        * base_mp/node1/base_mp-node1.doc, base_mp/node1/base_mp-node1.scn,
452        base_mp/node2/base_mp-node2.doc, base_mp/node2/base_mp-node2.scn:
453        New (Renamed from base_mp.*).
454        * sample.am, base_sp/Makefile.am, cdtest/Makefile.am,
455        fileio/Makefile.am, hello/Makefile.am, iostream/Makefile.am,
456        loopback/Makefile.am, minimum/Makefile.am, paranoia/Makefile.am,
457        pppd/Makefile.am, ticker/Makefile.am, unlimited/Makefile.am,
458        base_mp/node1/Makefile.am, base_mp/node2/Makefile.am:
459        s/SAMPLE/TEST/ for improved consistency with other tests.
460
4612005-11-10      Ralf Corsepius <ralf.corsepius@rtems.org>
462
463        * configure.ac: Add ampolish3.
464        * base_mp/Makefile.am: Remove redundant EXTRA_DIST.
465
4662005-11-09      Ralf Corsepius <ralf.corsepius@rtems.org>
467
468        * cdtest/Makefile.am: AM_CPPFLAGS += -I..../support/include.
469
4702005-11-09      Ralf Corsepius <ralf.corsepius@rtems.org>
471
472        * configure.ac: Apply RTEMS_CHECK_CPUOPTS.
473        * sample.am: Set project_bspdir=$(PROJECT_ROOT)
474
4752005-11-07      Ralf Corsepius <ralf.corsepius@rtems.org>
476
477        * sample.am: Remove LIB_VARIANT.
478
4792005-11-07      Ralf Corsepius <ralf.corsepius@rtems.org>
480
481        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am,
482        base_sp/Makefile.am, cdtest/Makefile.am, fileio/Makefile.am,
483        hello/Makefile.am, iostream/Makefile.am, loopback/Makefile.am,
484        minimum/Makefile.am, paranoia/Makefile.am, pppd/Makefile.am
485        ticker/Makefile.am, unlimited/Makefile.am:
486        Remove SRCS, PRINT_SRCS.
487
4882005-11-07      Ralf Corsepius <ralf.corsepius@rtems.org>
489
490        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am: Cleanup.
491
4922005-11-07      Ralf Corsepius <ralf.corsepius@rtems.org>
493
494        * sample.am: Add $(PGM): ${ARCH}/$(dirstamp).
495        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am,
496        base_sp/Makefile.am, cdtest/Makefile.am, fileio/Makefile.am,
497        hello/Makefile.am, iostream/Makefile.am, loopback/Makefile.am,
498        minimum/Makefile.am, paranoia/Makefile.am, pppd/Makefile.am,
499        ticker/Makefile.am, unlimited/Makefile.am:
500        Partial conversion to automake.
501
5022005-10-26  Eric Norum <norume@aps.anl.gov>
503
504        PR 839/tests
505        * pppd/system.h: Remove i386-specific conditional.
506        This at least lets the sample compile.   It's unlikely to actually
507        work, though.
508
5092005-10-26      Ralf Corsepius <ralf.corsepius@rtems.org>
510
511        * pppd/Makefile.am: Reflect libpppd having been split out.
512        * pppd/init.c, pppd/pppdapp.c: include rtems/rtemspppd.h instead of
513        rtemspppd.h.
514
5152005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
516
517        * loopback/init.c: socklen_t.
518
5192005-01-06      Ralf Corsepius <ralf.corsepius@rtems.org>
520
521        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am:
522        Remove LIB_VARIANT.
523
5242005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
525
526        * Makefile.am: Remove DIST_SUBDIRS.
527
5282004-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
529
530        * configure.ac: Require automake > 1.9.
531
5322004-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
533
534        * configure.ac: Add CXX-checks. New conditionals CXXTESTS, MPTESTS,
535        NETTESTS. Add iostream/.
536        * Makefile.am, base_mp/node1/Makefile.am, base_mp/node2/Makefile.am
537        cdtest/Makefile.am, loopback/Makefile.am, pppd/Makefile.am:
538        Reflect changes above.
539        * cdtest/main.cc: Adaptation to new C++ standards.
540
5412004-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
542
543        * iostream/Makefile.am, iostream/init.cc, iostream/iostream.doc,
544        iostream/iostream.scn, iostream/system.h:
545        New (C++ variant of hello).
546
5472004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
548
549        * base_mp/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
550        * base_sp/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
551        * cdtest/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
552        * fileio/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
553        * hello/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
554        * loopback/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
555        * minimum/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
556        * paranoia/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
557        * pppd/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
558        * ticker/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
559        * unlimited/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
560
5612004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
562
563        * fileio/init.c: Include <rtems/dosfs.h> instead of <dosfs.h>.
564
5652004-03-30      Ralf Corsepius <ralf.corsepius@rtems.org>
566
567        * fileio/init.c, fileio/system.h, ticker/system.h, ticker/tasks.c,
568        unlimited/init.c, unlimited/test1.c, unlimited/test2.c,
569        unlimited/test3.c: Convert to using c99 fixed size types.
570
5712004-03-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
572
573        * configure.ac: Add 2nd arg to RTEMS_TOP.
574
5752004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
576
577        * configure.ac: Remove -Wall -ansi to work-around non-portability of
578        with cdtest.
579
5802004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
581
582        * base_mp/node1/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
583        Add PRE/TMPINSTALL_FILES to CLEANFILES.
584        * base_mp/node2/Makefile.am: Ditto.
585        * base_sp/Makefile.am: Ditto.
586        * cdtest/Makefile.am: Ditto.
587        * fileio/Makefile.am: Ditto.
588        * hello/Makefile.am: Ditto.
589        * loopback/Makefile.am: Ditto.
590        * minimum/Makefile.am: Ditto.
591        * paranoia/Makefile.am: Ditto.
592        * pppd/Makefile.am: Ditto.
593        * ticker/Makefile.am: Ditto.
594        * unlimited/Makefile.am: Ditto.
595
5962003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
597
598        * samples.am: Fix yet another stupid typo in yesterday's patch.
599
6002003-12-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
601
602        * samples.am: Add dirstamp support.
603
6042003-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
605
606        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am:
607        Eliminate VPATH.
608
6092003-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
610
611        * sample.am: Use $(mkdir_p) instead of $(mkinstalldirs).
612
6132003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
614
615        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
616
6172003-12-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
618
619        * base_mp/Makefile.am: Reformat.
620        * base_mp/node1/Makefile.am: Remove all-local: $(ARCH).
621        * base_mp/node2/Makefile.am: Remove all-local: $(ARCH).
622        * base_sp/Makefile.am: Remove all-local: $(ARCH).
623        * cdtest/Makefile.am: Remove all-local: $(ARCH).
624        * fileio/Makefile.am: Remove all-local: $(ARCH).
625        * hello/Makefile.am: Remove all-local: $(ARCH).
626        * loopback/Makefile.am: Remove all-local: $(ARCH).
627        * minimum/Makefile.am: Remove all-local: $(ARCH).
628        * paranoia/Makefile.am: Remove all-local: $(ARCH).
629        * pppd/Makefile.am: Remove all-local: $(ARCH).
630        * ticker/Makefile.am: Remove all-local: $(ARCH).
631        * unlimited/Makefile.am: Remove all-local: $(ARCH).
632
6332003-11-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
634
635        * configure.ac: Reflect having moved to testsuites/.
636
6372003-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
638
639        * configure.ac: Add AM_CONDITIONAL(LIBCHIP).
640        * fileio/Makefile.am: Only build if LIBCHIP is available.
641
6422003-10-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
643
644        * configure.ac: Remove RTEMS_CANONICAL_HOST.
645
6462003-10-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
647
648        * configure.ac:Remove RTEMS_CHECK_CPU.
649
6502003-09-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
651
652        * fileio/init.c: Unconditionally define MIN (We *do want* to see
653        error messages if it conflicts).
654
6552003-09-04      Joel Sherrill <joel@OARcorp.com>
656
657        * README, base_mp/apptask.c, base_mp/init.c, base_mp/system.h,
658        base_mp/node1/base_mp.doc, base_mp/node2/base_mp.doc,
659        base_sp/apptask.c, base_sp/base_sp.doc, base_sp/init.c,
660        base_sp/system.h, cdtest/init.c, cdtest/main.cc, cdtest/system.h,
661        fileio/fileio.doc, fileio/init.c, fileio/system.h, hello/hello.doc,
662        hello/init.c, hello/system.h, minimum/init.c, minimum/minimum.doc,
663        paranoia/init.c, paranoia/paranoia.doc, paranoia/system.h,
664        ticker/init.c, ticker/system.h, ticker/tasks.c, ticker/ticker.doc,
665        unlimited/init.c, unlimited/system.h, unlimited/test1.c,
666        unlimited/test2.c, unlimited/test3.c, unlimited/unlimited.doc: URL
667        for license changed.
668
6692003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
670
671        * Makefile.am: Reflect having moved aclocal/.
672
6732003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
674
675        * Makefile.am: Reflect having moved automake/.
676        * base_mp/Makefile.am: Reflect having moved automake/.
677        * base_mp/node1/Makefile.am: Reflect having moved automake/.
678        * base_mp/node2/Makefile.am: Reflect having moved automake/.
679        * base_sp/Makefile.am: Reflect having moved automake/.
680        * cdtest/Makefile.am: Reflect having moved automake/.
681        * fileio/Makefile.am: Reflect having moved automake/.
682        * hello/Makefile.am: Reflect having moved automake/.
683        * loopback/Makefile.am: Reflect having moved automake/.
684        * minimum/Makefile.am: Reflect having moved automake/.
685        * paranoia/Makefile.am: Reflect having moved automake/.
686        * pppd/Makefile.am: Reflect having moved automake/.
687        * ticker/Makefile.am: Reflect having moved automake/.
688        * unlimited/Makefile.am: Reflect having moved automake/.
689
6902003-08-13      Joel Sherrill <joel@OARcorp.com>
691
692        * fileio/.cvsignore: New file.
693
6942003-08-13      Joel Sherrill <joel@OARcorp.com>
695
696        PR 451/bsps
697        * pppd/system.h: Depend on TTY driver being in BSPs not simply i386.
698
6992003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
700
701        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
702
7032003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
704
705        * fileio/Makefile.am: Remove references to *.scn (Doesn't exist).
706        * pppd/Makefile.am: Remove references to DOC* (Don't exist).
707
7082003-08-06      Thomas Doerfler<Thomas.Doerfler@imd-systems.de>
709
710        PR 369/filesystem
711        * Makefile.am, configure.ac: sample application to show the use of the
712        DOSFS functions
713        * fileio/Makefile.am, fileio/fileio.doc, fileio/init.c,
714        fileio/system.h: New files.
715
7162003-06-04      Joel Sherrill <joel@OARcorp.com>
717
718        * pppd/system.h: Hack from Ralf to compile on all targets.
719
7202003-04-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
721
722        * configure.ac: Add pppd.
723        * Makefile.am: Add pppd.
724
7252003-04-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
726
727        Adding pppd:
728        * pppd/Makefile-user: New, copied over from libnetworking/pppd/example.
729        * pppd/README: New, copied over from libnetworking/pppd/example.
730        * pppd/init.c: New, copied over from libnetworking/pppd/example.
731        * pppd/netconfig.h: New, copied over from libnetworking/pppd/example.
732        * pppd/ppp.conf: New, copied over from libnetworking/pppd/example.
733        * pppd/pppdapp.c: New, copied over from libnetworking/pppd/example.
734        * pppd/system.h: New, copied over from libnetworking/pppd/example.
735        * pppd/pppd.options: New, copied over from libnetworking/pppd/example.
736        * pppd/Makefile.am: New, converted to automake from Makefile-user.
737        * pppd/.cvsignore: New.
738
7392003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
740
741        * configure.ac: Remove AC_CONFIG_AUX_DIR.
742
7432003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
744
745        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
746
7472003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
748
749        * configure.ac: AC_PREREQ(2.57).
750
7512003-01-27      Joel Sherrill <joel@OARcorp.com>
752
753        * Makefile.am, configure.ac: Added new test loopback which shows how to
754        use the loopback interface. Thank you Eric Norum for a portable
755        target independent test which exercises the TCP/IP. This should
756        prevent massive failures in the TCP/IP stack from reaching the
757        street.
758        * loopback/.cvsignore, loopback/Makefile.am, loopback/README,
759        loopback/init.c, loopback/loopback.scn: New files.
760
7612003-01-03      Joel Sherrill <joel@OARcorp.com>
762
763        * unlimited/system.h, unlimited/test1.c: Backed off previous
764        modification as it does not compile.
765
7662002-10-31      Chris Johns <ccj@acm.org>
767
768        * unlimited/test1.c: PR296. Only fails if more tasks than allowed
769        can be created. 
770        * unlimited/system.h: PR296. Reference the number of tasks in the
771        configuration table rather than a hardcoded number.
772
7732002-11-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
774
775        * configure.ac: Unconditionally check for CXX (Hack to bug in
776        autoconf > 2.54).
777
7782002-10-31      Joel Sherrill <joel@OARcorp.com>
779
780        * base_mp/apptask.c: Removed warning.
781
7822002-10-28      Joel Sherrill <joel@OARcorp.com>
783
784        * base_mp/apptask.c: Add include of <unistd.h> to eliminate warning.
785
7862002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
787
788        * .cvsignore: Reformat.
789        Add autom4te*cache.
790        Remove autom4te.cache.
791
7922002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
793
794        * base_mp/node1/Makefile.am: Use .$(OBJEXT) instead of .o.
795        * base_mp/node2/Makefile.am: Use .$(OBJEXT) instead of .o.
796        * base_sp/Makefile.am: Use .$(OBJEXT) instead of .o.
797        * cdtest/Makefile.am: Use .$(OBJEXT) instead of .o.
798        * hello/Makefile.am: Use .$(OBJEXT) instead of .o.
799        * minimum/Makefile.am: Use .$(OBJEXT) instead of .o.
800        * paranoia/Makefile.am: Use .$(OBJEXT) instead of .o.
801        * ticker/Makefile.am: Use .$(OBJEXT) instead of .o.
802        * unlimited/Makefile.am: Use .$(OBJEXT) instead of .o.
803
8042002-08-01      Joel Sherrill <joel@OARcorp.com>
805
806        * Per PR47 add support for buffered test output.  This involved
807        adding defines to redirect output to a buffer and dump it when
808        full, at "test pause", and at exit.  To avoid problems when redefining
809        exit(), all tests were modified to call rtems_test_exit().
810        Some tests, notable psxtests, had to be modified to include
811        the standard test macro .h file (pmacros.h or tmacros.h) to
812        enable this support.
813        * cdtest/init.c: Modified.
814
8152002-07-01      Joel Sherrill <joel@OARcorp.com>
816
817        * unlimited/test1.c: Corrected use of _Objects_Information_table
818        now that it is a two dimensional array based upon API and class.
819
8202002-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
821
822        * base_sp/apptask.c: Include <stdlib.h>.
823        * hello/init.c: Ditto.
824        * paranoia/init.c: Ditto.
825        * ticker/tasks.c: Ditto.
826        * unlimited/init.c: Ditto.
827        * unlimited/test1.c: Ditto.
828        * unlimited/test2.c: Ditto.
829        * unlimited/test3.c: Ditto.
830
8312002-04-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
832
833        * configure.ac: Remove ENABLE_GCC28.
834
8352002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
836
837        * configure.ac:
838        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
839        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
840        * base_mp/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
841        * base_mp/Makefile.am: Remove AUTOMAKE_OPTIONS.
842        * base_mp/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
843        * Makefile.am: Remove AUTOMAKE_OPTIONS.
844        * base_sp/Makefile.am: Remove AUTOMAKE_OPTIONS.
845        * cdtest/Makefile.am: Remove AUTOMAKE_OPTIONS.
846        * hello/Makefile.am: Remove AUTOMAKE_OPTIONS.
847        * minimum/Makefile.am: Remove AUTOMAKE_OPTIONS.
848        * paranoia/Makefile.am: Remove AUTOMAKE_OPTIONS.
849        * ticker/Makefile.am: Remove AUTOMAKE_OPTIONS.
850        * unlimited/Makefile.am: Remove AUTOMAKE_OPTIONS.
851
8522001-11-26      Ralf Corsepius
853
854        * cdtest/main.cc: Remove RTEMS_TEST_IO_STREAM.
855
8562001-10-25      Eric Norum <eric.norum@usask.ca>
857
858        * cdtest/system.h: Configure 1 semaphore.  This probably covers
859        up not defining one for the GCC C++ Run-Time Libraries.
860
8612001-10-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
862
863        * paranoia/Makefile.am: Use LD_LIBS = -lm to make automake-1.5 happy.
864
8652001-10-12      Joel Sherrill <joel@OARcorp.com>
866
867        * unlimited/init.c, unlimited/system.h, unlimited/test1.c,
868        unlimited/test2.c, unlimited/test3.c, unlimited/unlimited.doc:
869        Fixed typo.
870
8712001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
872
873        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
874        * configure.in: Remove.
875        * configure.ac: New file, generated from configure.in by autoupdate.
876
8772001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
878
879        * minimum/Makefile.am: Fix comments to make automake-1.5 happy.
880        * sample.am: Use TMPINSTALL_FILES = to make automake-1.5 happy.
881        * cdtest/Makefile.am: Remove LD_LIBS.
882
8832001-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
884
885        * unlimited/Makefile.am: include leaf.am instead of leaf.cfg.
886        * base_mp/node2/Makefile.am: include leaf.am instead of leaf.cfg.
887        * base_mp/node1/Makefile.am: include leaf.am instead of leaf.cfg.
888        * hello/Makefile.am: include leaf.am instead of leaf.cfg.
889        * base_sp/Makefile.am: include leaf.am instead of leaf.cfg.
890        * paranoia/Makefile.am: include leaf.am instead of leaf.cfg.
891        * cdtest/Makefile.am: include leaf.am instead of leaf.cfg, use
892        make-cxx-exe.
893        * ticker/Makefile.am: include leaf.am instead of leaf.cfg.
894        * minimum/Makefile.am: include leaf.am instead of leaf.cfg.
895
8962001-06-14      Joel Sherrill <joel@OARcorp.com>
897
898        * cdtest/system.h: Removed configure of POSIX mutexes since
899        there do not appear to be any used in this test.
900
9012001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
902
903        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
904
9052000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
906
907        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
908
9092000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
910
911        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
912
9132000-10-30      Joel Sherrill <joel@OARcorp.com>
914
915        * POSIX include files merged into newlib.  This resulted in
916        some definitions moving to other files and thus some secondary
917        effects in RTEMS source code.
918        * paranoia/paranoia.c: Commented out incorrect and conflicting
919        prototype of read().
920
9212000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
922
923        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
924        Switch to GNU canonicalization.
925        * sample.am: Remove DEFS.
926
9272000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
928
929        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am,
930        base_sp/Makefile.am, cdtest/Makefile.am, hello/Makefile.am,
931        minimum/Makefile.am, paranoia/Makefile.am, ticker/Makefile.am,
932        unlimited/Makefile.am: Include compile.am
933
9342000-08-10      Joel Sherrill <joel@OARcorp.com>
935
936        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.