source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/ChangeLog @ fc472c9

4.104.115
Last change on this file since fc472c9 was fc472c9, checked in by Joel Sherrill <joel.sherrill@…>, on 08/26/09 at 13:31:40

2009-08-26 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, startup/bspstart.c: Rename BSP specific idle thread to bsp_idle_thread and split into its own file.
  • startup/bspidle.c: New file.
  • Property mode set to 100644
File size: 25.5 KB
Line 
12009-08-26      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am, startup/bspstart.c: Rename BSP specific idle thread to
4        bsp_idle_thread and split into its own file.
5        * startup/bspidle.c: New file.
6
72009-08-10      Joel Sherrill <joel.sherrill@oarcorp.com>
8
9        * network/network.c: Disable use of simple vectored interrupt install
10        until updated and this can be removed.
11
122009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
13
14        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
15        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
16        have the same options.
17
182009-04-28      Chris Johns <chrisj@rtems.org>
19
20        * start/start.S: Update for boot_card command line change.
21
222009-03-12      Joel Sherrill <joel.sherrill@OARcorp.com>
23
24        PR 1385/cpukit
25        * irq/irq_asm.S: When the type rtems_boolean was switched to the C99
26        bool, the size changed from 4 bytes to 1 byte. The interrupt
27        dispatching code accesses two boolean variables for scheduling
28        purposes and the assembly implementations of this code did not get
29        updated.
30
312009-02-12      Joel Sherrill <joel.sherrill@oarcorp.com>
32
33        * startup/bspstart.c: Change prototype of IDLE thread to consistently
34        return void * and take a uintptr_t argument.
35
362008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
37
38        * bsp_specs: Move -e start from *link to *startfile to avoid warning
39        for undefined entry symbol when linking relocatables with binutils
40        2.19.
41
422008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
43
44        * Makefile.am, preinstall.am: Use shared stub coverhd.h
45        * include/coverhd.h: Removed.
46
472008-09-30      Joel Sherrill <joel.sherrill@oarcorp.com>
48
49        * include/tm27.h: Now links all tests.
50
512008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
52
53        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
54        of building libbspstart.a, using automake-rules.
55
562008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
57
58        * Makefile.am: Eliminate *_SOURCES.
59
602008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
61
62        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
63        components.
64
652008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
66
67        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
68
692008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
70
71        * configure.ac: Make letting boot_card() handle work area allocation
72        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
73        BSP_BOOTCARD_OPTIONS.
74
752008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
76
77        * include/bsp.h: Remove unnecessary boilerplate comments.
78
792008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
80
81        * include/bsp.h: Eliminate definitions of BSP_LIBIO_MAX_FDS since this
82        is NOT used anywhere.
83
842008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
85
86        * Makefile.am, startup/linkcmds: Use top level shared
87        bsp_get_work_area() implementation.
88        * startup/bspgetworkarea.c: Removed.
89
902008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
91
92        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Add
93        use of bsp_get_work_area() in its own file and rely on BSP Framework
94        to perform more initialization.
95        * startup/bspgetworkarea.c: New file.
96
972008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
98
99        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
100        phase, all prototypes were removed from bsp.h and empty
101        implementations were removed and made to use the shared stub.
102
1032008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
104
105        * irq/irq.c, startup/bspstart.c: Convert to bool.
106
1072008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
108
109        * clock/p_clock.c, irq/irq.c, irq/irq_init.c, vectors/vectors_init.c:
110        Add missing prototypes.
111
1122008-08-01      Sebastian Huber <sebastian.huber@embedded-brains.de>
113
114        * start/start.S: Clear environment pointer for bootcard.
115
1162008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
117
118        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
119        Framework to ask the BSP where it has memory for the RTEMS Workspace
120        and C Program Heap. These collectively are referred to as work area.
121        If the BSP supports this, then it does not have to include code to
122        split the available memory between the two areas. This reduces the
123        amount of code in the BSP specific bspstart.c file. Additionally, the
124        shared framework can initialize the C Library, call
125        rtems_debug_enable(), and dirty the work area memory. Until most/all
126        BSPs support this new capability, if the BSP supports this, it should
127        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
128        When the transition is complete, this autoconf macro can be removed.
129
1302008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
131
132        * irq/irq.c:
133        make sure, that the masking operations in
134        ICTL and MSR are executed in order
135
1362008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
137
138        * Makefile.am: Rework to avoid .rel files.
139
1402008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
141
142        * startup/bspstart.c: Refactored and renamed initialization routines to
143        rtems_initialize_data_structures, rtems_initialize_before_drivers,
144        rtems_initialize_device_drivers, and
145        rtems_initialize_start_multitasking. This opened the sequence up so
146        that bootcard() could provide a more robust and flexible framework
147        which is easier to explain and understand. This also lays the
148        groundwork for sharing the division of available memory between the
149        RTEMS workspace and heap and the C library initialization across all
150        BSPs.
151
1522008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
153
154        * startup/bspstart.c: Remove all references to
155        console_reserve_resources and termios_reserve_resources.
156
1572008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
158
159        * startup/linkcmds: Add wildcard to gcc_except_table section so
160        programs compiled with gcc 4.3.x can link.
161
1622007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
163
164        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
165        Configuration Table. Use the RTEMS provided accessor macros to obtain
166        configuration fields.
167
1682007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
169
170        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
171        Configuration Table. Eliminate CPU Table from all ports. Delete
172        references to CPU Table in all forms.
173
1742007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
175
176        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
177        Table fields to the Configuration Table. This included
178        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
179        do_zero_of_workspace, extra_mpci_receive_server_stack,
180        stack_allocate_hook, and stack_free_hook. As a side-effect of this
181        effort some multiprocessing code was made conditional and some style
182        clean up occurred.
183
1842007-11-30      Till Straumann <strauman@slac.stanford.edu>
185
186        * irq/irq.h, irq/irq_init.c: Removed the definition
187        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
188        initialize the irqBase member of the rtems_irq_global_settings
189        struct. However, irqBase is an rtems_irq_symbolic_name,
190        so using BSP_LOWEST_OFFSET is more appropriate.
191
1922007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
193
194        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
195        Table. They have been replaced with variables named bsp_XXX as
196        needed.
197
1982007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
199
200        PR 1257/bsps
201        * irq/irq.c: Code outside of cpukit should use the public API for
202        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
203        public API and directly accessing _CPU_ISR_Disable and
204        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
205        directive which could lead to problems. This patch also changes the
206        type of the variable passed into these routines and addresses minor
207        style issues.
208
2092007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
210
211        * vectors/vectors_init.c, irq/irq_init.c:
212        adapted to shared exception code
213
2142007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
215
216        * Makefile.am: adapted to shared exception code
217
2182007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
219
220        * bsp_specs: Remove qrtems_debug.
221
2222007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
223
224        * bsp_specs: Remove lib (Now expected to exist in GCC).
225
2262006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
227
228        * network/if_hdlcsubr.h: Remove K'n'R macros.
229        * network/network.c: Use ioctl_command_t as arg to ioctl functions.
230
2312006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
232
233        * configure.ac: New BUG-REPORT address.
234
2352006-11-15      Joel Sherrill <joel@OARcorp.com>
236
237        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
238        file and simplified initialization.
239
2402006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
241
242        * Makefile.am: Remove superfluous -DASM.
243
2442006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
245
246        * configure.ac: Require autoconf-2.60. Require automake-1.10.
247
2482006-08-09      Joel Sherrill <joel@OARcorp.com>
249
250        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
251
2522006-03-08      Joel Sherrill <joel@OARcorp.com>
253
254        * startup/linkcmds: Add .gnu.linkonce.b.* section.
255
2562006-02-08      Joel Sherrill <joel@OARcorp.com>
257
258        * startup/linkcmds: Add sections required by newer gcc versions.
259
2602006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
261
262        * configure.ac: Remove explicit ampolish3 support (now in
263        RTEMS_BSP_CONFIGURE).
264
2652006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
266
267        * configure.ac: Add ampolish3 support.
268        * Makefile.am: Add preinstall.am.
269
2702006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
271
272        * Makefile.am: Don't include subdirs.am.
273
2742005-10-06      Till Straumann <strauman@slac.stanford.edu>
275
276        PR 833/bsps
277        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
278        the FPU across the user ISR but DONT save/restore the FPU context.
279        Any use of the FPU fron the user handler (e.g., due to GCC
280        optimizations) result in corruption. The fix results in an exception
281        in such cases (user ISR must explicitely save/enable/restore FPU).
282
2832005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
284
285        * network/if_hdlcsubr.c, network/network.c: Include <errno.h>
286        instead of <sys/errno.h>.
287
2882005-05-26      Joel Sherrill <joel@OARcorp.com>
289
290        PR 799/bsps
291        * include/bsp.h: Add include of bsp/vectors.h so rdbg.h can be
292        compiled.
293
2942005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
295
296        * include/bsp.h: New header guard.
297
2982005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
299
300        * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
301
3022005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
303
304        * Makefile.am: Add -D__BSD_VISIBLE to network_CPPFLAGS.
305
3062005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
307
308        PR 779/bsp
309        * clock/p_clock.c, irq/irq.c, irq/irq.h, irq/irq_init.c,
310        network/network.c: add parameter to new exception interrupt handlers
311        in powerpc bsps
312
3132005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
314
315        * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.
316        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
317        CPU_MINIMUM_STACK_FRAME_SIZE.
318
3192005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
320
321        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
322
3232005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
324
325        * Makefile.am: Merge-in wrapup/Makefile.am.
326        * wrapup/Makefile.am: Remove.
327        * configure.ac: Reflect changes above.
328
3292005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
330
331        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
332
3332005-01-04      Joel Sherrill <joel@OARcorp.com>
334
335        * startup/linkcmds: Remove warnings.
336
3372005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
338
339        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
340
3412004-09-27      Joel Sherrill <joel@OARcorp.com>
342
343        PR 680/bsps
344        * network/if_hdlcsubr.c: Add missing #include <rtems/rtems_bsdnet.h>.
345
3462004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
347
348        * configure.ac: Require automake > 1.9.
349
3502004-07-25      Joel Sherrill <joel@OARcorp.com>
351
352        * network/network.c: Add include of <sys/errno.h>.
353
3542004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
355
356        PR 610/bsps
357        * Makefile.am: Add include/tm27.h, Cosmetics.
358        * include/tm27.h: Final cosmetics.
359
3602004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
361
362        * include/bsp.h: Split out tmtest27 support.
363        * include/tm27.h: New.
364
3652004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
366
367        PR 613/bsps
368        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
369
3702004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
371
372        PR 614/bsps
373        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
374
3752004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
376
377        * irq/irq_asm.S: Include <rtems/asm.h> instead of <asm.h>.
378
3792004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
380
381        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
382        * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
383        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
384        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
385
3862004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
387
388        * console/console.c, include/bsp.h, irq/irq.c, network/network.c,
389        startup/bspstart.c: Convert to using c99 fixed size types.
390
3912004-03-03      Joel Sherrill <joel@OARcorp.com>
392
393        * irq/irq.h: Correct typo.
394
3952004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
396
397        * Makefile.am: Reflect changes to bsp.am.
398        Preinstall dist_project_lib*.
399
4002004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
401
402        * Makefile.am: Reflect changes to bsp.am.
403
4042004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
405
406        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
407
4082004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        * wrapup/Makefile.am: Convert to automake-building rules.
411
4122004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
413
414        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
415        irq/Makefile.am, network/Makefile.am, startup/Makefile.am,
416        vectors/Makefile.am. Use automake compilation rules.
417        * clock/Makefile.am, console/Makefile.am, irq/Makefile.am,
418        network/Makefile.am, startup/Makefile.am, vectors/Makefile.am: Remove.
419        * configure.ac: Reflect changes above.
420        * wrapup/Makefile: Reflect changes above.
421
4222004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * Makefile.am: Merge-in start/Makefile.am.
425        * start/Makefile.am: Remove.
426        * configure.ac: Reflect changes above.
427
4282004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
429
430        * wrapup/Makefile.am: Reflect changes to
431        ../support/*exception_processing/*.
432
4332004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
434
435        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
436        Add RTEMS_PROG_CCAS.
437
4382004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
439
440        * Makefile.am: Add PREINSTALL_DIRS.
441        * irq/Makefile.am: Add PREINSTALL_DIRS.
442        * vectors/Makefile.am: Add PREINSTALL_DIRS.
443        * wrapup/Makefile.am: Reflect changes to libcpu.
444
4452004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
446
447        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
448        Add PRE/TMPINSTALL_FILES to CLEANFILES.
449        * irq/Makefile.am: Ditto.
450        * start/Makefile.am: Ditto.
451        * startup/Makefile.am: Ditto.
452        * vectors/Makefile.am: Ditto.
453
4542004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
455
456        * wrapup/Makefile.am: Eliminate $(LIB).
457        Use noinst_DATA to trigger building libbsp.a.
458
4592003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
460
461        * clock/Makefile.am: Eliminate VPATH.
462        * console/Makefile.am: Eliminate VPATH.
463        * irq/Makefile.am: Eliminate VPATH.
464        * network/Makefile.am: Eliminate VPATH.
465        * startup/Makefile.am: Eliminate VPATH.
466
4672003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        PR 545/bsps
470        * startup/setvec.c: Removed.
471
4722003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
473
474        * startup/linkcmds: Remove SEARCH_DIR.
475
4762003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
477
478        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
479        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
480
4812003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
482
483        * irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
484        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
485        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
486        * vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
487
4882003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
489
490        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
491
4922003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
493
494        * start/Makefile.am: Misc cleanups and fixes.
495        * startup/Makefile.am: Misc cleanups and fixes.
496        * startup/linkcmds: Preparations for gcc-3.3.x.
497        * wrapup/Makefile.am: Misc cleanups and fixes.
498
4992003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * startup/Makefile.am: Remove S_FILES (Unused).
502        * vectors/Makefile.am: Cosmetics.
503        * wrapup/Makefile.am: Cosmetics.
504
5052003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
506
507        * Makefile.am: Add preinstallation dirstamp support.
508        * clock/Makefile.am: Cosmetics.
509        * console/Makefile.am: Cosmetics.
510        * irq/Makefile.am: Add preinstallation dirstamp support.
511        * network/Makefile.am: Cosmetics.
512        * startup/Makefile.am: Cosmetics.
513        * vectors/Makefile.am: Add preinstallation dirstamp support.
514        * wrapup/Makefile.am: Cosmetics.
515
5162003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
517
518        * clock/Makefile.am: Remove all-local: $(ARCH).
519        * console/Makefile.am: Remove all-local: $(ARCH).
520        * irq/Makefile.am: Remove all-local: $(ARCH).
521        * network/Makefile.am: Remove all-local: $(ARCH).
522        * start/Makefile.am: Remove all-local: $(ARCH).
523        * startup/Makefile.am: Remove all-local: $(ARCH).
524        * vectors/Makefile.am: Remove all-local: $(ARCH).
525        * wrapup/Makefile.am: Remove all-local: $(ARCH).
526
5272003-10-22      Joel Sherrill <joel@OARcorp.com>
528
529        PR 510/bsps
530        * irq/irq.h: Add extern C wrapper.
531
5322003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
533
534        * Makefile.am: Merge-in include/Makefile.am.
535        Reflect changes to bsp.am.
536        * include/Makefile.am: Remove.
537        * configure.ac: Reflect changes above.
538
5392003-09-04      Joel Sherrill <joel@OARcorp.com>
540
541        * clock/p_clock.c, include/bsp.h, include/coverhd.h, irq/irq.c,
542        irq/irq.h, irq/irq_asm.S, irq/irq_init.c, network/if_hdlcsubr.h,
543        startup/bspstart.c, startup/setvec.c, vectors/vectors.h,
544        vectors/vectors_init.c: URL for license changed.
545
5462003-08-20      Joel Sherrill <joel@OARcorp.com>
547
548        * clock/p_clock.c, network/if_hdlcsubr.h: Correct copyright statements.
549
5502003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
551
552        * Makefile.am: Reflect having moved aclocal/.
553
5542003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
555
556        * Makefile.am: Reflect having moved automake/.
557        * clock/Makefile.am: Reflect having moved automake/.
558        * console/Makefile.am: Reflect having moved automake/.
559        * include/Makefile.am: Reflect having moved automake/.
560        * irq/Makefile.am: Reflect having moved automake/.
561        * network/Makefile.am: Reflect having moved automake/.
562        * start/Makefile.am: Reflect having moved automake/.
563        * startup/Makefile.am: Reflect having moved automake/.
564        * vectors/Makefile.am: Reflect having moved automake/.
565        * wrapup/Makefile.am: Reflect having moved automake/.
566
5672003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
568
569        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
570
5712003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
572
573        PR 445/bsps
574        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
575        Remove cpp, old_cpp (now unused).
576
5772003-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
578
579        * network/if_hdlcsubr.c: Use memcopy instead of bcmp,
580        Use memcmp instead of bcmp.
581
5822003-07-18      Till Straumann <strauman@slac.stanford.edu>
583
584        PR 288/rtems
585        * startup/bspstart.c: _ISR_Nest_level is now properly maintained.
586
5872003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
588
589        * configure.ac: Remove AC_CONFIG_AUX_DIR.
590
5912003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
592
593        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
594
5952003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
596
597        * configure.ac: AC_PREREQ(2.57).
598
5992003-01-20      Joel Sherrill <joel@OARcorp.com>
600
601        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
602
6032002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
604
605        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
606        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
607        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
608        Remove SORDID_HACK. Eliminate *_O_FILES.
609        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
610        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
611        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
612        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
613
6142002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
615
616        * start/Makefile.am: Use install-data-local to install startfile.
617
6182002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
619
620        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
621
6222002-11-04      Joel Sherrill <joel@OARcorp.com>
623
624        * irq/irq.c: Removed warnings.
625
6262002-11-04      Joel Sherrill <joel@OARcorp.com>
627
628        * console/console.c, irq/irq.c, network/if_hdlcsubr.c,
629        network/if_hdlcsubr.h, network/network.c, vectors/vectors_init.c:
630        Removed warnings.
631
6322002-11-01      Joel Sherrill <joel@OARcorp.com>
633
634        * irq/irq.c, irq/irq_asm.S, startup/bspstart.c: Fixed typos and
635        removed warnings.
636
6372002-11-01      Andy Dachs <a.dachs@sstl.co.uk>
638
639        * irq/irq.c, irq/irq_asm.S, irq/irq_init.c: Per PR288, add support
640        for _ISR_Nest_level.
641
6422002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
643
644        * .cvsignore: Reformat.
645        Add autom4te*cache.
646        Remove autom4te.cache.
647
6482002-08-21      Joel Sherrill <joel@OARcorp.com>
649
650        * bsp_specs: Added support for -nostdlibs.
651
6522002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
653
654        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
655        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
656        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
657        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
658        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
659        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
660        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
661        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
662
6632002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
664
665        * start/Makefile.am: Eliminate PGM.
666        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
667
6682002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
669
670        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
671
6722002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
673
674        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
675        Remove $(OBJS) from all-local.
676
6772002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
678
679        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
680
6812001-05-09      Joel Sherrill <joel@OARcorp.com>
682
683        * startup/linkcmds: In support of gcc 3.1, added one of more
684        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
685        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
686        and direction of segments to memory regions may also have been
687        addressed.  This was a sweep across all BSPs.
688 
6892002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
690
691        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
692        * irq/irq_asm.S: Ditto.
693        * network/network.c: Include <rtems/bspIo.h>.
694        * start/start.S: Include <asm.h> instead of "asm.h".
695        * vectors/vectors.S: Reflect changes to <rtems/score/cpu.h>.
696
6972002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
698
699        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
700
7012002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
702
703        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
704
7052002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
706
707        * configure.ac:
708        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
709        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
710        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
711        * Makefile.am: Remove AUTOMAKE_OPTIONS.
712        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
713        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
714        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
715        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
716        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
717        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
718        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
719        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
720
7212002-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
722
723        * configure.ac: Add RTEMS_CHECK_NETWORKING.
724
7252002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
726
727        * clock/p_clock.c: Include rtems/bspIo.h instead of bspIo.h.
728        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
729        * irq/irq_init.c: Include rtems/bspIo.h instead of bspIo.h.
730
7312001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
732
733        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
734
7352001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
736
737        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
738        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
739
7402001-11-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
741
742        * Makefile.am: Add @exceptions@ to SUBDIRS.
743        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
744        make/custom/mpc8260ads.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
745        * include/Makefile.am: Convert PREINSTALL_FILES to
746        TMPINSTALL_FILES, include force-preinstall.am.
747        * wrapup/Makefile.am: Apply @exceptions@.
748
7492001-10-29      Joel Sherrill <joel@OARcorp.com>
750
751        * .cvsignore: Add more entries.
752
7532001-10-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
754
755        * aclocal.m4: Removed.  Should not have been in CVS.
756
7572001-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
758
759        * aclocal.m4: Regenerated.
760        * configure.ac, include/Makefile.am, irq/Makefile.am,
761        vectors/Makefile.am: Updated to autoconf 2.52.
762        * include/.cvsignore: Added newly generated files.
763        * include/bsp.h: Added include of bspopts.h.
764
7652001-10-22      Joel Sherrill <joel@OARcorp.com>
766
767        * .cvsignore, configure.ac, configure.in, console/.cvsignore,
768        include/.cvsignore, network/.cvsignore, start/.cvsignore,
769        startup/.cvsignore, wrapup/.cvsignore: Added .cvsignore
770        files and other files missed in previous commit.
771
77201-10-22        Andy Dachs <a.dachs@sstl.co.uk>
773
774        * mpc8260ads added as new BSP.  tm27 reported not to run
775        at this time.
776        * ChangeLog, Makefile.am, README, aclocal.m4, bsp_specs,
777        clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, configure.in,
778        console/Makefile.am, console/console.c, include/Makefile.am,
779        include/bsp.h, include/coverhd.h, irq/.cvsignore, irq/Makefile.am,
780        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
781        network/Makefile.am, network/README, network/if_hdlcsubr.c,
782        network/if_hdlcsubr.h, network/network.c, start/Makefile.am,
783        start/start.S, startup/Makefile.am, startup/bspstart.c,
784        startup/cpuinit.c, startup/linkcmds, startup/setvec.c, times,
785        vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S,
786        vectors/vectors.h, vectors/vectors_init.c, wrapup/Makefile.am:
787        New files.
788
Note: See TracBrowser for help on using the repository browser.