source: rtems/c/src/lib/libbsp/sh/simsh4/ChangeLog @ 887297f

4.104.115
Last change on this file since 887297f was 887297f, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 19:07:59

2008-09-16 Joel Sherrill <joel.sherrill@…>

  • clock/ckinit.c: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. Remove unnecessary includes of rtems/libio.h and rtems/libcsupport.h. All SuperH BSPs now share a common bsp_start() implementation.
  • Property mode set to 100644
File size: 17.6 KB
Line 
12008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * clock/ckinit.c: Add use of bsp_get_work_area() in its own file and
4        rely on BSP Framework to perform more initialization. Remove
5        unnecessary includes of rtems/libio.h and rtems/libcsupport.h. All
6        SuperH BSPs now share a common bsp_start() implementation.
7
82008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
9
10        * Makefile.am, configure.ac, include/bsp.h, startup/hw_init.c,
11        startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Use
12        shared bsp_get_work_area() in its own file and rely on BSP Framework
13        to perform more initialization. After factoring this out, it turned
14        out that all SuperH BSPs has the same bsp_start() implementation so
15        this was made shared.
16        * startup/bspstart.c: Removed.
17
182008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
19
20        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
21        phase, all prototypes were removed from bsp.h and empty
22        implementations were removed and made to use the shared stub.
23
242008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
25
26        * clock/ckinit.c: The Shared Memory Driver no longer requires the
27        special IOCTL in Clock_control. This was a hack which has existed
28        since before the Classic API Timer Manager was implemented. All
29        implementations of and references to Clock_control were removed.
30
312008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
32
33        * timer/timer.c: Eliminate empty function from every benchmark timer
34        driver. Fix spelling.
35
362008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
37
38        * timer/timer.c: Rename timer driver methods to follow RTEMS
39        programming conventions.
40
412008-08-27      Ralf Corsépius <ralf.corsepius@rtems.org>
42
43        * timer/timer.c: Eliminate rtems_boolean.
44
452008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
46
47        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
48        Framework to ask the BSP where it has memory for the RTEMS Workspace
49        and C Program Heap. These collectively are referred to as work area.
50        If the BSP supports this, then it does not have to include code to
51        split the available memory between the two areas. This reduces the
52        amount of code in the BSP specific bspstart.c file. Additionally, the
53        shared framework can initialize the C Library, call
54        rtems_debug_enable(), and dirty the work area memory. Until most/all
55        BSPs support this new capability, if the BSP supports this, it should
56        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
57        When the transition is complete, this autoconf macro can be removed.
58
592008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
60
61        * Makefile.am: Rework to avoid .rel files.
62
632008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
64
65        * startup/bspstart.c: Refactored and renamed initialization routines to
66        rtems_initialize_data_structures, rtems_initialize_before_drivers,
67        rtems_initialize_device_drivers, and
68        rtems_initialize_start_multitasking. This opened the sequence up so
69        that bootcard() could provide a more robust and flexible framework
70        which is easier to explain and understand. This also lays the
71        groundwork for sharing the division of available memory between the
72        RTEMS workspace and heap and the C library initialization across all
73        BSPs.
74
752008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
76
77        * console/console.c: Remove all references to console_reserve_resources
78        and termios_reserve_resources.
79
802008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
81
82        * startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add
83        wildcard to gcc_except_table section so programs compiled with gcc
84        4.3.x can link.
85
862007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
87
88        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
89        of the Configuration Table. Use the RTEMS provided accessor macros to
90        obtain configuration fields.
91
922007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
93
94        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
95        from CPU Table to Configuration Table. Eliminate CPU Table from all
96        ports. Delete references to CPU Table in all forms.
97
982007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
99
100        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
101        Table fields to the Configuration Table. This included
102        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
103        do_zero_of_workspace, extra_mpci_receive_server_stack,
104        stack_allocate_hook, and stack_free_hook. As a side-effect of this
105        effort some multiprocessing code was made conditional and some style
106        clean up occurred.
107
1082007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
109
110        * startup/bspstart.c: Fix mistake in previous work.
111
1122007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
113
114        * clock/ckinit.c, startup/bspstart.c: Eliminate the
115        clicks_per_microsecond field in the SuperH CPU Table and define
116        another mechanism for drivers to obtain this information.
117
1182007-05-03      Joel Sherrill <joel@OARcorp.com>
119
120        * startup/linkcmds: Handle .data.* sections
121
1222007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
123
124        * bsp_specs: Remove qrtems_debug.
125
1262007-04-02      Joel Sherrill <joel@OARcorp.com>
127
128        * Makefile.am: Add dummy printk support so all tests link.
129
1302006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
131
132        * configure.ac: New BUG-REPORT address.
133
1342006-11-15      Joel Sherrill <joel@OARcorp.com>
135
136        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
137        file and simplified initialization.
138
1392006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
140
141        * Makefile.am: Remove superfluous -DASM.
142
1432006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
144
145        * configure.ac: Require autoconf-2.60. Require automake-1.10.
146
1472006-06-24      Joel Sherrill <joel@OARcorp.com>
148
149        * startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add
150        .rela.dyn sections.
151
1522006-03-08      Joel Sherrill <joel@OARcorp.com>
153
154        * startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add
155        .gnu.linkonce.b.* section.
156
1572006-02-08      Joel Sherrill <joel@OARcorp.com>
158
159        * startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff: Add
160        sections required by newer gcc versions.
161
1622006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
163
164        * Makefile.am: Add preinstall.am.
165
1662005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
167
168        * include/bsp.h: New header guard.
169
1702005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
171
172        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
173
1742005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
175
176        * Makefile.am: Remove build-variant support.
177
1782004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
179
180        * configure.ac: Require automake > 1.9.
181
1822004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
183
184        PR 610/bsps
185        * Makefile.am: Add include/tm27.h, Cosmetics.
186        * include/tm27.h: Final cosmetics.
187
1882004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
189
190        * include/bsp.h: Split out tmtest27 support.
191        * include/tm27.h: New.
192
1932004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
194
195        PR 613/bsps
196        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
197
1982004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
199
200        PR 614/bsps
201        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
202
2032004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
204
205        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
206
2072004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
208
209        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
210        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
211        * startup/hw_init.c: Include <rtems/iosupp.h> instead of <iosupp.h>.
212
2132004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
214
215        * clock/ckinit.c, include/bsp.h, startup/bspstart.c, timer/timer.c:
216        Convert to using c99 fixed size types.
217
2182004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
219
220        * Makefile.am: Reflect changes to bsp.am.
221        Preinstall dist_project_lib*.
222
2232004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
224
225        * Makefile.am: Reflect changes to bsp.am.
226
2272004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
228
229        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
230
2312004-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
232
233        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
234        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am. Use automake
235        compilation rules.
236        * clock/Makefile.am, console/Makefile.am, startup/Makefile.am,
237        timer/Makefile.am, wrapup/Makefile.am: Remove.
238        * configure.ac: Reflect changes above.
239
2402004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
241
242        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
243        Add RTEMS_PROG_CCAS.
244
2452004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
246
247        * Makefile.am: Add PREINSTALL_DIRS.
248        * wrapup/Makefile.am: Reflect changes to libcpu.
249
2502004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
251
252        * startup/Makefile.am: Remove bogus EXTRA_DIST.
253        * timer/Makefile.am: Remove bogus EXTRA_DIST.
254        * wrapup/Makefile.am: Reflect changes to libcpu.
255
2562004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
257
258        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
259        Add PRE/TMPINSTALL_FILES to CLEANFILES.
260        * startup/Makefile.am: Ditto.
261
2622004-01-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * Makefile.am: Regenerate.
265
2662004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
267
268        * start/Makefile.am: Remove.
269        * Makefile.am: Merge-in start/Makefile.am.
270        * configure.ac: Reflect changes above.
271
2722004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * wrapup/Makefile.am: Eliminate $(LIB).
275        Use noinst_DATA to trigger building libbsp.a.
276
2772003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
278
279        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
280        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
281
2822003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
285        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
286
2872003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
288
289        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
290
2912003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
292
293        * clock/Makefile.am: Misc cleanups and fixes.
294        * start/Makefile.am: Misc cleanups and fixes.
295        * startup/Makefile.am: Misc cleanups and fixes.
296        * timer/Makefile.am: Misc cleanups and fixes.
297
2982003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
299
300        * Makefile.am: Add preinstallation dirstamp support.
301        * clock/Makefile.am: Cosmetics.
302        * console/Makefile.am: Cosmetics.
303        * startup/Makefile.am: Cosmetics.
304        * timer/Makefile.am: Cosmetics.
305        * wrapup/Makefile.am: Cosmetics.
306
3072003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
308
309        * console/Makefile.am: Remove all-local: $(ARCH).
310        * start/Makefile.am: Remove all-local: $(ARCH).
311        * startup/Makefile.am: Remove all-local: $(ARCH).
312        * wrapup/Makefile.am: Remove all-local: $(ARCH).
313
3142003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
315
316        * Makefile.am: Merge-in include/Makefile.am.
317        Reflect changes to bsp.am.
318        * include/Makefile.am: Remove.
319        * configure.ac: Reflect changes above.
320
3212003-09-04      Joel Sherrill <joel@OARcorp.com>
322
323        * clock/ckinit.c, console/console.c, include/bsp.h, include/coverhd.h,
324        include/ramdisk.h, start/start.S, startup/bspstart.c,
325        startup/hw_init.c, startup/linkcmds, startup/linkcmds-le.coff,
326        timer/timer.c, tools/runtest.in: URL for license changed.
327
3282003-08-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
329
330        * Makefile.am: Add tools to SUBDIRS.
331        * configure.ac: Add RTEMS_CONFIG_BUILD_SUBDIRS(tools).
332
3332003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
334
335        * Makefile.am: Reflect having moved aclocal/.
336
3372003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
338
339        * Makefile.am: Reflect having moved automake/.
340        * clock/Makefile.am: Reflect having moved automake/.
341        * console/Makefile.am: Reflect having moved automake/.
342        * include/Makefile.am: Reflect having moved automake/.
343        * start/Makefile.am: Reflect having moved automake/.
344        * startup/Makefile.am: Reflect having moved automake/.
345        * timer/Makefile.am: Reflect having moved automake/.
346        * tools/Makefile.am: Reflect having moved automake/.
347        * wrapup/Makefile.am: Reflect having moved automake/.
348
3492003-08-14      Joel Sherrill <joel@OARcorp.com>
350
351        * tools/runtest: Add fileio to list of interactive tests.
352
3532003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
354
355        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
356
3572003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
358
359        PR 445/bsps
360        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
361        Remove cpp, old_cpp (now unused).
362
3632003-06-13      Joel Sherrill <joel@OARcorp.com>
364
365        * console/console.c, startup/linkcmds: Removed warnings.
366
3672003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
368
369        * configure.ac: Remove AC_CONFIG_AUX_DIR.
370
3712003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
372
373        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
374
3752003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
376
377        * configure.ac: AC_PREREQ(2.57).
378
3792003-01-28      Joel Sherrill <joel@OARcorp.com>
380
381        * startup/Makefile.am, startup/linkcmds, startup/linkcmds-le,
382        startup/linkcmds-le.coff: Fix to work around truncated section names.
383
3842003-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * wrapup/Makefile.am: Fix typo in CPU_PIECES handling.
387
3882003-01-20      Joel Sherrill <joel@OARcorp.com>
389
390        * startup/linkcmds*: Add FreeBSD sysctl() sections.
391
3922003-01-20      Joel Sherrill <joel@OARcorp.com>
393
394        * startup/linkcmds-le, startup/linkcmds-le.coff: Add FreeBSD sysctl()
395        sections.
396
3972003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
398
399        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
400
4012003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
402
403        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
404        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
405        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
406        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
407        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
408
4092002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
410
411        * start/Makefile.am: Use install-data-local to install startfile.
412
4132002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
414
415        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
416
4172002-11-07      Joel Sherrill <joel@OARcorp.com>
418
419        * startup/linkcmds: Include all .rodata* sections.
420
4212002-11-01      Joel Sherrill <joel@OARcorp.com>
422
423        * clock/ckinit.c, console/console.c: Removed warnings.
424
4252002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
426
427        * .cvsignore: Reformat.
428        Add autom4te*cache.
429        Remove autom4te.cache.
430
4312002-09-14      Joel Sherrill <joel@OARcorp.com>
432
433        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
434        of all calls to bsp_libc_init() resulted in some cleanup here.
435
4362002-08-21      Joel Sherrill <joel@OARcorp.com>
437
438        * bsp_specs: Added support for -nostdlibs.
439
4402002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
443
4442002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
445
446        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
447        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
448        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
449        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
450        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
451
4522002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
453
454        * start/Makefile.am: Eliminate PGMS.
455        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
456
4572002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
458
459        * startup/Makefile.am: Add bsplib_DATA = linkcmds linkcmds-le.
460
4612002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
462
463        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
464        Remove $(OBJS) from all-local.
465
4662002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
467
468        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
469
4702001-05-09      Joel Sherrill <joel@OARcorp.com>
471
472        * startup/linkcmds: In support of gcc 3.1, added one of more
473        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
474        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
475        and direction of segments to memory regions may also have been
476        addressed.  This was a sweep across all BSPs.
477 
4782002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * configure.ac:
481        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
482        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
483        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
484        * Makefile.am: Remove AUTOMAKE_OPTIONS.
485        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
486        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
487        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
488        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
489        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
490        * tools/Makefile.am: Remove AUTOMAKE_OPTIONS.
491        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
492
4932001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
496
4972001-10-26      Alexandra Kossovsky <sasha@oktet.ru>
498
499        * tools: New subdirectory.
500        * tools/Makefile.am, tools/runtest: New files.
501
5022001-10-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
503
504        * configure.ac: Added support for START_HW_INIT.
505        * console/Makefile.am: Removed VPATH.
506        * include/Makefile.am: Added missing ramdisk.h to include_HEADERS.
507        * startup/linkcmds: Do not force output format to coff-sh.
508        * startup/linkcmds-le: Comment out force of output format and add
509        comment questioning need to have special linkcmds for little endian.
510        * wrapup/Makefile.am: Add ramdisk to list of BSP_PIECES.
511
5122001-10-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
513
514        * configure.ac: Add bspopts.h; Add CPU_CLOCK_RATE_HZ.
515        * startup/bspstart.c: Replace HZ with CPU_CLOCK_RATE_HZ.
516        * include/.cvsignore: Add stamp-h* bspopts.h*
517        * include/bsp.h: Add bspopts.h.
518
5192001-10-11      Alexandra Kossovsky <sasha@oktet.ru>
520
521        * clock/Makefile.am, clock/ckinit.c, clock/.cvsignore, Makefile.am,
522        README, bsp_specs, console/Makefile.am, console/console.c,
523        console/.cvsignore, include/Makefile.am, include/bsp.h,
524        include/coverhd.h, include/syscall.h, include/ramdisk.h,
525        include/.cvsignore, start/Makefile.am, start/start.S,
526        start/.cvsignore, startup/Makefile.am, startup/bspstart.c,
527        startup/hw_init.c, startup/linkcmds, startup/linkcmds-le,
528        startup/linkcmds-le.coff, startup/.cvsignore, timer/Makefile.am,
529        timer/timer.c, timer/.cvsignore, wrapup/Makefile.am, wrapup/.cvsignore,
530        configure.ac, .cvsignore, ChangeLog:  New files. 
531        Reviewed and updated to latest automake and autoconf standards
532        by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.
533
Note: See TracBrowser for help on using the repository browser.