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

4.104.115
Last change on this file since 284ed06a was 284ed06a, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 21:35:23

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

  • Makefile.am, startup/linkcmds: Use top level shared bsp_get_work_area() implementation.
  • startup/bspgetworkarea.c: Removed.
  • Property mode set to 100644
File size: 23.0 KB
RevLine 
[284ed06a]12008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am, startup/linkcmds: Use top level shared
4        bsp_get_work_area() implementation.
5        * startup/bspgetworkarea.c: Removed.
6
[0f707111]72008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
8
9        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Add
10        use of bsp_get_work_area() in its own file and rely on BSP Framework
11        to perform more initialization.
12        * startup/bspgetworkarea.c: New file.
13
[4909a30]142008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
15
16        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
17        phase, all prototypes were removed from bsp.h and empty
18        implementations were removed and made to use the shared stub.
19
[d7471169]202008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
21
22        * irq/irq.c, startup/bspstart.c: Convert to bool.
23
[ce53040]242008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
25
26        * clock/p_clock.c, irq/irq.c, irq/irq_init.c, vectors/vectors_init.c:
27        Add missing prototypes.
28
[aa058378]292008-08-01      Sebastian Huber <sebastian.huber@embedded-brains.de>
30
31        * start/start.S: Clear environment pointer for bootcard.
32
[dde1fedb]332008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
34
35        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
36        Framework to ask the BSP where it has memory for the RTEMS Workspace
37        and C Program Heap. These collectively are referred to as work area.
38        If the BSP supports this, then it does not have to include code to
39        split the available memory between the two areas. This reduces the
40        amount of code in the BSP specific bspstart.c file. Additionally, the
41        shared framework can initialize the C Library, call
42        rtems_debug_enable(), and dirty the work area memory. Until most/all
43        BSPs support this new capability, if the BSP supports this, it should
44        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
45        When the transition is complete, this autoconf macro can be removed.
46
[42bf1b9]472008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
48
49        * irq/irq.c:
50        make sure, that the masking operations in
51        ICTL and MSR are executed in order
52
[1d0ee80e]532008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
54
55        * Makefile.am: Rework to avoid .rel files.
56
[6ea100c1]572008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
58
59        * startup/bspstart.c: Refactored and renamed initialization routines to
60        rtems_initialize_data_structures, rtems_initialize_before_drivers,
61        rtems_initialize_device_drivers, and
62        rtems_initialize_start_multitasking. This opened the sequence up so
63        that bootcard() could provide a more robust and flexible framework
64        which is easier to explain and understand. This also lays the
65        groundwork for sharing the division of available memory between the
66        RTEMS workspace and heap and the C library initialization across all
67        BSPs.
68
[c053657]692008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
70
71        * startup/bspstart.c: Remove all references to
72        console_reserve_resources and termios_reserve_resources.
73
[d1f57b5]742008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
75
76        * startup/linkcmds: Add wildcard to gcc_except_table section so
77        programs compiled with gcc 4.3.x can link.
78
[4130d8e2]792007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
80
81        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
82        Configuration Table. Use the RTEMS provided accessor macros to obtain
83        configuration fields.
84
[cafa2c5]852007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
86
87        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
88        Configuration Table. Eliminate CPU Table from all ports. Delete
89        references to CPU Table in all forms.
90
[558bc25]912007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
92
93        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
94        Table fields to the Configuration Table. This included
95        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
96        do_zero_of_workspace, extra_mpci_receive_server_stack,
97        stack_allocate_hook, and stack_free_hook. As a side-effect of this
98        effort some multiprocessing code was made conditional and some style
99        clean up occurred.
100
[a045c9d]1012007-11-30      Till Straumann <strauman@slac.stanford.edu>
102
103        * irq/irq.h, irq/irq_init.c: Removed the definition
104        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
105        initialize the irqBase member of the rtems_irq_global_settings
106        struct. However, irqBase is an rtems_irq_symbolic_name,
107        so using BSP_LOWEST_OFFSET is more appropriate.
108
[07e9642c]1092007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
110
111        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
112        Table. They have been replaced with variables named bsp_XXX as
113        needed.
114
[ec1d0b9d]1152007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
116
117        PR 1257/bsps
118        * irq/irq.c: Code outside of cpukit should use the public API for
119        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
120        public API and directly accessing _CPU_ISR_Disable and
121        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
122        directive which could lead to problems. This patch also changes the
123        type of the variable passed into these routines and addresses minor
124        style issues.
125
[185da08]1262007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
127
128        * vectors/vectors_init.c, irq/irq_init.c:
129        adapted to shared exception code
130
1312007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
132
133        * Makefile.am: adapted to shared exception code
134
[2679eb9d]1352007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
136
137        * bsp_specs: Remove qrtems_debug.
138
[35439f37]1392007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
140
141        * bsp_specs: Remove lib (Now expected to exist in GCC).
142
[bb2c924]1432006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
144
145        * network/if_hdlcsubr.h: Remove K'n'R macros.
146        * network/network.c: Use ioctl_command_t as arg to ioctl functions.
147
[fcb0cd46]1482006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
149
150        * configure.ac: New BUG-REPORT address.
151
[aa4369c]1522006-11-15      Joel Sherrill <joel@OARcorp.com>
153
154        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
155        file and simplified initialization.
156
[57357d9]1572006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
158
159        * Makefile.am: Remove superfluous -DASM.
160
[754610f]1612006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
162
163        * configure.ac: Require autoconf-2.60. Require automake-1.10.
164
[417fca76]1652006-08-09      Joel Sherrill <joel@OARcorp.com>
166
167        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
168
[bd86290d]1692006-03-08      Joel Sherrill <joel@OARcorp.com>
170
171        * startup/linkcmds: Add .gnu.linkonce.b.* section.
172
[4217b96]1732006-02-08      Joel Sherrill <joel@OARcorp.com>
174
175        * startup/linkcmds: Add sections required by newer gcc versions.
176
[73733dc]1772006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
178
179        * configure.ac: Remove explicit ampolish3 support (now in
180        RTEMS_BSP_CONFIGURE).
181
[7cc4f59]1822006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
183
184        * configure.ac: Add ampolish3 support.
185        * Makefile.am: Add preinstall.am.
186
[ea63b37]1872006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
188
189        * Makefile.am: Don't include subdirs.am.
190
[384ba756]1912005-10-06      Till Straumann <strauman@slac.stanford.edu>
192
193        PR 833/bsps
194        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
195        the FPU across the user ISR but DONT save/restore the FPU context.
196        Any use of the FPU fron the user handler (e.g., due to GCC
197        optimizations) result in corruption. The fix results in an exception
198        in such cases (user ISR must explicitely save/enable/restore FPU).
199
[240c917]2002005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
201
202        * network/if_hdlcsubr.c, network/network.c: Include <errno.h>
203        instead of <sys/errno.h>.
204
[8d3dd7a4]2052005-05-26      Joel Sherrill <joel@OARcorp.com>
206
207        PR 799/bsps
208        * include/bsp.h: Add include of bsp/vectors.h so rdbg.h can be
209        compiled.
210
[34c4852]2112005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
212
213        * include/bsp.h: New header guard.
214
[7068d7ac]2152005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
216
217        * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
218
[bb5c7cf]2192005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
220
221        * Makefile.am: Add -D__BSD_VISIBLE to network_CPPFLAGS.
222
[00d8424e]2232005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
224
225        PR 779/bsp
226        * clock/p_clock.c, irq/irq.c, irq/irq.h, irq/irq_init.c,
227        network/network.c: add parameter to new exception interrupt handlers
228        in powerpc bsps
229
[1899fe4]2302005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
231
232        * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.
233        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
234        CPU_MINIMUM_STACK_FRAME_SIZE.
235
[756f4a4]2362005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
237
238        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
239
[5133bd6]2402005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
241
242        * Makefile.am: Merge-in wrapup/Makefile.am.
243        * wrapup/Makefile.am: Remove.
244        * configure.ac: Reflect changes above.
245
[844609f9]2462005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
247
248        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
249
[3d5f97f]2502005-01-04      Joel Sherrill <joel@OARcorp.com>
251
252        * startup/linkcmds: Remove warnings.
253
[71cbb66]2542005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
255
256        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
257
[6a61cf94]2582004-09-27      Joel Sherrill <joel@OARcorp.com>
259
260        PR 680/bsps
261        * network/if_hdlcsubr.c: Add missing #include <rtems/rtems_bsdnet.h>.
262
[97891e5e]2632004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
264
265        * configure.ac: Require automake > 1.9.
266
[888bc77]2672004-07-25      Joel Sherrill <joel@OARcorp.com>
268
269        * network/network.c: Add include of <sys/errno.h>.
270
[3defec6]2712004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
272
273        PR 610/bsps
274        * Makefile.am: Add include/tm27.h, Cosmetics.
275        * include/tm27.h: Final cosmetics.
276
[62f529f]2772004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
278
279        * include/bsp.h: Split out tmtest27 support.
280        * include/tm27.h: New.
281
[3344730a]2822004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
283
284        PR 613/bsps
285        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
286
[7dd6e8d]2872004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
288
289        PR 614/bsps
290        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
291
[a0ae72e]2922004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
293
294        * irq/irq_asm.S: Include <rtems/asm.h> instead of <asm.h>.
295
[40e9b095]2962004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
297
298        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
299        * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
300        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
301        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
302
[2a832d8]3032004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
304
305        * console/console.c, include/bsp.h, irq/irq.c, network/network.c,
306        startup/bspstart.c: Convert to using c99 fixed size types.
307
[68aef00]3082004-03-03      Joel Sherrill <joel@OARcorp.com>
309
310        * irq/irq.h: Correct typo.
311
[2a7f9a28]3122004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
313
314        * Makefile.am: Reflect changes to bsp.am.
315        Preinstall dist_project_lib*.
316
[6ac101b]3172004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
318
319        * Makefile.am: Reflect changes to bsp.am.
320
[c24d7c84]3212004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
322
323        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
324
[0e2094d]3252004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * wrapup/Makefile.am: Convert to automake-building rules.
328
[d58c0ff]3292004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
330
[0e2094d]331        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
332        irq/Makefile.am, network/Makefile.am, startup/Makefile.am,
333        vectors/Makefile.am. Use automake compilation rules.
334        * clock/Makefile.am, console/Makefile.am, irq/Makefile.am,
335        network/Makefile.am, startup/Makefile.am, vectors/Makefile.am: Remove.
[d58c0ff]336        * configure.ac: Reflect changes above.
337        * wrapup/Makefile: Reflect changes above.
338
[ad1abd3]3392004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
340
341        * Makefile.am: Merge-in start/Makefile.am.
342        * start/Makefile.am: Remove.
343        * configure.ac: Reflect changes above.
344
[84b68f5f]3452004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
346
347        * wrapup/Makefile.am: Reflect changes to
348        ../support/*exception_processing/*.
349
[f3c5a0ec]3502004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
351
352        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
353        Add RTEMS_PROG_CCAS.
354
[283dd510]3552004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * Makefile.am: Add PREINSTALL_DIRS.
358        * irq/Makefile.am: Add PREINSTALL_DIRS.
359        * vectors/Makefile.am: Add PREINSTALL_DIRS.
360        * wrapup/Makefile.am: Reflect changes to libcpu.
361
[a4d7c555]3622004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
365        Add PRE/TMPINSTALL_FILES to CLEANFILES.
366        * irq/Makefile.am: Ditto.
367        * start/Makefile.am: Ditto.
368        * startup/Makefile.am: Ditto.
369        * vectors/Makefile.am: Ditto.
370
[6411947]3712004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
372
373        * wrapup/Makefile.am: Eliminate $(LIB).
374        Use noinst_DATA to trigger building libbsp.a.
375
[e9b6f41]3762003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * clock/Makefile.am: Eliminate VPATH.
379        * console/Makefile.am: Eliminate VPATH.
380        * irq/Makefile.am: Eliminate VPATH.
381        * network/Makefile.am: Eliminate VPATH.
382        * startup/Makefile.am: Eliminate VPATH.
383
[2aa3cd6]3842003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        PR 545/bsps
387        * startup/setvec.c: Removed.
388
[ce0f13ef]3892003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
390
391        * startup/linkcmds: Remove SEARCH_DIR.
392
[b35414a]3932003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
394
395        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
396        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
397
[a802f6f]3982003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
399
400        * irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
401        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
402        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
403        * vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
404
[810720b6]4052003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
406
407        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
408
[4b27d816]4092003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
410
411        * start/Makefile.am: Misc cleanups and fixes.
412        * startup/Makefile.am: Misc cleanups and fixes.
413        * startup/linkcmds: Preparations for gcc-3.3.x.
414        * wrapup/Makefile.am: Misc cleanups and fixes.
415
[2cd1ba5]4162003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * startup/Makefile.am: Remove S_FILES (Unused).
419        * vectors/Makefile.am: Cosmetics.
420        * wrapup/Makefile.am: Cosmetics.
421
[0896b3c5]4222003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * Makefile.am: Add preinstallation dirstamp support.
425        * clock/Makefile.am: Cosmetics.
426        * console/Makefile.am: Cosmetics.
427        * irq/Makefile.am: Add preinstallation dirstamp support.
428        * network/Makefile.am: Cosmetics.
429        * startup/Makefile.am: Cosmetics.
430        * vectors/Makefile.am: Add preinstallation dirstamp support.
431        * wrapup/Makefile.am: Cosmetics.
432
[07c03cb]4332003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
434
435        * clock/Makefile.am: Remove all-local: $(ARCH).
436        * console/Makefile.am: Remove all-local: $(ARCH).
437        * irq/Makefile.am: Remove all-local: $(ARCH).
438        * network/Makefile.am: Remove all-local: $(ARCH).
439        * start/Makefile.am: Remove all-local: $(ARCH).
440        * startup/Makefile.am: Remove all-local: $(ARCH).
441        * vectors/Makefile.am: Remove all-local: $(ARCH).
442        * wrapup/Makefile.am: Remove all-local: $(ARCH).
443
[ae1f243]4442003-10-22      Joel Sherrill <joel@OARcorp.com>
445
446        PR 510/bsps
447        * irq/irq.h: Add extern C wrapper.
448
[db0b369]4492003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * Makefile.am: Merge-in include/Makefile.am.
452        Reflect changes to bsp.am.
453        * include/Makefile.am: Remove.
454        * configure.ac: Reflect changes above.
455
[478277a]4562003-09-04      Joel Sherrill <joel@OARcorp.com>
457
458        * clock/p_clock.c, include/bsp.h, include/coverhd.h, irq/irq.c,
459        irq/irq.h, irq/irq_asm.S, irq/irq_init.c, network/if_hdlcsubr.h,
460        startup/bspstart.c, startup/setvec.c, vectors/vectors.h,
461        vectors/vectors_init.c: URL for license changed.
462
[f6c04411]4632003-08-20      Joel Sherrill <joel@OARcorp.com>
464
465        * clock/p_clock.c, network/if_hdlcsubr.h: Correct copyright statements.
466
[fe8bc62f]4672003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * Makefile.am: Reflect having moved aclocal/.
470
[7b7b2e82]4712003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
472
[c483a4e]473        * Makefile.am: Reflect having moved automake/.
474        * clock/Makefile.am: Reflect having moved automake/.
475        * console/Makefile.am: Reflect having moved automake/.
476        * include/Makefile.am: Reflect having moved automake/.
477        * irq/Makefile.am: Reflect having moved automake/.
478        * network/Makefile.am: Reflect having moved automake/.
479        * start/Makefile.am: Reflect having moved automake/.
480        * startup/Makefile.am: Reflect having moved automake/.
481        * vectors/Makefile.am: Reflect having moved automake/.
482        * wrapup/Makefile.am: Reflect having moved automake/.
[7b7b2e82]483
[7dcc3fe]4842003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
485
486        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
487
[d266acd2]4882003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
489
[75fcb394]490        PR 445/bsps
[d266acd2]491        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
492        Remove cpp, old_cpp (now unused).
493
[e900940]4942003-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
495
496        * network/if_hdlcsubr.c: Use memcopy instead of bcmp,
497        Use memcmp instead of bcmp.
498
[7b59de1c]4992003-07-18      Till Straumann <strauman@slac.stanford.edu>
500
501        PR 288/rtems
502        * startup/bspstart.c: _ISR_Nest_level is now properly maintained.
503
[7a97f26]5042003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
505
506        * configure.ac: Remove AC_CONFIG_AUX_DIR.
507
[ccd81b60]5082003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
509
510        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
511
[9b5c258]5122003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
513
514        * configure.ac: AC_PREREQ(2.57).
515
[7b0c547a]5162003-01-20      Joel Sherrill <joel@OARcorp.com>
517
518        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
519
[cf40ab9b]5202002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
521
522        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
523        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
524        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
525        Remove SORDID_HACK. Eliminate *_O_FILES.
526        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
527        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
528        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
529        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
530
[59a01a6e]5312002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
532
533        * start/Makefile.am: Use install-data-local to install startfile.
534
[8361b50]5352002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
536
537        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
538
[a3ed176c]5392002-11-04      Joel Sherrill <joel@OARcorp.com>
540
541        * irq/irq.c: Removed warnings.
542
[37a25cf]5432002-11-04      Joel Sherrill <joel@OARcorp.com>
544
545        * console/console.c, irq/irq.c, network/if_hdlcsubr.c,
546        network/if_hdlcsubr.h, network/network.c, vectors/vectors_init.c:
547        Removed warnings.
548
[89fcd5ca]5492002-11-01      Joel Sherrill <joel@OARcorp.com>
550
551        * irq/irq.c, irq/irq_asm.S, startup/bspstart.c: Fixed typos and
552        removed warnings.
553
[d36d3a3]5542002-11-01      Andy Dachs <a.dachs@sstl.co.uk>
555
556        * irq/irq.c, irq/irq_asm.S, irq/irq_init.c: Per PR288, add support
557        for _ISR_Nest_level.
558
[8730f45]5592002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
560
561        * .cvsignore: Reformat.
562        Add autom4te*cache.
563        Remove autom4te.cache.
564
[a2ae30c2]5652002-08-21      Joel Sherrill <joel@OARcorp.com>
566
567        * bsp_specs: Added support for -nostdlibs.
568
[1f5a123a]5692002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
570
571        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
572        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
573        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
574        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
575        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
576        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
577        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
578        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
579
[b9288fb1]5802002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
581
582        * start/Makefile.am: Eliminate PGM.
583        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
584
[f1feebb]5852002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
586
587        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
588
[445c0a0]5892002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
590
591        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
592        Remove $(OBJS) from all-local.
593
[80defac]5942002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
595
596        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
597
[85c92574]5982001-05-09      Joel Sherrill <joel@OARcorp.com>
599
600        * startup/linkcmds: In support of gcc 3.1, added one of more
601        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
602        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
603        and direction of segments to memory regions may also have been
604        addressed.  This was a sweep across all BSPs.
605 
[1628414]6062002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
607
608        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
609        * irq/irq_asm.S: Ditto.
610        * network/network.c: Include <rtems/bspIo.h>.
611        * start/start.S: Include <asm.h> instead of "asm.h".
612        * vectors/vectors.S: Reflect changes to <rtems/score/cpu.h>.
613
[fb19f111]6142002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
615
616        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
617
[e77a00a5]6182002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
619
620        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
621
[59e54c7]6222002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
623
624        * configure.ac:
625        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
626        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
627        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
628        * Makefile.am: Remove AUTOMAKE_OPTIONS.
629        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
630        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
631        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
632        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
633        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
634        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
635        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
636        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
637
[eccd3a3]6382002-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
639
640        * configure.ac: Add RTEMS_CHECK_NETWORKING.
641
[0bebe52]6422002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
643
644        * clock/p_clock.c: Include rtems/bspIo.h instead of bspIo.h.
645        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
646        * irq/irq_init.c: Include rtems/bspIo.h instead of bspIo.h.
647
[9e1ae79]6482001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
649
650        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
651
[14e1c414]6522001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
653
654        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
655        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
656
[36024a6c]6572001-11-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
658
659        * Makefile.am: Add @exceptions@ to SUBDIRS.
660        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
661        make/custom/mpc8260ads.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
662        * include/Makefile.am: Convert PREINSTALL_FILES to
663        TMPINSTALL_FILES, include force-preinstall.am.
664        * wrapup/Makefile.am: Apply @exceptions@.
665
[922eb07]6662001-10-29      Joel Sherrill <joel@OARcorp.com>
667
668        * .cvsignore: Add more entries.
669
[d6a2391f]6702001-10-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
671
672        * aclocal.m4: Removed.  Should not have been in CVS.
673
[22afde51]6742001-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
675
676        * aclocal.m4: Regenerated.
677        * configure.ac, include/Makefile.am, irq/Makefile.am,
678        vectors/Makefile.am: Updated to autoconf 2.52.
679        * include/.cvsignore: Added newly generated files.
680        * include/bsp.h: Added include of bspopts.h.
681
[e084576]6822001-10-22      Joel Sherrill <joel@OARcorp.com>
683
684        * .cvsignore, configure.ac, configure.in, console/.cvsignore,
685        include/.cvsignore, network/.cvsignore, start/.cvsignore,
686        startup/.cvsignore, wrapup/.cvsignore: Added .cvsignore
687        files and other files missed in previous commit.
688
[5edbffe]68901-10-22        Andy Dachs <a.dachs@sstl.co.uk>
690
691        * mpc8260ads added as new BSP.  tm27 reported not to run
692        at this time.
693        * ChangeLog, Makefile.am, README, aclocal.m4, bsp_specs,
694        clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, configure.in,
695        console/Makefile.am, console/console.c, include/Makefile.am,
696        include/bsp.h, include/coverhd.h, irq/.cvsignore, irq/Makefile.am,
697        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
698        network/Makefile.am, network/README, network/if_hdlcsubr.c,
699        network/if_hdlcsubr.h, network/network.c, start/Makefile.am,
700        start/start.S, startup/Makefile.am, startup/bspstart.c,
701        startup/cpuinit.c, startup/linkcmds, startup/setvec.c, times,
702        vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S,
703        vectors/vectors.h, vectors/vectors_init.c, wrapup/Makefile.am:
704        New files.
705
Note: See TracBrowser for help on using the repository browser.