source: rtems/c/src/ChangeLog @ df866c9

4.104.115
Last change on this file since df866c9 was df866c9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/16/09 at 02:45:08

2009-10-16 Ralf Corsepius <ralf.corsepius@…>

  • configure.ac: Remove RTEMS_HOST (unused).
  • Property mode set to 100644
File size: 152.8 KB
Line 
12009-10-16      Ralf Corsepius <ralf.corsepius@rtems.org>
2
3        * configure.ac: Remove RTEMS_HOST (unused).
4        * aclocal/canonical-target-name.m4: Remove RTEMS_HOST (unused).
5
62009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * aclocal/check-custom-bsp.m4: Let _RTEMS_CHECK_CUSTOM_BSP look for
9        *.cfg into c/src/lib/libbsp/<cpu>/<bsp_family>/make/custom.
10
112009-10-14      Ralf Corsépius <ralf.corsepius@rtems.org>
12
13        * aclocal/canonical-target-name.m4, aclocal/check-networking.m4,
14        aclocal/check-posix.m4, aclocal/enable-posix.m4,
15        aclocal/rtems-cpu-subdirs.m4: Remove posix/unix.
16
172009-10-14      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * configure.ac: Rework make/custom/* handling.
20        * aclocal/check-custom-bsp.m4: Change *.cfg handling.
21        * Makefile.am: Remove make/custom/default.cfg-rule.
22
232009-10-13      Sebastian Huber <sebastian.huber@embedded-brains.de>
24
25        * libchip/serial/ns16550.c: Enable interrupts during open to avoid
26        NULL pointer access in interrupt handler.
27
282009-10-09      Sebastian Huber <sebastian.huber@embedded-brains.de>
29
30        * libchip/i2c/spi-sd-card.c, libchip/ide/ata.c: Update for block
31        device API change.
32
332009-10-08      Chris Johns <chrisj@rtems.org>
34
35        * libchip/ide/ata.c, c/src/libchip/ide/ata_internal.h: Remove the
36        multiblock support from the ATA driver. Multiblock at the disk
37        level should not be a global policy as a disk may have more than
38        one partition with different block sizes. An IDE driver could
39        decide to use the feature with DMA but this a driver specific
40        design choice. Fixed bugs relating to variable block sizes and
41        large block transfer.
42        * c/src/libchip/ide/ide_controller.c,
43        c/src/libchip/ide/ide_ctrl_cfg.h, c/src/libchip/ide/ide_ctrl_io.h:
44        Changed the block size to 32bits so blocks of 64K or bigger can be
45        transfered in a single driver call.
46
472009-10-05      Joel Sherrill <joel.sherrill@oarcorp.com>
48
49        * libchip/ide/ata.c: Revert previous change. Not all ARM BSPs use a
50        shared irq.h yet and this breaks a significant number of them.
51
522009-10-01      Joel Sherrill <joel.sherrill@oarcorp.com>
53
54        * libchip/ide/ata.c: Use simple vectored CPU macro to select interrupt
55        model.
56
572009-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
58
59        * libchip/serial/z85c30.c, libchip/serial/ns16550.c,
60        libchip/serial/mc68681.c: Reflect termios_baud_to_number having been
61        renamed to rtems_termios_baud_to_number.
62
632009-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
64
65        * libchip/serial/sersupp.h: Remove termios_baud_to_index,
66        termios_baud_to_number (duplicate prototypes).
67        Add C++-guards.
68        Include rtems/termiostypes.h.
69
702009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
71
72        * aclocal/bsp-configure.m4: Add RTEMS_BSP_BOOTCARD_OPTIONS.
73
742009-08-20      Joel Sherrill <joel.sherrill@OARcorp.com>
75
76        * aclocal/check-networking.m4: Disable TCP/IP on targets without enough
77        physical address to support BSD TCP/IP stack.
78
792009-08-10      Joel Sherrill <joel.sherrill@oarcorp.com>
80
81        * libchip/network/elnk.c: Convert calls to legacy routine
82        rtems_clock_get( RTEMS_CLOCK_GET_xxx, ..) to rtems_clock_get_xxx().
83
842009-08-03      Roger Dahlkvist <ruppe@kth.se>
85
86        * libchip/shmdr/shm_driver.h: nios2 was not accounted for.
87
882009-07-22      Joel Sherrill <joel.sherrill@oarcorp.com>
89
90        * libchip/ide/ata.c: Remove warning.
91
922009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
93
94        * aclocal/bsp-bootcard-options.m4: Rename BSP_BOOTCARD_OPTIONS to
95        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
96        now use the same macros.
97        * aclocal/bsp-bspcleanup-options.m4: New file.
98
992009-07-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
100
101        * libchip/serial/ns16550.c, libchip/serial/ns16550_p.h: Removed
102        obsolete defines and declarations.  Set initial baud during device
103        open.  Fixed interrupt mode.
104
1052009-06-12      Joel Sherrill <joel.sherrill@oarcorp.com>
106
107        * libchip/i2c/spi-sd-card.c, libchip/ide/ata.c: Eliminate using the
108        GNU/Linux specific error numbers EBADRQC and ENOTBLK. Switch to
109        EINVAL and ENOTTY as appropriate.
110
1112009-05-30      Chris Johns <chrisj@rtems.org>
112
113        * c/src/libchip/ide/ata.c: Fixed the bug that ignored slave
114        devices on an IDE bus and cleaned up the initialisation register
115        call.
116
1172009-05-11      Joel Sherrill <joel.sherrill@oarcorp.com>
118
119        * libchip/network/i82586.c: Fix warning in manner suggested by
120        Arnout Vandecappelle <arnout@mind.be> in
121        http://www.rtems.org/pipermail/rtems-users/2009-May/005460.html.
122
1232009-05-06      Joel Sherrill <joel.sherrill@oarcorp.com>
124
125        * libchip/network/if_dc.c: Fixed warnings.
126
1272009-05-03      Joel Sherrill <joel.sherrill@oarcorp.com>
128
129        * libchip/rtc/ds1375.c, libchip/rtc/mc146818a.c: Fix warnings. Reformat
130        as needed.
131
1322009-04-29      Chris Johns <chrisj@rtems.org>
133
134        * libchip/ide/ata.c: Remove a detection test that fails in qemu.
135
136        * libchip/ide/ide_controller.c: Change the status detection and
137        add a message if the transfer fails. There is currently no error
138        handle at the IDE drvier level.
139
1402009-03-12      Daniel Hellstrom <daniel@gaisler.com>
141
142        PR 1392/bsps
143        * libchip/i2c/spi-memdrv.c: SPI Memory driver. Fix but where writes
144        over multiple pages results in extra data being written.
145
1462009-02-27      Gene Smith <gene.smith@siemens.com>
147
148        PR 1356
149        * libchip/i2c/spi-sd-card.c: Added support for high capacity and MMC
150        cards.
151
1522009-02-19      Joel Sherrill <joel.sherrill@oarcorp.com>
153
154        * libchip/network/dec21140.c, libchip/network/elnk.c: Make sure this is
155        enabled on x86.
156
1572009-02-03      Ralf Corsépius <ralf.corsepius@rtems.org>
158
159        * aclocal/bspopts.m4: Quoting cosmetics.
160
1612009-01-21      Sebastian Huber <sebastian.huber@embedded-brains.de>
162
163        * libchip/i2c/spi-sd-card.h, libchip/i2c/spi-sd-card.c: Fixed
164        RTEMS_BLKDEV_CAPABILITIES ioctl which caused invalid multiple block
165        writes.  Fixed integer type in device structure.
166
1672009-01-05      Joel Sherrill <joel.sherrill@oarcorp.com>
168
169        * libchip/serial/ns16550.c: Turn on ns16550_process() for
170        BSP_FEATURE_IRQ_LEGACY case also.
171
1722008-11-23      Sebastian Huber <sebastian.huber@embedded-brains.de>
173
174        * libchip/i2c/spi-sd-card.h, libchip/i2c/spi-sd-card.c: Removed high
175        level LibI2C interface.  Added generic block IO functions.
176
1772008-12-22      Ralf Corsépius <ralf.corsepius@rtems.org>
178
179        * optman/rtems/no-barrier.c, optman/rtems/no-dpmem.c,
180        optman/rtems/no-msg.c, optman/rtems/no-part.c,
181        optman/rtems/no-region.c, optman/rtems/no-rtmon.c,
182        optman/rtems/no-sem.c, optman/rtems/no-timer.c,
183        optman/sapi/no-ext.c, optman/sapi/no-io.c:
184        Revert previous patch (cvs clash with Joel hacking cpukit).
185
1862008-12-22      Ralf Corsépius <ralf.corsepius@rtems.org>
187
188        * aclocal/canonical-target-name.m4: Remove tic4x.
189
1902008-12-22      Ralf Corsépius <ralf.corsepius@rtems.org>
191
192        * libchip/rtc/ds1375.c: Include <errno.h> instead of <sys/errno.h>.
193
1942008-12-22      Ralf Corsépius <ralf.corsepius@rtems.org>
195
196        * optman/rtems/no-barrier.c, optman/rtems/no-dpmem.c,
197        optman/rtems/no-msg.c, optman/rtems/no-part.c,
198        optman/rtems/no-region.c, optman/rtems/no-rtmon.c,
199        optman/rtems/no-sem.c, optman/rtems/no-timer.c,
200        optman/sapi/no-ext.c, optman/sapi/no-io.c:
201        Fix prototypes.
202
2032008-12-18      Joel Sherrill <joel.sherrill@oarcorp.com>
204
205        * libchip/serial/ns16550_p.h: Remove prototype with no implementation.
206
2072008-12-18      Joel Sherrill <joel.sherrill@oarcorp.com>
208
209        * libchip/shmdr/dump.c, libchip/shmdr/init.c, libchip/shmdr/send.c,
210        libchip/shmdr/shm_driver.h: Cleanup and remove variables which
211        duplicated data.
212
2132008-12-17      Joel Sherrill <joel.sherrill@oarcorp.com>
214
215        * optman/sapi/no-ext.c, optman/sapi/no-io.c: Convert SAPI manager and
216        SuperCore Handler initialization routines to directly pull parameters
217        from configuration table.
218
2192008-12-17      Joel Sherrill <joel.sherrill@oarcorp.com>
220
221        * optman/rtems/no-barrier.c, optman/rtems/no-dpmem.c,
222        optman/rtems/no-event.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c,
223        optman/rtems/no-part.c, optman/rtems/no-region.c,
224        optman/rtems/no-rtmon.c, optman/rtems/no-sem.c,
225        optman/rtems/no-signal.c, optman/rtems/no-timer.c: Convert manager
226        initialization routines to directly pull parameters from
227        configuration table. Eliminate empty routines sportted.
228
2292008-12-17      Ralf Corsépius <ralf.corsepius@rtems.org>
230
231        * libchip/serial/ns16550.c: Add CVS-Id. Fix #define mess.
232
2332008-12-16      Joel Sherrill <joel.sherrill@oarcorp.com>
234
235        * libchip/network/i82586.c, libchip/network/smc91111config.h: Eliminate
236        all public use of TOD conversion routines.
237
2382008-12-11      Ralf Corsépius <ralf.corsepius@rtems.org>
239
240        * libchip/network/smc91111config.h:
241        #include <stdint.h> instead of <rtems/stdint.h>.
242
2432008-12-10      Ralf Corsépius <ralf.corsepius@rtems.org>
244
245        * aclocal/prog-cc.m4: Use -r instead of -Wl,-r to build *.rels.
246        * aclocal/rtems-cpu-subdirs.m4: Remove obsolete cpus.
247
2482008-12-04      Jukka Pietarinen <jukka.pietarinen@mrf.fi>
249
250        * aclocal/rtems-cpu-subdirs.m4: Add Lattice Mico32 support.
251
2522008-11-13      Sebastian Huber <sebastian.huber@embedded-brains.de>
253
254        * libchip/serial/ns16550.c: Transmit the character in the polled write
255        function within a critical section for printk() compatibility.
256
2572008-10-02      Sebastian Huber <sebastian.huber@embedded-brains.de>
258
259        * libchip/i2c/spi-sd-card.c: Update for status-checks.h changes.
260
2612008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
262
263        * aclocal/rtems-cpu-subdirs.m4: Add new M32C port.
264
2652008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
266
267        * aclocal/bsp-bootcard-options.m4: Generalize and correct comment.
268
2692008-09-24      Ralf Corsépius <ralf.corsepius@rtems.org>
270
271        * aclocal/bsp-bootcard-options.m4: Fix quoting.
272
2732008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
274
275        * aclocal/bsp-bootcard-options.m4: New file.
276        * aclocal/bsp-bootcards-handles-ram-allocation.m4: Removed.
277
2782008-09-23      Sebastian Huber <sebastian.huber@embedded-brains.de>
279
280        * libchip/serial/ns16550.c: Enable interrupt code only for PowerPC or
281        BSPs that support this feature.
282
2832008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
284
285        * libchip/serial/ns16550.c: Fix typo.
286
2872008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
288
289        * libchip/serial/ns16550.c: Fix typo.
290
2912008-09-22      Joel Sherrill <joel.sherrill@OARcorp.com>
292
293        * libchip/serial/ns16550.c: Add not supported on arm even though it is
294        not simple vectored.
295
2962008-09-22      Joel Sherrill <joel.sherrill@OARcorp.com>
297
298        * libchip/serial/ns16550.c: Not currently supported on architectures
299        with simple vectored interrupt model.
300
3012008-09-22      Ralf Corsépius <ralf.corsepius@rtems.org>
302
303        * aclocal/version.m4: Bump RTEMS_API to 4.10.
304        Bump _RTEMS_VERSION to 4.9.99.0.
305
3062008-09-22      Sebastian Huber <sebastian.huber@embedded-brains.de>
307
308        * libchip/rtc/icm7170.c, libchip/rtc/m48t08.c,
309        c/src/libchip/rtc/rtc.h:  Include required header files.  Some internal
310        functions have now static linkage type.  Added constant qualifier to
311        operations table and read-only function parameters.
312
313        * libchip/serial/ns16550.c, libchip/serial/ns16550_p.h,
314        c/src/libchip/serial/serial.h:  Include required header files.  Removed
315        support for old PowerPC exception handling.  Various fixes for
316        interrupt related routines.  Added support for BSPs with IRQ extension
317        API.
318
3192008-09-20      Joel Sherrill <joel.sherrill@oarcorp.com>
320
321        * libchip/network/dec21140.c, libchip/network/elnk.c: Detect when there
322        is no PCI bus based upon the BSP not having a base address defined.
323        This means this driver cannot be supported on that board.
324
3252008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
326
327        * libchip/network/dec21140.c, libchip/network/elnk.c,
328        libchip/network/if_dc.c: Eliminate vestiges of mpc603e define.
329
3302008-09-17      Miao Yan <yanmiaobest@gmail.com>
331
332        * optman/Makefile.am, optman/preinstall.am: Merge GSOC project code to
333        add simple device only filesystem (devfs), optionally completely drop
334        out filesystem, and to clean up disabling newlib reentrancy support.
335        This dropped 17K from the minimum.exe for sparc/sis and arm/rtl22xx_t
336        now has a 15K code space.
337        * optman/no-console.c, optman/no-filesystem.c, optman/no-libio.c:
338        Removed.
339
3402008-09-08      Ralf Corsépius <ralf.corsepius@rtems.org>
341
342        * libchip/ide/ata.h: Convert to Unix file format.
343
3442008-09-07      Ralf Corsépius <ralf.corsepius@rtems.org>
345
346        * libchip/serial/mc68681.c, libchip/serial/mc68681_p.h,
347        libchip/serial/ns16550.c, libchip/serial/ns16550_p.h,
348        libchip/serial/serial.h, libchip/serial/serprobe.c,
349        libchip/serial/sersupp.h, libchip/serial/z85c30.c:
350        Convert to "bool".
351        * libchip/i2c/spi-flash-m25p40.c, libchip/i2c/spi-fram-fm25l256.c,
352        libchip/i2c/spi-memdrv.h: Convert to "bool".
353        * libchip/rtc/ds1375-rtc.h, libchip/rtc/ds1375.c,
354        libchip/rtc/mc146818a.c, libchip/rtc/mc146818a.h,
355        libchip/rtc/rtc.h, libchip/rtc/rtcprobe.c: Convert to "bool".
356        * libchip/ide/ata.c, libchip/ide/ata_internal.h,
357        libchip/ide/ide_ctrl_cfg.h: Convert to "bool".
358        * libchip/display/disp_hcms29xx.c, libchip/display/disp_hcms29xx.h:
359        Convert to "bool".
360        * libchip/network/if_fxp.c, libchip/network/if_fxpvar.h:
361        Convert to "bool".
362        * libchip/shmdr/fatal.c, libchip/shmdr/shm_driver.h:
363        Convert to "bool".
364
3652008-09-05      Joel Sherrill <joel.sherrill@oarcorp.com>
366
367        * libchip/Makefile.am, libchip/shmdr/init.c, libchip/shmdr/mpisr.c,
368        libchip/shmdr/poll.c, libchip/shmdr/shm_driver.h: Update shared
369        memory driver to not use the clock ioctl to install a method to poll
370        for input. It now uses a Class API Timer which means we can eliminate
371        this special IOCTL from all clock drivers.
372        * libchip/shmdr/setckvec.c: Removed.
373
3742008-08-30      Joel Sherrill <joel.sherrill@OARcorp.com>
375
376        * libchip/network/sonic.c: Do not declare a variable just to hold an
377        ignored return value.
378
3792008-08-20      Sebastian Huber <sebastian.huber@embedded-brains.de>
380
381        * libchip/i2c/spi-sd-card.c: Fixed integer conversion warnings.
382
3832008-08-19      Joel Sherrill <joel.sherrill@OARcorp.com>
384
385        * libchip/display/disp_hcms29xx.c: Initialize softc_ptr to NULL.
386        * libchip/network/dec21140.c, libchip/network/if_dc.c: Use uint32_t.
387
3882008-08-19      Joel Sherrill <joel.sherrill@OARcorp.com>
389
390        * libchip/display/disp_hcms29xx.c: Do not make these static. They
391        appear to be unused that way.
392
3932008-08-19      Joel Sherrill <joel.sherrill@OARcorp.com>
394
395        * libchip/shmdr/shm_driver.h: Correct prototypes.
396
3972008-08-19      Sebastian Huber <sebastian.huber@embedded-brains.de>
398
399        * libchip/display/disp_hcms29xx.c: Fixed warnings. Initialized
400        variables and made methods static.
401
4022008-08-18      Joel Sherrill <joel.sherrill@oarcorp.com>
403
404        * libchip/serial/ns16550.c: Fix warning.
405
4062008-08-18      Ralf Corsepius <ralf.corsepius@rtems.org>
407
408        * aclocal/prog-cc.m4: Add -Wnested-externs.
409
4102008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
411
412        * libchip/network/dec21140.c: Add missing prototype.
413        * libchip/ide/ata.c, libchip/network/elnk.c: Add missing prototypes.
414
4152008-08-16      Ralf Corsépius <ralf.corsepius@rtems.org>
416
417        * aclocal/prog-cc.m4: Add -Wimplicit-function-declaration
418        -Wstrict-prototypes to RTEMS_CFLAGS.
419
4202008-08-02      Chris Johns <chrisj@rtems.org>
421
422        * libchip/i2c/spi-sd-card.c, libchip/ide/ata.c: Remove
423        rtems_blkdev_request count and start references. Use
424        RTEMS_BLKDEV_START_BLOCK.
425
4262008-07-29      Chris Johns <chrisj@rtems.org>
427
428        * libchip/i2c/spi-sd-card.c: Updated to the libblock changes.
429
430        * libchip/ide/ata.c: Change to use a mutex rather than disable
431        pre-emption. Updated to the libblock changes.
432
433        * libchip/ide/ata_internal.h: Updated to the new chains API.
434
435        * libchip/ide/ide_controller.c: Updated to the libblock
436        changes. Added come debug tracing.
437
438        * libchip/ide/ide_ctrl_cfg.h, libchip/ide/ide_ctrl_io.h: Updated
439        to the libblock changes.
440
4412008-07-27      Ralf Corsépius <ralf.corsepius@rtems.org>
442
443        * configure.ac: Remove RPCGEN, RPCTOOLS.
444
4452008-07-21      Sebastian Huber <sebastian.huber@embedded-brains.de>
446
447        * libchip/i2c/spi-sd-card.h, libchip/i2c/spi-sd-card.c: Use inttypes.h
448        for output format specifiers.
449
4502008-07-17      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
451
452        * libchip/display/font_hcms29xx.h, libchip/display/disp_hcms29xx.h:
453        Fixed some data types
454
4552008-07-14      Sebastian Huber <sebastian.huber@embedded-brains.de>
456
457        * libchip/i2c/spi-sd-card.c: Added missing header file.
458        * libchip/Makefile.am: Added SD Card driver.
459
4602008-07-14      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
461
462        * libchip/display/font_hcms29xx.c, libchip/display/disp_fonts.h
463        make glyphs non-constant, added file headers
464
4652008-07-09      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
466
467        * libchip/display/disp_fonts.h, libchip/display/disp_hcms29xx.c
468        * libchip/display/disp_hcms29xx.h, libchip/display/font_hcms29xx.c
469        * libchip/display/font_hcms29xx.h
470        Creation of SPI display driver
471
4722008-07-09      Sebastian Huber <sebastian.huber@embedded-brains.de>
473
474        * libchip/i2c/spi-sd-card.h, libchip/i2c/spi-sd-card.c: SD Card driver
475        via SPI.
476
4772008-06-29      Ralf Corsépius <ralf.corsepius@rtems.org>
478
479        * aclocal/rtems-top.m4: Require AC_DISABLE_OPTION_CHECKING.
480        AC_PREREQ(2.62).
481
4822008-06-01      Ralf Corsépius <ralf.corsepius@rtems.org>
483
484        * aclocal/target.m4: Allow empty RTEMS_BUILD_SUBDIRS.
485
4862008-05-22      Joel Sherrill <joel.sherrill@oarcorp.com>
487
488        * libchip/Makefile.am: Move termios helper routines from libchip to
489        libcsupport. Add routine which makes it easy for a termios device
490        driver to inform termios of its default baud rate. This avoids
491        inconsistencies in later termios settings changes.
492        * libchip/serial/termios_baud2index.c,
493        libchip/serial/termios_baud2num.c: Removed.
494
4952008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
496
497        * aclocal/bsp-bootcards-handles-ram-allocation.m4: New file.
498
4992008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
500
501        * wrapup/Makefile.am: Many BSPs do not include any .rel files now so do
502        not fail if there are none.
503
5042008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
505
506        * libchip/i2c/spi-flash-m25p40.c, libchip/i2c/spi-flash-m25p40.h,
507        * libchip/i2c/spi-fram-fm25l256.c, libchip/i2c/spi-fram-fm25l256.h,
508        * libchip/i2c/spi-memdrv.c, libchip/i2c/spi-memdrv.h,
509        * libchip/Makefile.am:
510        derived a generic spi memory driver from spi-flash-m25p40,
511        added descriptor for fram fm25l256
512
5132008-05-07      Till Straumann <strauman@slac.stanford.edu>
514
515        PR 649/bsps
516        * libchip/ide/ata.c: Give up if the interface does not become ready.
517
5182008-04-25      Joel Sherrill <joel.sherrill@OARcorp.com>
519
520        Moved to cpukit.
521        * nfsclient/.cvsignore, nfsclient/ChangeLog.slac, nfsclient/LICENSE,
522        nfsclient/Makefile.am, nfsclient/README, nfsclient/preinstall.am,
523        nfsclient/rfc1094.txt, nfsclient/rtems-filesystem-patch,
524        nfsclient/proto/mount_prot.h, nfsclient/proto/mount_prot.x,
525        nfsclient/proto/mount_prot_xdr.c, nfsclient/proto/nfs_prot.h,
526        nfsclient/proto/nfs_prot.x, nfsclient/proto/nfs_prot_xdr.c,
527        nfsclient/src/cexphelp.c, nfsclient/src/dirutils.c,
528        nfsclient/src/librtemsNfs.h, nfsclient/src/nfs.c,
529        nfsclient/src/nfs.modini.c, nfsclient/src/nfsTest.c,
530        nfsclient/src/rpcio.c, nfsclient/src/rpcio.h,
531        nfsclient/src/rpcio.modini.c, nfsclient/src/sock_mbuf.c,
532        nfsclient/src/xdr_mbuf.c: Removed.
533
5342008-02-26      Joel Sherrill <joel.sherrill@OARcorp.com>
535
536        * configure.ac: Stop building nfsclient here and build it in CPUKIT.
537
5382008-01-05      Chris Johns <chrisj@rtems.org>
539
540        * libchip/flash/am29lv160.c: Update the blank check error message
541        to say there is an error.
542       
5432007-12-22      Chris Johns <chrisj@rtems.org>
544
545        * nfsclient/src/nfs.c, nfsclient/src/rpcio.c: Adjust the length of
546        the hello message. Just one line but still a little too long.
547       
5482007-12-14      Chris Johns <chrisj@rtems.org>
549
550        * wrapup/Makefile.am: Add libflash.a to the libbsp library.
551        * libchip/Makefile.am, libchip/preinstall.am: Add the flash chip support.
552        * libchip/flash, libchip/flash/am29lv160.c,
553        libchip/flash/am29lv160.h: New.
554
5552007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
556
557        * libchip/network/if_fxp.c: Spacing.
558
5592007-11-20      Till Straumann <strauman@slac.stanford.edu>
560
561        * libchip/rtc/ds1375.c, libchip/rtc/ds1375-rtc.h:
562        Avoid using 'stdio' before the system is up and fully
563        initialized.
564
5652007-11-20      Till Straumann <strauman@slac.stanford.edu>
566
567        * libchip/rtc/ds1375.c, libchip/rtc/ds1375-rtc.h,
568        * libchip/Makefile.am, libchip/preinstall.am:
569        added new driver for Maxim DS1375 i2c RTC.
570
5712007-09-26      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
572
573        * libchip/i2c/spi-flash-m25p40.c:
574        added addressing call in write function
575
5762007-09-24      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
577
578        * libchip/i2c/spi-flash-m25p40.c, libchip/i2c/spi-flash-m25p40.c,
579        * libchip/Makefile.am:
580        added SPI flash driver for a M25P40 chip (based on libi2c extensions)
581
5822007-09-25      Joel Sherrill <joel.sherrill@OARcorp.com>
583
584        * libchip/shmdr/dump.c, libchip/shmdr/shm_driver.h: Fix warnings.
585
5862007-09-25      Joel Sherrill <joel.sherrill@OARcorp.com>
587
588        * nfsclient/Makefile.am: Fix errors.
589
5902007-09-25      Joel Sherrill <joel.sherrill@OARcorp.com>
591
592        * nfsclient/Makefile.am, nfsclient/preinstall.am: Install libnfs.a.
593
5942007-09-21      Ralf Corsépius <ralf.corsepius@rtems.org>
595
596        * aclocal/version.m4: Bump RTEMS_API to 4.9.
597        Bump RTEMS_VERSION to 4.8.99.0.
598
5992007-09-17      Joel Sherrill <joel.sherrill@OARcorp.com>
600
601        * libchip/network/smc91111.h: Eliminate DEBUG_puts.
602
6032007-09-16      Ralf Corsépius <ralf.corsepius@rtems.org>
604
605        * configure.ac: Remove AC_PROG_AWK (Unused).
606
6072007-09-14      Daron Chabot <djc915@mail.usask.ca>
608
609        * libchip/network/if_dc.c: Changed type of ISR argument to void* from
610        rtems_interrupt_vector, to permit passing arbitrary arguments to the
611        ISR. Clean up of variables to silence compiler warnings.
612
6132007-09-13      Daniel Hellstrom <daniel@gaisler.com>
614
615        * libchip/network/smc91111.c: Eliminate a stray DEBUG_puts().
616
6172007-09-12      Daniel Hellstrom <daniel@gaisler.com>
618
619        * libchip/network/smc91111.c, libchip/network/smc91111.h: Multiple fixes.
620          - Odd bit bug in some chips taken care of.
621          - Buggy ASSERT removed, it seem to be inserted to detect if MBUF data
622            alignment but failing to do so must have made the driver writer to make
623            some incorrect assumptions about MBUFs.
624          - Fixed MBUF handling to handle mbuf chains better. The Data length of
625            MBUFs in middle of the mbuf chain are now checked for odd number of bytes.
626          - Made while loop responsible for copying data to fifo port copy 16 shorts
627            per loop instead of 1 short, increasing the copying process.
628
6292007-09-07      Daniel Hellstrom <daniel@gaisler.com>
630
631        * libchip/network/greth.c, libchip/network/greth.h: GRETH_GBIT support
632        and GBIT PHY support for 10/100 MAC, also auto negotiation updated.
633
6342007-08-02      Joel Sherrill <joel.sherrill@OARcorp.com>
635
636        * configure.ac, wrapup/Makefile.am: Remove RDBG.
637        * aclocal/check-rdbg.m4, aclocal/enable-rdbg.m4, librdbg/.cvsignore,
638        librdbg/Makefile.am, librdbg/preinstall.am,
639        librdbg/include/rdbg/rdbg.h, librdbg/include/rdbg/servrpc.h,
640        librdbg/include/rdbg/i386/rdbg_f.h, librdbg/include/rdbg/i386/reg.h,
641        librdbg/include/rdbg/m68k/rdbg_f.h, librdbg/include/rdbg/m68k/reg.h,
642        librdbg/include/rdbg/powerpc/rdbg_f.h,
643        librdbg/include/rdbg/powerpc/reg.h, librdbg/src/_servtgt.c,
644        librdbg/src/awk.svc, librdbg/src/excep.c, librdbg/src/ptrace.c,
645        librdbg/src/rdbg.c, librdbg/src/remdeb.x, librdbg/src/servbkpt.c,
646        librdbg/src/servcon.c, librdbg/src/servrpc.c, librdbg/src/servtgt.c,
647        librdbg/src/servtsp.c, librdbg/src/servutil.c,
648        librdbg/src/i386/excep_f.c, librdbg/src/i386/rdbg_cpu_asm.S,
649        librdbg/src/i386/rdbg_f.c, librdbg/src/i386/any/remdeb.h,
650        librdbg/src/i386/any/remdeb_f.x, librdbg/src/i386/any/remdeb_svc.c,
651        librdbg/src/i386/any/remdeb_xdr.c, librdbg/src/m68k/excep_f.c,
652        librdbg/src/m68k/rdbg_cpu_asm.S, librdbg/src/m68k/rdbg_f.c,
653        librdbg/src/m68k/any/remdeb.h, librdbg/src/m68k/any/remdeb_f.x,
654        librdbg/src/m68k/any/remdeb_svc.c, librdbg/src/m68k/any/remdeb_xdr.c,
655        librdbg/src/powerpc/excep_f.c, librdbg/src/powerpc/rdbg_cpu_asm.S,
656        librdbg/src/powerpc/rdbg_f.c,
657        librdbg/src/powerpc/new_exception_processing/remdeb.h,
658        librdbg/src/powerpc/new_exception_processing/remdeb_f.x,
659        librdbg/src/powerpc/new_exception_processing/remdeb_svc.c,
660        librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c: Removed.
661
6622007-07-27      Ralf Corsépius <ralf.corsepius@rtems.org>
663
664        * nfsclient/src/dirutils.c: Use PATH_MAX instead of MAXPATHLEN.
665
6662007-07-26      Ralf Corsépius <ralf.corsepius@rtems.org>
667
668        * nfsclient/src/rpcio.c: Use size_t instead of uint32_t for message
669          sizes.
670
6712007-07-27      Chris Johns <chrisj@rtems.org>
672
673        * wrapup/Makefile.am: Create archive from a file for hosts
674        with a limited command line size.
675
6762007-07-26      Ralf Corsépius <ralf.corsepius@rtems.org>
677
678        * nfsclient/src/rpcio.c: Use size_t instead of uint32_t for message
679          sizes.
680
6812007-07-25      Ralf Corsépius <ralf.corsepius@rtems.org>
682       
683        * configure.ac: Add nfsclient.
684        * nfsclient/Makefile.am: New.
685        * nfsclient/proto/Makefile, nfsclient/Makefile,
686          nfsclient/src/Makefile: Remove.
687        * nfsclient/ChangeLog: Remove (Rename into ChangeLog.slac).
688        * nfsclient/ChangeLog.slac: New (Renamed from ChangeLog).
689
6902007-07-25      Ralf Corsépius <ralf.corsepius@rtems.org>
691
692        * nfsclient/README, nfsclient/proto/nfs_prot_xdr.c,
693        nfsclient/proto/mount_prot.x, nfsclient/proto/mount_prot_xdr.c,
694        nfsclient/proto/Makefile, nfsclient/proto/mount_prot.h,
695        nfsclient/proto/nfs_prot.h, nfsclient/proto/nfs_prot.x,
696        nfsclient/Makefile, nfsclient/ChangeLog, nfsclient/src/dirutils.c,
697        nfsclient/src/nfsTest.c, nfsclient/src/rpcio.h,
698        nfsclient/src/nfs.modini.c, nfsclient/src/xdr_mbuf.c,
699        nfsclient/src/cexphelp.c, nfsclient/src/Makefile,
700        nfsclient/src/sock_mbuf.c, nfsclient/src/nfs.c,
701        nfsclient/src/librtemsNfs.h, nfsclient/src/rpcio.modini.c
702        nfsclient/src/rpcio.c, nfsclient/rtems-filesystem-patch,
703        nfsclient/rfc1094.txt, nfsclient/LICENSE: Import from rtems-nfs-1.5.
704
7052007-07-18      Thomas Doerfler (Thomas.Doerfler@embedded-brains.de>:
706
707        * libchip/serial/ns16550.c: removed timed out wait for transmitter
708        to become ready: This will not work for fast CPUs.
709
7102007-07-09      Thomas Doerfler (Thomas.Doerfler@embedded-brains.de>:
711
712        * libchip/ide/ata.c: fixed warning
713
7142007-06-20      Ray Xu <rayx@gmail.com>
715
716        * optman/Makefile.am, optman/preinstall.am: Add stubs for file system,
717        console, and libio. This shrinks the memory requirements but Joel has
718        not figured out how best to present this to application space.
719        * optman/no-console.c, optman/no-filesystem.c, optman/no-libio.c:
720        New files.
721
7222007-05-29      Joel Sherrill <joel.sherrill@OARcorp.com>
723
724        * optman/sapi/no-io.c: Split IO Manager into one function per file so
725        now we only need required initialization methods.
726
7272007-05-29      Joel Sherrill <joel.sherrill@OARcorp.com>
728
729        * optman/sapi/no-io.c: Eliminate maximum_drivers configuration
730        parameter since it was used to configure a no longer used feature.
731        Device names are now part of the filesystem not in a table.
732
7332007-05-09      Joel Sherrill <joel.sherrill@OARcorp.com>
734
735        * optman/Makefile.am, optman/preinstall.am, optman/rtems/no-dpmem.c,
736        optman/rtems/no-event.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c,
737        optman/rtems/no-part.c, optman/rtems/no-region.c,
738        optman/rtems/no-rtmon.c, optman/rtems/no-sem.c,
739        optman/rtems/no-signal.c, optman/rtems/no-timer.c,
740        optman/sapi/no-ext.c: Add optional manager stub for Barrier. Simplify
741        other optional managers so using them reduces application size
742        instead of increasing it.
743        * optman/rtems/no-barrier.c: New file.
744
7452007-04-01      Ralf Corsépius <ralf.corsepius@rtems.org>
746
747        * libchip/network/dec21140.c, libchip/network/elnk.c: i386-specific
748        adjustments to pci-API changes.
749        * libchip/network/dec21140.c, libchip/network/elnk.c,
750        libchip/network/if_dc.c: powerpc-specific adjustments to pci-API
751        changes.
752
7532007-03-31      Ralf Corsépius <ralf.corsepius@rtems.org>
754
755        * libchip/network/dec21140.c, libchip/network/if_dc.c,
756        libchip/network/if_fxp.c: Reflect changes to pci-API.
757
7582007-03-30      Ralf Corsépius <ralf.corsepius@rtems.org>
759
760        * libchip/network/elnk.c: Use ioctl_command_t as ioctl argument.
761        * libchip/network/if_dc.c: Use ioctl_command_t as ioctl argument.
762
7632007-03-27      Ralf Corsépius <ralf.corsepius@rtems.org>
764
765        * aclocal/target.m4: Strip CFLAGS (Hack to prevent bsp-cflags from
766          being used to compile "tools").
767
7682007-03-13      Joel Sherrill <joel@OARcorp.com>
769
770        * libchip/network/sonic.c: Rename Dump_Buffer to rtems_print_buffer.
771
7722007-03-12      Joel Sherrill <joel@OARcorp.com>
773
774        * libchip/network/cs8900.c, libchip/network/cs8900.h,
775        libchip/network/greth.c, libchip/network/greth.h: Correct license URL
776        and/or fix mistake in copyright notice. Both of these mistakes appear
777        to be from code submitted after these changes were made previously.
778
7792007-02-21      Ralf Corsépius <ralf.corsepius@rtems.org>
780
781        * wrapup/Makefile.am: Use MKDIR_P instead of mkdir_p.
782
7832007-02-16      Ralf Corsépius <ralf.corsepius@rtems.org>
784
785        * libchip/Makefile.am: Correct path to README.tulipclone.
786
7872007-02-06      Ralf Corsépius <ralf.corsepius@rtems.org>
788
789        * libchip/ide/ata.c: Remove superfluous type casts.
790
7912007-02-06      Ralf Corsépius <ralf.corsepius@rtems.org>
792
793        * libchip/ide/ata.c, libchip/network/elnk.c, optman/rtems/no-msg.c:
794        Use size_t for sizes.
795
7962007-01-20      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
797
798        * libchip/ide/ata.c: in ata_request_done: moved call to free()
799        from preemption disabled region
800
8012007-01-16      Till Straumann <strauman@slac.stanford.edu>
802
803        * libchip/i2c/i2c-2b-eeprom.c, libchip/i2c/i2c-2b-eeprom.h,
804        libchip/i2c/i2c-ds1621.c, libchip/i2c/i2c-ds1621.h:
805        Added SLAC/Stanford Authorship Note / Copyright + Liability Disclaimer.
806
8072006-12-14      Ralf Corsépius <ralf.corsepius@rtems.org>
808
809        * libchip/network/dec21140.c, libchip/network/if_fxp.c: Use
810          ioctl_command_t as ioctl argument.
811
8122006-12-13      Joel Sherrill <joel@OARcorp.com>
813
814        * librtems++/include/rtems++/rtemsEvent.h,
815        librtems++/include/rtems++/rtemsMessageQueue.h,
816        librtems++/include/rtems++/rtemsSemaphore.h,
817        librtems++/include/rtems++/rtemsTask.h, librtems++/src/rtemsEvent.cc,
818        librtems++/src/rtemsMessageQueue.cc,
819        librtems++/src/rtemsSemaphore.cc, librtems++/src/rtemsTask.cc: Change
820        rtems_unsigned32 to uint32_t.
821
8222006-12-13      Joel Sherrill <joel@OARcorp.com>
823
824        PR 1181/bsps
825        * optman/rtems/no-msg.c: Clean up dead code.
826
8272006-12-13      Ralf Corsépius <ralf.corsepius@rtems.org>
828
829        * aclocal/rtems-ampolish.m4: Use am_aux_dir/ampolish3.
830
8312006-12-12      Ralf Corsépius <ralf.corsepius@rtems.org>
832
833        * aclocal/rtems-ampolish.m4: Require AM_MAINTAINER_MODE.
834        * aclocal/rtems-top.m4: Remove RTEMS_AMPOLISH.
835        * aclocal/project-root.m4: Require RTEMS_AMPOLISH.
836
8372006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
838
839        * configure.ac: New BUG-REPORT address.
840
8412006-11-20      Ralf Corsépius <ralf.corsepius@rtems.org>
842
843        * Makefile.am: Remove ampolish3.
844
8452006-11-17      Joel Sherrill <joel@OARcorp.com>
846
847        * libchip/network/dec21140.c: Fix spacing -- remove long sections of
848        blank lines.
849
8502006-11-15      Ralf Corsépius <ralf.corsepius@rtems.org>
851
852        * configure.ac: Remove RTEMS_AMPOLISH3.
853        * aclocal/bsp-configure.m4: AC_PREREQ(2.60).
854          Remove checks for AMPOLISH3.
855        * aclocal/rtems-ampolish.m4: Pick up ampolish3 from ac_aux_dir.
856        * aclocal/rtems-top.m4: Add RTEMS_AMPOLISH3.
857        * ampolish3: Remove.
858
8592006-11-15      Ralf Corsépius <ralf.corsepius@rtems.org>
860
861        * aclocal/target.m4: Remove RTEMS_OUTPUT_BUILD_SUBDIRS.
862        * aclocal/prog-cc.m4: Remove CFLAGS.
863        * configure.ac: Don't explictly pass CFLAGS_OPTIMIZE_V, CPU_CFLAGS.
864        Compose CFLAGS. Append CFLAGS to ac_configure_args.
865
8662006-10-23      Joel Sherrill <joel@OARcorp.com>
867
868        * aclocal/rtems-cpu-subdirs.m4: Add bfin.
869
8702006-10-18      Ralf Corsépius <ralf.corsepius@rtems.org>
871
872        * automake/compile.am: Use hard-coded RTEMS_* flags.
873
8742006-10-18      Ralf Corsépius <ralf.corsepius@rtems.org>
875
876        * aclocal/rtems-top.m4: Remove RTEMS_API.
877        * aclocal/version.m4: Add RTEMS_API. Bump RTEMS_API to 4.8.
878
8792006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
880
881        * aclocal/prog-ccas.m4: Adaptations to automake-1.10.
882
8832006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
884
885        * aclocal/prog-cxx.m4: Add AC_PROG_CXXCPP.
886
8872006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
888
889        * aclocal/version.m4: Bump version to 4.7.99.0.
890
8912006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
892
893        * configure.ac: Require autoconf-2.60. Require automake-1.10.
894
8952006-09-11      Joel Sherrill <joel@OARcorp.com>
896
897        * librdbg/src/_servtgt.c: Convert C++ style comments to C style.
898
8992006-09-04      Joel Sherrill <joel@OARcorp.com>
900
901        * libchip/network/greth.c, libchip/network/open_eth.c,
902        libchip/network/smc91111.c, libchip/network/sonic.c: Fix error
903        introduced by warning removal.
904
9052006-09-01      Joel Sherrill <joel@OARcorp.com>
906
907        * libchip/network/greth.c, libchip/network/open_eth.c,
908        libchip/network/smc91111.c: Remove warnings and correct prototype
909        added earlier today.
910
9112006-09-01      Joel Sherrill <joel@OARcorp.com>
912
913        * libchip/network/cs8900.c, libchip/network/greth.c,
914        libchip/network/i82586.c, libchip/network/open_eth.c,
915        libchip/network/sonic.c: Remove warnings -- use uintptr_t, properly
916        sized integers, and inttypes.h printf helpers.
917
9182006-08-09      Kolja Waschk <waschk@telos.de>
919
920        * aclocal/rtems-cpu-subdirs.m4: New port to Altera NIOS II.
921
9222006-07-12      Joel Sherrill <joel@OARcorp.com>
923
924        * libchip/shmdr/shm_driver.h: Merge sparc shm driver mods from 4.6.
925
9262006-07-11      Jerry Needell <jerry.needell@unh.edu>
927
928        * libchip/Makefile.am, libchip/preinstall.am: Merge SPARC updates from
929        4.6 branch.  Original modifications by Gaisler Enterprises.
930        * libchip/network/greth.c, libchip/network/greth.h: New files.
931
9322006-07-09      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
933
934        * ide/ata.[ch]:
935        (PR1118) fetch priority for ATA task from a variable,
936        not a fixed configuration value.
937       
9382006-06-28      Ralf Corsépius <ralf.corsepius@rtems.org>
939
940        * Makefile.am: Add ampolish3.
941
9422006-06-28      Ralf Corsépius <ralf.corsepius@rtems.org>
943
944        * ampolish3: New.
945        * aclocal/rtems-ampolish.m4: Reflect using in-sourcetree ampolish3.
946
9472006-05-16      Ralf Corsépius <ralf.corsepius@rtems.org>
948
949        * aclocal/rtems-ampolish.m4: New.
950        * configure.ac: Use RTEMS_AMPOLISH3.
951
9522006-04-18  Joel Sherrill <joel@OARcorp.com>
953
954        * aclocal/version.m4: Updated to rtems-4.6.99.3.
955
9562006-03-07      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
957
958        PR 853/filesystem
959        * libchip/ide/ata.c, libchip/ide/ide_controller.c: The ata driver
960        should be modified to support the new exception scheme and to use the
961        handle parameter.
962
9632006-02-a32     Eric Norum <norume@aps.anl.gov>
964
965        * libchip/network/if_dc.c, if_dcreg.c: Changes from Daron Chabot:
966        "newer" PCI access calls.  Minor cleanups.  Comments.
967
9682006-01-12      Eric Norum <norume@aps.anl.gov>
969
970        PR 861/networking
971        PR 863/networking
972        * libchip/network/smc91111.c: Fix illegal lvalue increments.
973
9742006-01-12      Ralf Corsepius <ralf.corsepius@rtems.org>
975
976        * wrapup/Makefile.am: Add preinstall.am.
977        * libchip/Makefile.am: Build libchip/network/smc91111.
978        * libchip/network/smc91111.c, libchip/network/smc91111config.h:
979        Eliminate cyg_int* crap.
980
9812006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
982
983        * librdbg/Makefile.am: Add preinstall.am.
984        * aclocal/bsp-configure.m4: Add ampolish3.
985        New header guards.
986
9872006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
988
989        * libchip/network/open_eth.c, libchip/network/open_eth.h:
990        Merger from rtems-4-6-branch.
991
9922006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
993
994        * libchip/network/smc91111.c
995        libchip/network/smc91111config.h
996        libchip/network/smc91111exp.h
997        libchip/network/smc91111.h: New. Merger from rtems-4-6-branch.
998        * libchip/Makefile.am: Reflect adding smc91111*.
999
10002006-01-08      Joel Sherrill <joel@OARcorp.com>
1001
1002        * optman/sapi/no-io.c: Change rtems_io_register_name to take a const
1003        char *.
1004
10052006-01-08      Joel Sherrill <joel@OARcorp.com>
1006
1007        * libchip/i2c/i2c-2b-eeprom.c, libchip/i2c/i2c-ds1621.c: Eliminate
1008        warnings.
1009
10102005-11-20      Ralf Corsepius <ralf.corsepius@rtems.org>
1011
1012        * aclocal/prog-cc.m4: Remove RTEMS_USE_GCC.
1013        Add RTEMS_RELLDFLAGS.
1014        * automake/compile.am: Remove RTEMS_USE_GCC.
1015        Remove RTEMS_RELLDFLAGS.
1016        * configure.ac: Pass --enable-rtems-root to ada-tests/configure.
1017
10182005-11-14      Ralf Corsepius <ralf.corsepius@rtems.org>
1019
1020        * libchip/network/if_media.h, libchip/network/mii.h:
1021        Remove (Moved to cpukit).
1022        * libchip/Makefile.am: Reflect having moved libchip/network/mii.h
1023        and libchip/network/if_media.h.
1024        * libchip/network/elnk.c, libchip/network/if_dc.c: Reflect mii.h and
1025        if_media.h having moved.
1026
10272005-11-13      Ralf Corsepius <ralf.corsepius@rtems.org>
1028
1029        * automake/compile.am, automake/host.am, automake/local.am,
1030        automake/subdirs.am: Remove depend.
1031        * configure.ac: Explicitly pass --libdir and --includedir to
1032        testsuites.
1033
10342005-11-09      Ralf Corsepius <ralf.corsepius@rtems.org>
1035
1036        * configure.ac: Reflect changes to testsuites.
1037
10382005-11-08      Ralf Corsepius <ralf.corsepius@rtems.org>
1039
1040        * automake/compile.am: Remove GCCSPECS.
1041        * aclocal/prog-cc.m4: Add GCCSPECS.
1042        * aclocal/env-rtemsbsp.m4: Remove RTEMS_BSP_SPECS. Remove GCC_SPECS.
1043
10442005-11-06      Ralf Corsepius <ralf.corsepius@rtems.org>
1045
1046        * libchip/i2c/i2c-2b-eeprom.c: Eliminate obsolete types.
1047        * libchip/rtc/mc146818a.h: Eliminate obsolete types.
1048
10492005-11-04      Ralf Corsepius <ralf.corsepius@rtems.org>
1050
1051        * libchip/network/dec21140.c, libchip/network/elnk.c: Use
1052        libcpu/byteorder.h for i386.
1053
10542005-11-02      Till Straumann <strauman@slac.stanford.edu>
1055
1056        * libchip/i2c/i2c-2b-eeprom.c, libchip/i2c/i2c-2b-eeprom.h,
1057        libchip/i2c/i2c-ds1621.c, libchip/i2c/i2c-ds1621.h: New files.
1058        * libchip/Makefile.am, libchip/preinstall.am, wrapup/Makefile.am:
1059        added a simple API/library for i2c devices and drivers for i2c
1060        2-byte eeproms and a ds1621 temperature sensor; API is documented
1061        in libi2c.h.
1062
10632005-10-26      Ralf Corsepius <ralf.corsepius@rtems.org>
1064
1065        * libnetworking/pppd/ipxcp.c,
1066        libnetworking/pppd/chat.c,
1067        libnetworking/pppd/patchlevel.h,
1068        libnetworking/pppd/upap.h,
1069        libnetworking/pppd/md5.h,
1070        libnetworking/pppd/pppd.8,
1071        libnetworking/pppd/README,
1072        libnetworking/pppd/preinstall.am,
1073        libnetworking/pppd/md4.h,
1074        libnetworking/pppd/magic.c,
1075        libnetworking/pppd/pppd.h,
1076        libnetworking/pppd/demand.c,
1077        libnetworking/pppd/rtemsmain.c,
1078        libnetworking/pppd/sys-rtems.c,
1079        libnetworking/pppd/ipcp.h,
1080        libnetworking/pppd/lcp.h,
1081        libnetworking/pppd/chap_ms.c,
1082        libnetworking/pppd/md4.c,
1083        libnetworking/pppd/rtemspppd.h,
1084        libnetworking/pppd/cbcp.h,
1085        libnetworking/pppd/auth.c,
1086        libnetworking/pppd/lcp.c,
1087        libnetworking/pppd/example/README,
1088        libnetworking/pppd/example/ppp.conf,
1089        libnetworking/pppd/example/system.h,
1090        libnetworking/pppd/example/netconfig.h,
1091        libnetworking/pppd/example/pppdapp.c,
1092        libnetworking/pppd/example/init.c,
1093        libnetworking/pppd/example/Makefile-user,
1094        libnetworking/pppd/example/pppd.options,
1095        libnetworking/pppd/rtemspppd.c,
1096        libnetworking/pppd/ipxcp.h,
1097        libnetworking/pppd/chap_ms.h,
1098        libnetworking/pppd/options.c,
1099        libnetworking/pppd/magic.h,
1100        libnetworking/pppd/chap.h,
1101        libnetworking/pppd/cbcp.c,
1102        libnetworking/pppd/upap.c,
1103        libnetworking/pppd/chap.c,
1104        libnetworking/pppd/Makefile.am,
1105        libnetworking/pppd/ccp.h,
1106        libnetworking/pppd/utils.c,
1107        libnetworking/pppd/rtemsdialer.h,
1108        libnetworking/pppd/fsm.h,
1109        libnetworking/pppd/pathnames.h,
1110        libnetworking/pppd/md5.c,
1111        libnetworking/pppd/fsm.c,
1112        libnetworking/pppd/ipcp.c,
1113        libnetworking/pppd/STATUS,
1114        libnetworking/pppd/ccp.c,
1115        libnetworking/Makefile.am: Remove (Moved to cpukit).
1116
11172005-10-26      Ralf Corsepius <ralf.corsepius@rtems.org>
1118
1119        * configure.ac: Remove libnetworking, libnetworking/pppd.
1120        * wrapup/Makefile.am: Remove libpppd.a.
1121
11222005-10-26      Ralf Corsepius <ralf.corsepius@rtems.org>
1123
1124        * libnetworking/pppd/Makefile.am: Install rtemspppd.h and
1125        rtemsdialer.h to $(includedir)/rtems.
1126
11272005-10-25      Ralf Corsepius <ralf.corsepius@rtems.org>
1128
1129        * libnetworking/rtems_telnetd/icmds.c,
1130        libnetworking/rtems_telnetd/Makefile.am,
1131        libnetworking/rtems_telnetd/preinstall.am,
1132        libnetworking/rtems_telnetd/pty.c,
1133        libnetworking/rtems_telnetd/pty.h,
1134        libnetworking/rtems_telnetd/README,
1135        libnetworking/rtems_telnetd/telnetd.c,
1136        libnetworking/rtems_telnetd/telnetd.h:
1137        Remove (Moved to cpukit).
1138
11392005-10-25      Ralf Corsepius <ralf.corsepius@rtems.org>
1140
1141        * configure.ac: Remove libnetworking/rtems_telnetd.
1142        * libnetworking/Makefile.am: Remove rtems_telnetd.
1143        * libnetworking/README: Remove (Obsolete).
1144        * wrapup/Makefile.am: Remove libtelnetd.a (Moved to cpukit).
1145
11462005-10-20  Eric Norum <norume@aps.anl.gov>
1147
1148        * libchip/network/dec21140.c: Clean up PCI mapping.
1149
11502005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
1151
1152        * libnetworking/pppd/Makefile.am: Use preinstall.am.
1153        * librdbg/src/servbkpt.c, librdbg/src/servcon.c,
1154        librdbg/src/servrpc.c, librdbg/src/servtgt.c
1155        librdbg/src/servtsp.c: Include <errno.h> instead of <sys/errno.h>.
1156        * bsp.pc.in: Remove CFLAGS_DEBUG_V, CFLAGS_OPTIMIZE_V.
1157        * configure.ac: Move optman to the end of BSP_SUBDIRS.
1158
11592005-09-16      Ralf Corsepius <ralf.corsepius@rtems.org>
1160
1161        * aclocal/bspopts.m4: Add missing m4 quotes.
1162
11632005-09-02  Joel Sherrill <joel@OARcorp.com>
1164
1165    * aclocal/version.m4: Updated to rtems-4.6.99.2.
1166
11672005-08-18  Karel Gardas  <kgardas@objectsecurity.com>
1168
1169        * libchip/network/if_fxp.c, libchip/network/if_dc.c,
1170        libchip/network/dec21140.c: Remove initialization of PCI bus.
1171
11722005-08-15      Ralf Corsepius <ralf.corsepius@rtems.org>
1173
1174        * optman/Makefile.am: Add preinstall.am.
1175
11762005-07-18      Karel Gardas <kgardas@objectsecurity.com>
1177
1178        * libchip/network/if_fxp.c: Change status of PCI Id 0x1229 from
1179        UNTESTED to tested.
1180
11812005-06-17      Joel Sherrill <joel@OARcorp.com>
1182
1183        * librdbg/src/powerpc/excep_f.c: Conditionalize use of ISI vector since
1184        it is not supported by the MPC5xx.
1185
11862005-06-17      Joel Sherrill <joel@OARcorp.com>
1187
1188        * libchip/network/if_dc.c: Begin to convert to new PCI and IRQ
1189        interface. Also correct attempting to build on other than PowerPC and
1190        x86.
1191
11922005-06-16      Daron Chabot <daron@nucleus.usask.ca>
1193
1194        * libchip/Makefile.am: Add driver for Tulip clones.
1195        * libchip/network/README.tulipclone, libchip/network/if_dc.c,
1196        libchip/network/if_dcreg.h: New files.
1197
11982005-05-25      Ralf Corsepius <ralf.corsepius@rtems.org>
1199
1200        * aclocal/check-rdbg.m4: Use compilation check on _OLD_EXCEPTIONS
1201        to enable rdbg.
1202        * configure.ac: Reflect changes above.
1203
12042005-05-23      Ralf Corsepius <ralf.corsepius@rtems.org>
1205
1206        * configure.ac: Add ada/.
1207
12082005-05-20      Sergei Organov  <osv@topconrd.ru>
1209
1210        PR 750/networking
1211        * libnetworking/pppd/sys-rtems.c: Avoid NULL dereference in
1212        wait_input().
1213
12142005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
1215
1216        * libchip/network/if_fxp.c, libchip/serial/ns16550.c: Modified to use
1217        rtems/irq.h.
1218
12192005-05-11      Ralf Corsepius <ralf.corsepius@rtems.org>
1220
1221        * libchip/Makefile.am: Include preinstall.am.
1222        * libchip/preinstall.am: New.
1223
12242005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
1225
1226        * configure.ac: Add AMPOLISH3.
1227        * libnetworking/rtems_telnetd/Makefile.am: Include preinstall.am.
1228        * libnetworking/rtems_telnetd/preinstall.am: New.
1229        * libnetworking/rtems_telnetd/telnetd.c: socklen_t.
1230
12312005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
1232
1233        * configure.ac: Let enable_rpcgen default to "no".
1234
12352005-05-08      Ralf Corsepius <ralf.corsepius@rtems.org>
1236
1237        * libnetworking/pppd/Makefile.am: CPPFLAGS += -D__BSD_VISIBLE.
1238
12392005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
1240
1241        * libchip/network/open_eth.c, libchip/serial/mc68681.c,
1242        libchip/serial/ns16550.c, libchip/serial/z85c30.c: Removed warning
1243
12442005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
1245
1246        * libchip/network/dec21140.c, libchip/network/elnk.c,
1247        libchip/network/if_fxp.c: Moved irq.h to bsp subdirectory.
1248
12492005-05-04      Jennifer Averett <jennifer.averett@oarcorp.com>
1250
1251        * libchip/network/dec21140.c, libchip/network/elnk.c: Consolidation
1252        of code as a result of the implementation of a common PCI interface.
1253
12542005-05-04      Joel Sherrill <joel@OARcorp.com>
1255
1256        * libchip/network/open_eth.c: Remove prototype of set_vector.
1257
12582005-05-03      Joel Sherrill <joel@OARcorp.com>
1259
1260        * librdbg/src/ptrace.c: Remove warning.
1261
12622005-05-03      Jennifer Averett <jennifer.averett@oarcorp.com>
1263
1264        * libchip/network/dec21140.c, libchip/network/elnk.c,
1265        libchip/network/if_fxp.c, libchip/serial/mc68681.c:
1266        Modified parameter list to remove warnings.
1267
12682005-05-02      Jennifer Averett <jennifer.averett@oarcorp.com>
1269
1270        * libchip/network/cs8900.c, libchip/network/i82586.c,
1271        libchip/network/open_eth.c, libchip/network/sonic.c,
1272        libchip/serial/mc68681.c: Modified types to remove
1273        warnings.  Added initialization to remove warnings.
1274
12752005-04-28      Joel Sherrill <joel@OARcorp.com>
1276
1277        * libchip/network/README.sonic: Rewritten to account for removal of
1278        dmv177.
1279
12802005-04-28      Jennifer Averett <jennifer.averett@oarcorp.com>
1281
1282        PR 781/rtems_misc
1283        * libchip/serial/ns16550_p.h: Fix baud rate calculation
1284
12852005-04-25      Jennifer Averett <jennifer.averett@oarcorp.com>
1286
1287        * libchip/serial/ns16550.c:
1288        Fixed warnings generated in various powerpc configurations
1289
12902005-04-18      Jennifer Averett <jennifer.averett@oarcorp.com>
1291
1292        * libchip/serial/ns16550.c: Modified
1293        ISR to work with PPC new exception processing
1294
12952005-03-14      Joel Sherrill <joel@OARcorp.com>
1296
1297        * libchip/network/dec21140.c, libchip/network/elnk.c,
1298        libchip/network/if_fxp.c: Continue PCI API unification. All use
1299        pci_find_device(). Network drivers manufacture a signature since all
1300        calls have not been converted yet.
1301
13022005-03-04      Joel Sherrill <joel@OARcorp.com>
1303
1304        * libchip/network/dec21140.c, libchip/network/if_fxp.c: Make PCI
1305        initialize function part of the unified PCI API as pci_initialize().
1306
13072005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
1308
1309        * aclocal/ppc.m4; Dynamically switch between {old|new} exceptions
1310        depending upon presence of _OLD_EXCEPTIONS in CFLAGS.
1311
13122005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
1313
1314        * configure.ac: Remove HAS_WRAPUP_LIBBSP.
1315        * wrapup/Makefile.am: Remove HAS_WRAPUP_LIBBSP.
1316
13172005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
1318
1319        * aclocal/ppc.m4: Reflect changes to ppc exception processing
1320        building procedures.
1321
13222005-02-08      Ralf Corsepius <ralf.corsepius@rtems.org>
1323
1324        * aclocal/prog-cc.m4:
1325        Quote CFLAGS's RHS to accomodate Solaris broken sh.
1326
13272005-02-08      Ralf Corsepius <ralf.corsepius@rtems.org>
1328
1329        * aclocal/rtems-top.m4 (rtems_updir): Quote sed args.
1330
13312005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
1332
1333        * make/bsp.mak: Remove CFLAGS_DEBUG_V.
1334
13352005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
1336
1337        * optman/rtems/no-sem.c: Semaphores are rtems_id not Object_id.
1338
13392005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
1340
1341        * libnetworking/rtems_servers/ftp.c,
1342        libnetworking/rtems_servers/ftp.h,
1343        libnetworking/rtems_servers/Makefile.am:
1344        Remove (relocated to cpukit/ftpd).
1345        * configure.ac, Makefile.am, wrapup/Makefile.am: Reflect having
1346        removed move libnetworking/rtems_servers.
1347
13482005-02-03      Ralf Corsepius <ralf.corsepius@rtems.org>
1349
1350        * libnetworking/rtems_servers/ftpd.h: Warning fixes.
1351
13522005-02-03      Ralf Corsepius <ralf.corsepius@rtems.org>
1353
1354        PR 755/rtems
1355        * libnetworking/pppd/ipcp.c: Include <rtems/bsdnet/servers.h>.
1356        Remove local declarations of rtems_bsdnet_nameservers,
1357        rtems_bsdnet_nameservers_count.
1358
13592005-01-31      Sergei Organov <osv@topconrd.ru>
1360
1361        PR 751/pppd
1362        * libnetworking/pppd/chat.c, libnetworking/pppd/rtemsmain.c: The fix
1363        committed to fix PR736 breaks pppd. chat.c should have its own static
1364        ttyfd for pppd to work correctly. The symptom is that second
1365        invokation of chat (for connect script) fails due to pppd_ttyfd set
1366        to -1 by previous chat invokation (for init script). In addition,
1367        this patch fixes leaving of dangling pointer in the abort_stbring[]
1368        by chat_send().
1369
13702005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
1371
1372        * configure.ac: Remove CFLAGS_DEBUG_V.
1373        Don't AC_SUBST(CFLAGS_OPTIMIZE_V), AC_SUBST(CPU_CFLAGS).
1374
13752005-01-22      Ralf Corsepius <ralf.corsepius@rtems.org>
1376
1377        * wrapup/Makefile.am: Remove rtems-ctor.o.
1378
13792005-01-22      Ralf Corsepius <ralf.corsepius@rtems.org>
1380
1381        * libchip/rtc/rtc.h: size_t RTC_Count.
1382
13832005-01-20      Joel Sherrill <joel@OARcorp.com>
1384
1385        PR 736/pppd
1386        * libnetworking/pppd/chat.c, libnetworking/pppd/demand.c,
1387        libnetworking/pppd/pppd.h, libnetworking/pppd/rtemsmain.c,
1388        libnetworking/pppd/sys-rtems.c, libnetworking/pppd/utils.c: ttyfd
1389        should not be static and should have a name more specific to pppd.
1390
13912005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
1392
1393        * libchip/Makefile.am, libnetworking/pppd/Makefile.am,
1394        libnetworking/rtems_servers/Makefile.am,
1395        libnetworking/rtems_telnetd/Makefile.am,
1396        librdbg/Makefile.am, optman/Makefile.am, support/Makefile.am:
1397        Eliminate CFLAGS_OPTIMIZE_V.
1398
13992005-01-06      Ralf Corsepius <ralf.corsepius@rtems.org>
1400
1401        * configure.ac: Pass CFLAGS to testsuites configure.
1402        * aclocal/prog-cxx.m4: Don't invoke _RTEMS_FLAGS to set up
1403        RTEMS_CXXFLAGS. Setup CXXFLAGS from CFLAGS.
1404
14052005-01-05      Ralf Corsepius <ralf.corsepius@rtems.org>
1406
1407        * configure.ac: Pass CFLAGS to cpukit configure.
1408        * aclocal/rtems-flags.m4: Remove (Unused).
1409        * aclocal/prog-ccas.m4: Remove $(GCCSPECS).
1410        * aclocal/env-rtemsbsp.m4:
1411        Comment out CFLAGS_OPTIMIZE_V, CFLAGS_DEBUG_V, CPU_CFLAGS.
1412        * aclocal/prog-cc.m4: Don't invoke _RTEMS_FLAGS to set up
1413        RTEMS_CFLAGS.
1414        * automake/compile.am: AM_CFLAGS = RTEMS_CFLAGS. Add AM_CXXFLAGS.
1415        Remove CPPFLAGS, CFLAGS, CPU_CFLAGS, CFLAGS_OPTIMIZE, ASFLAGS.
1416        Cleanup comments.
1417
14182005-01-01      Ralf Corsepius <ralf.corsepius@rtems.org>
1419
1420        * automake/compile.am: Remove build-variant support.
1421
14222005-01-01      Ralf Corsepius <ralf.corsepius@rtems.org>
1423
1424        * libnetworking/pppd/Makefile.am,
1425        libnetworking/rtems_servers/Makefile.am,
1426        libnetworking/rtems_telnetd/Makefile.am:
1427        Remove build-variant support.
1428
14292005-01-01      Ralf Corsepius <ralf.corsepius@rtems.org>
1430
1431        * libchip/Makefile.am, librdbg/Makefile.am, optman/Makefile.am
1432        support/Makefile.am, wrapup/Makefile.am:
1433        Remove build-variant support.
1434
14352004-11-22      Joel Sherrill <joel@OARcorp.com>
1436
1437        * libchip/network/if_fxp.c: Add entry for another module ID code.
1438
14392004-11-22      Joel Sherrill <joel@OARcorp.com>
1440
1441        PR 693/misc
1442        * libchip/rtc/mc146818a_ioreg.c: Disable unless on a target with
1443        in/outport routines.
1444
14452004-11-22      Joel Sherrill <joel@OARcorp.com>
1446
1447        PR 693/misc
1448        * libchip/rtc/mc146818a_ioreg.c: Disable unless on a target with
1449        in/outport routines.
1450
14512004-11-22      Ralf Corsepius <ralf_corsepius@rtems.org>
1452
1453        * aclocal/enable-itron.m4: Remove (unused).
1454
14552004-11-22      Ralf Corsepius <ralf_corsepius@rtems.org>
1456
1457        * configure.ac: Misc. quoting cleanups.
1458        Enable ada-tests iff --enable-ada and --enable-tests.
1459
14602004-11-20      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>:
1461
1462        PR 703/filesystem
1463        * libchip/ide/ata_internal.h, libchip/ide/ide_ctrl_cfg.h,
1464        libchip/ide/ide_ctrl_io.h, libchip/ide/ata.c,
1465        libchip/ide/ide_controller.c:
1466        Move definitions for ATA modes into ide_ctrl_cfg.h, to make them
1467        available for BSPS/device drivers.
1468        Extend the "modes_available" and "mode_active" parameters to
1469        uint16_t for UDMA support.
1470
14712004-11-10      Richard Campbell <richard.campbell@oarcorp.com>
1472
1473        * libchip/network/dec21140.c: Cleanup a bit and remove message about
1474        not supported on PowerPC since it works on the MVME2100 BSP.
1475
14762004-11-05      Ralf Corsepius <ralf_corsepius@rtems.org>
1477
1478        * configure.ac: Remove check for libbsp/${RTEMS_CPU}.
1479        Add dependency tracking for *.cfgs.
1480        * Makefile.am: Add dependency tracking for *.cfg.
1481
14822004-11-03      Ralf Corsepius <ralf_corsepius@rtems.org>
1483
1484        * libchip/rtc/mc146818a.c: Don't include <bsp.h>
1485        (Thanks to Lars Munch <lars@segv.dk> for catching this).
1486
14872004-10-28      Ralf Corsepius <ralf_corsepius@rtems.org>
1488
1489        PR 707/make_build
1490        * configure.ac: Add --enable-rpcgen.
1491
14922004-10-27      Ralf Corsepius <ralf_corsepius@rtems.org>
1493
1494        PR 700/rtems_misc
1495        * libnetworking/rtems_webserver/asp.c,
1496        libnetworking/rtems_webserver/balloc.c,
1497        libnetworking/rtems_webserver/cgi.c,
1498        libnetworking/rtems_webserver/default.c,
1499        libnetworking/rtems_webserver/ej.h,
1500        libnetworking/rtems_webserver/ejIntrn.h,
1501        libnetworking/rtems_webserver/ejlex.c,
1502        libnetworking/rtems_webserver/ejparse.c,
1503        libnetworking/rtems_webserver/emfdb.c,
1504        libnetworking/rtems_webserver/emfdb.h,
1505        libnetworking/rtems_webserver/form.c,
1506        libnetworking/rtems_webserver/handler.c,
1507        libnetworking/rtems_webserver/h.c,
1508        libnetworking/rtems_webserver/license.txt,
1509        libnetworking/rtems_webserver/Makefile.am,
1510        libnetworking/rtems_webserver/md5c.c,
1511        libnetworking/rtems_webserver/md5.h,
1512        libnetworking/rtems_webserver/mime.c,
1513        libnetworking/rtems_webserver/misc.c,
1514        libnetworking/rtems_webserver/NOTES,
1515        libnetworking/rtems_webserver/ringq.c,
1516        libnetworking/rtems_webserver/rom.c,
1517        libnetworking/rtems_webserver/rtems_webserver.h,
1518        libnetworking/rtems_webserver/security.c,
1519        libnetworking/rtems_webserver/sock.c,
1520        libnetworking/rtems_webserver/socket.c,
1521        libnetworking/rtems_webserver/sockGen.c,
1522        libnetworking/rtems_webserver/sym.c,
1523        libnetworking/rtems_webserver/uemf.c,
1524        libnetworking/rtems_webserver/uemf.h,
1525        libnetworking/rtems_webserver/um.c,
1526        libnetworking/rtems_webserver/um.h,
1527        libnetworking/rtems_webserver/umui.c,
1528        libnetworking/rtems_webserver/url.c,
1529        libnetworking/rtems_webserver/value.c,
1530        libnetworking/rtems_webserver/wbase64.c,
1531        libnetworking/rtems_webserver/webcomp.c,
1532        libnetworking/rtems_webserver/webmain.c,
1533        libnetworking/rtems_webserver/webpage.c,
1534        libnetworking/rtems_webserver/webrom.c,
1535        libnetworking/rtems_webserver/webs.c,
1536        libnetworking/rtems_webserver/websda.c,
1537        libnetworking/rtems_webserver/websda.h,
1538        libnetworking/rtems_webserver/webs.h,
1539        libnetworking/rtems_webserver/websSSL.c,
1540        libnetworking/rtems_webserver/websSSL.h,
1541        libnetworking/rtems_webserver/websuemf.c,
1542        libnetworking/rtems_webserver/wsIntrn.h:
1543        Remove (Moved to cpukit/http).
1544
15452004-10-27      Ralf Corsepius <ralf_corsepius@rtems.org>
1546
1547        PR 700/rtems_misc
1548        * configure.ac, libnetworking/Makefile.am, wrapup/Makefile.am:
1549        Remove libnetworking/rtems_webserver.
1550
15512004-10-25      Eric Norum <norume@aps.anl.gov>
1552
1553        * libchip/network/i82586.c: ether_sprintf() is part of networking library.
1554
15552004-10-22      Ralf Corsepius <ralf_corsepius@rtems.org>
1556
1557        * alocal/check-custom-bsp.m4: Reflect new location of bspkit*cfg.
1558
15592004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
1560
1561        * librdbg/src/i386/rdbg_f.c, librdbg/src/m68k/rdbg_cpu_asm.S
1562        librdbg/src/m68k/rdbg_f.c: Use POSIX fixed size types.
1563
15642004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
1565
1566        * libnetworking/rtems_servers/ftpd.c: Use POSIX fixed size types.
1567
15682004-10-20      Ralf Corsepius <ralf_corsepius@rtems.org>
1569
1570        * libchip/rtc/mc146818a.c, libchip/rtc/mc146818a.h,
1571        libchip/rtc/mc146818a_ioreg.c: Use POSIX fixed size types.
1572
15732004-10-20      Ralf Corsepius <ralf_corsepius@rtems.org>
1574
1575        * libnetworking/rtems_webserver/uemf.h: Use CHAR_BIT for
1576        BITSPERBYTE.
1577
15782004-10-19      Ralf Corsepius <ralf_corsepius@rtems.org>
1579
1580        * libnetworking/pppd/rtemspppd.c: rtems_task_priority priority.
1581        * libnetworking/rtems_telnetd/telnetd.c: Eliminate rtems_unsigned32.
1582
15832004-10-19      Ralf Corsepius <ralf_corsepius@rtems.org>
1584
1585        * libchip/Makefile.am: Reflect addtion of rtc/mc146818*.
1586
15872004-10-19      Ralf Corsepius <ralf_corsepius@rtems.org>
1588
1589        * aclocal/env-rtemsbsp.m4: Remove refs to bare BSP.
1590        * aclocal/enable-bare.m4: Remove.
1591        * configure.ac: Remove BARE_CPU_MODEL.
1592
15932004-10-13      Eric Norum <norume@aps.anl.gov>
1594
1595        PR 688/bsps
1596        * libchip/rtc/rtc.h, libchip/rtc/mc146818a.c, libchip/rtc/mc146818a.h,
1597        libchip/rtc/mc146818a_ioreg.c: New files.  Add libchip driver for
1598        MC146818A (and several Dallas Semiconductor) TOD chips.
1599
16002004-10-13      Eric Norum <norume@aps.anl.gov>
1601
1602        PR 686/networking
1603        * libchip/network/if_fxp.c: Fix lockup in if_fxp.c, add additional
1604        device code.
1605
16062004-10-11      Ralf Corsepius <ralf_corsepius@rtems.org>
1607
1608        * libchip/network/dec21140.c: include <rtems/pci.h>.
1609
16102004-09-29      Joel Sherrill <joel@OARcorp.com>
1611
1612        * aclocal/rtems-cpu-subdirs.m4, libchip/shmdr/shm_driver.h,
1613        libnetworking/pppd/utils.c: i960 obsoleted and all references
1614        removed.
1615
16162004-04-09      Greg Menke <gregory.menke@gsfc.nasa.gov>
1617
1618        PR 607/networking
1619        * libchip/network/dec21140.c: Made PCI configuration minimum sane
1620        instead of fully specifying unused PCI features.
1621
16222004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
1623
1624        * configure.ac: Require automake > 1.9.
1625
16262004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
1627
1628        * aclocal/rtems-cpu-subdirs.m4: Add avr.
1629
16302004-09-21      Ralf Corsepius <ralf_corsepius@rtems.org>
1631
1632        * aclocal/gcc-weak.m4: New (Extracted from cpukit/configure.ac).
1633        * configure.ac: Add RTEMS_CHECK_GCC_WEAK.
1634
16352004-08-17      Ralf Corsepius <ralf_corsepius@rtems.org>
1636
1637        * aclocal/ppc.m4 (RTEMS_PPC_EXCEPTIONS): Quote ac_popdir uses.
1638        * aclocal/target.m4 (_RTEMS_POP_BUILDDIR): Ditto.
1639
16402004-08-17      Ralf Corsepius <ralf_corsepius@rtems.org>
1641
1642        * acinclude.m4 (_RTEMS_CONFIG_SUBDIR): Quote ac_popdir uses.
1643
16442004-07-28  Joel Sherrill <joel@OARcorp.com>
1645
1646    * aclocal/version.m4: Updated to rtems-4.6.99.1.
1647
16482004-07-25      Joel Sherrill <joel@OARcorp.com>
1649
1650        * libchip/network/if_fxp.c: Add include of <sys/errno.h>.
1651
16522004-05-21  Till Strauman <strauman@slac.stanford.edu>
1653
1654        PR 625/networking
1655        * libchip/network/dec21140.c, ... : Prevent name clashes by making
1656        'ld_le32()' etc.  static inlines.  Let dec21140 attach routine return
1657        an error rather than panic if no chip is detected (thus allowing
1658        for probing).
1659        * libchip/network/elnk.c: Let elnk bail out if autoneg never completes
1660        instead of looping forever.  Avoid divide by zero (crashed my PC).
1661        * libchip/network/if_fxp.c: Enable more fxp chip variants but warn that
1662        they are UNTESTED.
1663
16642004-05-10      Ralf Corsepius <ralf_corsepius@rtems.org>
1665
1666        * aclocal/check-cxx.m4: Remove CPLUS_LD_LIBS.
1667
16682004-04-20      Ralf Corsepius <ralf_corsepius@rtems.org>
1669
1670        * libchip/network/dec21140.c, libchip/network/elnk.c:
1671        #include <errno.h>.
1672
16732004-04-20      Ralf Corsepius <ralf_corsepius@rtems.org>
1674
1675        * libchip/network/if_media.h: Update from FreeBSD.
1676        * libchip/network/open_eth.c, libchip/network/cs8900.c,
1677        libchip/network/i82586.c: #include <errno.h>.
1678
16792004-04-14      Ralf Corsepius <ralf_corsepius@rtems.org>
1680
1681        * aclocal/rtems-top.4: Remove RTEMS_ROOT (Obsolete).
1682
16832004-04-14      Ralf Corsepius <ralf_corsepius@rtems.org>
1684
1685        * aclocal/rtems-top.m4: Add project_top/with_project_top processing.
1686
16872004-04-09      Ralf Corsepius <ralf_corsepius@rtems.org>
1688
1689        * optman/Makefile.am: Set EXEEXT = <empty> (Work around to a bug in
1690        automake).
1691
16922004-04-03      Wilfried Busalski <w.busalski@lancier-monitoring.de>
1693
1694        PR 599/pppd
1695        * libnetworking/pppd/chat.c: Free memory that is allocated to fix leak.
1696
16972004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
1698
1699        * optman/rtems/no-region.c: Reflect having changed
1700        rtems_region_get_segment_size.
1701
17022004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
1703
1704        * librdbg/src/i386/rdbg_cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
1705        * librdbg/src/m68k/rdbg_cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
1706        * librdbg/src/powerpc/rdbg_cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
1707        * libchip/ide/ata.c: Include <rtems/chain.h> instead of <chain.h>.
1708        * libchip/ide/ide_controller.c: Include <rtems/chain.h> instead of <chain.h>.
1709        * libchip/shmdr/shm_driver.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
1710        * libchip/serial/ns16550.c: Include <rtems/ringbuf.h> instead of <ringbuf.h>.
1711
17122004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
1713
1714        * libchip/ide/ata.c, libchip/network/dec21140.c,
1715        libchip/network/elnk.c, libchip/network/i82586.c,
1716        libchip/network/if_fxp.c, libchip/network/if_fxpvar.h,
1717        libchip/network/open_eth.c, libchip/network/sonic.c,
1718        libchip/rtc/icm7170.c, libchip/serial/ns16550.c,
1719        libchip/serial/z85c30.c, libchip/shmdr/cnvpkt.c,
1720        libchip/shmdr/init.c, libchip/shmdr/intr.c,
1721        libchip/shmdr/shm_driver.h: Cosmetics.
1722
17232004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
1724
1725        * optman/rtems/no-dpmem.c, optman/rtems/no-mp.c,
1726        optman/rtems/no-msg.c, optman/rtems/no-part.c,
1727        optman/rtems/no-region.c, optman/rtems/no-rtmon.c,
1728        optman/rtems/no-sem.c, optman/rtems/no-timer.c,
1729        optman/sapi/no-ext.c, optman/sapi/no-io.c: Convert to using c99
1730        fixed size types.
1731
17322004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
1733
1734        * configure.ac: Explicitly pass --includedir and --libdir to
1735        cpukit/configure.
1736
17372004-03-30      Ralf Corsepius <ralf_corsepius@rtems.org>
1738
1739        * librdbg/Makefile.am: Fix rpcgen rules.
1740        * librdbg/src/i386/any/remdeb_xdr.c,
1741        librdbg/src/m68k/any/remdeb_xdr.c,
1742        librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c:
1743        Reflect changes to librdbg/Makefile.am.
1744
17452004-03-29      Ralf Corsepius <ralf_corsepius@rtems.org>
1746
1747        * configure.ac: Reflect changes testsuites/configure.ac and
1748        cpukit/configure.ac.
1749
17502004-03-26      Ralf Corsepius <ralf_corsepius@rtems.org>
1751
1752        * aclocal/rtems-top.m4:  Add 2nd arg to RTEMS_TOP.
1753        Rework with_project_root/PROJECT_ROOT and with_project_top/PROJECT_TOPdir.
1754
17552004-03-25      Ralf Corsepius <ralf_corsepius@rtems.org>
1756
1757        * configure.ac: Reflect changes to testsuites's configuration.
1758
17592004-03-23      Ralf Corsepius <ralf_corsepius@rtems.org>
1760
1761        PR/589 rtems
1762        * libchip/network/pci.h: Remove (Moved to cpukit).
1763
17642004-03-23      Ralf Corsepius <ralf_corsepius@rtems.org>
1765
1766        * libchip/ide/ata.c, libchip/ide/ata_internal.h,
1767        libchip/ide/ide_controller.c, libchip/ide/ide_ctrl_cfg.h,
1768        libchip/ide/ide_ctrl_io.h, libchip/network/cs8900.c,
1769        libchip/network/dec21140.c, libchip/network/elnk.c,
1770        libchip/network/if_fxp.c, libchip/network/open_eth.c,
1771        libchip/network/open_eth.h, libchip/network/sonic.c,
1772        libchip/network/sonic.h, libchip/rtc/icm7170.c, libchip/rtc/icm7170.h,
1773        libchip/rtc/icm7170_reg.c, libchip/rtc/icm7170_reg2.c,
1774        libchip/rtc/icm7170_reg4.c, libchip/rtc/icm7170_reg8.c,
1775        libchip/rtc/m48t08.c, libchip/rtc/m48t08.h, libchip/rtc/m48t08_reg.c,
1776        libchip/rtc/m48t08_reg2.c, libchip/rtc/m48t08_reg4.c,
1777        libchip/rtc/m48t08_reg8.c, libchip/rtc/rtc.h, libchip/serial/mc68681.c,
1778        libchip/serial/mc68681.h, libchip/serial/mc68681_reg.c,
1779        libchip/serial/mc68681_reg2.c, libchip/serial/mc68681_reg4.c,
1780        libchip/serial/mc68681_reg8.c, libchip/serial/ns16550.c,
1781        libchip/serial/ns16550_p.h, libchip/serial/serial.h,
1782        libchip/serial/z85c30.c, libchip/serial/z85c30.h,
1783        libchip/serial/z85c30_p.h, libchip/serial/z85c30_reg.c,
1784        libchip/shmdr/addlq.c, libchip/shmdr/cnvpkt.c, libchip/shmdr/dump.c,
1785        libchip/shmdr/fatal.c, libchip/shmdr/getlq.c, libchip/shmdr/init.c,
1786        libchip/shmdr/initlq.c, libchip/shmdr/intr.c, libchip/shmdr/poll.c,
1787        libchip/shmdr/send.c, libchip/shmdr/shm_driver.h: Convert to using c99
1788        fixed-size types.
1789
17902004-03-14      Chris Johns  <chrisj@rtems.org>
1791
1792        * libchip/network/cs8900.c.bsp, libchip/network/cs8900.h.bsp: Updated
1793        the BSP example code.
1794        * libchip/network/cs8900.c, libchip/network/cs8900.h: Changes made to
1795        support the DIMMPC. This is a pc386 target with IO port support. Minor
1796        formating clean up. Add documentation to the header file.
1797        * libchip/network/README.cs8900: The CS8900 driver is documented in the
1798        cs8900.h header file.
1799
18002004-03-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1801
1802        * libchip/network/dec21140.c: Use __PPC__ instead of __PPC.
1803        Cosmetics.
1804
18052004-03-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1806
1807        * aclocal/canonicalize-tools.m4: Revert Joel's 2004-03-04's patch.
1808        There are no application level Makefiles in here.
1809
18102004-03-04      Joel Sherrill <joel@OARcorp.com>
1811
1812        * aclocal/canonicalize-tools.m4: Add SIZE, NM, and OBJCOPY so
1813        they can be used in application level makefiles.
1814
18152004-03-05      Joel Sherrill <joel@OARcorp.com>
1816
1817        * libnetworking/rtems_webserver/ejparse.c,
1818        libnetworking/rtems_webserver/emfdb.c,
1819        libnetworking/rtems_webserver/sock.c,
1820        libnetworking/rtems_webserver/socket.c,
1821        libnetworking/rtems_webserver/sym.c,
1822        libnetworking/rtems_webserver/webs.c,
1823        libnetworking/rtems_webserver/websuemf.c: Remove warnings.
18242004-03-05      Joel Sherrill <joel@OARcorp.com>
1825
1826        * libchipnetwork/open_eth.c: Remove warnings by conditionally
1827        compiling this file only only those CPU families with supported
1828        exception models.
1829
18302004-02-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1831
1832        * acinclude.m4: Fix loosing arguments when configuring cpukit and
1833        testsuites (Was exposed with --enable-multilib, only).
1834        Remove RTEMS_SUBCONFIGURE_ARGS_QUOTE. RTEMS_CONFIG_SUBDIR.
1835         Add RTEMS_BSP_CONFIG_SUBDIR.
1836        * configure.ac: Reflect changes to acinclude.m4. Reflect new args to
1837        testsuites's configure.
1838        * aclocal/rtems-top.m4: Remove ENDIF hack.
1839        Rework and fix setting up PROJECT_TOPdir (PACKHEX wasn't found).
1840
18412004-02-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1842
1843        * libchip/Makefile.am, librdbg/Makefile.am, optman/Makefile.am,
1844        wrapup/Makefile.am: Fix automake problems having been introduced
1845        in previous patch.
1846
18472004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1848
1849        * libchip/Makefile.am, librdbg/Makefile.am, optman/Makefile.am:
1850        Preinstall dirs.
1851        * wrapup/Makefile.am: Preinstall dirs. Cosmetics.
1852        * aclocal/check-multiprocessing.m4: Cosmetics.
1853        * aclocal/env-rtemsbsp.m4: Remove RTEMS_ROOT.
1854        * aclocal/project-root.m4: Remove obsolete comments. Remove PACKHEX.
1855
18562004-02-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1857
1858        * librdbg/Makefile.am: Merge-in librdbg/include/Makefile.am,
1859        librdbg/src/Makefile.am.
1860        * librdbg/include/Makefile.am, librdbg/src/Makefile.am: Remove.
1861        * configure.ac: Reflect changes above.
1862        Unconditionally apply RTEMS_CHECK_MULTIPROCESSING.
1863        * wrapup/Makefile.am: Reflect changes above.
1864        * Makefile.am: Add DIST_SUBDIRS = @BSP_SUBDIRS@.
1865
18662004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1867
1868        * aclocal/check-rdbg.m4: Don't AC_SUBST(HAS_RDBG).
1869
18702004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1871
1872        * Makefile.am: DISTCLEANFILES += @CUSTOM_CFG_FILES.
1873
18742004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1875
1876        * wrapup/Makefile.am: Reflect new location of librdbg.a.
1877
18782004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1879
1880        * librdbg/src/i386/Makefile.am, librdbg/src/m68k/Makefile.am,
1881        librdbg/src/powerpc/Makefile.am: Remove.
1882        * librdbg/src/Makefile.am: Merge-in librdbg/src/i386/Makefile.am,
1883        librdbg/src/m68k/Makefile.am, librdbg/src/powerpc/Makefile.am.
1884        * configure.ac: Reflect changes above.
1885
18862004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1887
1888
18892004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1890
1891        * aclocal/canonicalize-tools.m4: Don't check for NM, OBJCOPY, SIZE,
1892        STRIP.
1893
18942004-02-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1895
1896        * librdbg/include/Makefile.am: Merge-in
1897        librdbg/include/rdbg/i386/Makefile.am,
1898        librdbg/include/rdbg/m68k/Makefile.am, librdbg/include/rdbg/Makefile.am,
1899        librdbg/include/rdbg/powerpc/Makefile.am.
1900        * librdbg/include/rdbg/i386/Makefile.am,
1901        librdbg/include/rdbg/m68k/Makefile.am, librdbg/include/rdbg/Makefile.am,
1902        librdbg/include/rdbg/powerpc/Makefile.am: Remove.
1903        * configure.ac: Reflect changes above.
1904
19052004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1906
1907        * configure.ac: Use AS_HELP_STRING(ada).
1908
19092004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1910
1911        * aclocal/bspopts.m4: Use AS_HELP_STRING.
1912        * aclocal/bsp-configure.m4: Require autoconf-2.59.
1913        Use AC_CONFIG_HEADERS.
1914        * aclocal/check-custom-bsp.m4: Add bspkit-support.
1915        * aclocal/enable-rtemsbsp.m4: Use AS_HELP_STRING.
1916
19172004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1918
1919        * Makefile.am: include local.am.
1920
19212004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1922
1923        * aclocal/version.m4: 4.6.99.0.
1924
19252004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1926
1927        * Makefile.am: Don't include host.am.
1928        * automake/compile.am: Further cleanups.
1929
19302004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1931
1932        * automake/lib.am: Remove (Unused).
1933
19342004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1935
1936        * wrapup/Makefile.am: Don't include lib.am.
1937        * automake/compile.am: Use automake compilation rules.
1938
19392004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1940
1941        * libnetworking/pppd/Makefile.am,
1942        libnetworking/rtems_servers/Makefile.am,
1943        libnetworking/rtems_telnetd/Makefile.am,
1944        libnetworking/rtems_webserver/Makefile.am, optman/Makefile.am,
1945        support/Makefile.am: Don't include lib.am.
1946
19472004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1948
1949        * libchip/Makefile.am: Don't include lib.am.
1950        * librdbg/src/i386/Makefile.am, librdbg/src/m68k/Makefile.am,
1951        librdbg/src/powerpc/Makefile.am: Don't include lib.am. Remove
1952        unnecessary EXTRA_DISTs.
1953
19542004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1955
1956        * configure.ac: Add powerpc's <bsp>/wrapup/Makefile.am detection
1957        hack.
1958
19592004-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1960
1961        * libnetworking/rtems_webserver/Makefile.am: Add PREINSTALL_DIRS.
1962        * libnetworking/rtems_telnetd/Makefile.am: Add PREINSTALL_DIRS.
1963        * libnetworking/rtems_servers/Makefile.am: Add PREINSTALL_DIRS.
1964        * libnetworking/pppd/Makefile.am: Add PREINSTALL_DIRS.
1965
19662004-02-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1967
1968        * aclocal/check-multiprocessing.m4: Remove AC_SUBST(HAS_MP).
1969        Add AM_CONDITIONAL(HAS_MP).
1970        * wrapup/Makefile.am: Fix path to ../libchip/shmdr.rel.
1971        * configure.ac: Remove AM_CONDITIONAL(HAS_MP).
1972        * aclocal/enable-cxx.m4, aclocal/enable-itron.m4,
1973        aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
1974        aclocal/enable-posix.m4, aclocal/enable-rdbg.m4,
1975        aclocal/multilib.m4: Use AS_HELP_STRING instead of AC_HELP_STRING
1976        (Deprecated by autoconf 2.59).
1977
19782004-01-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1979
1980        * configure.ac: Add AM_CONDITIONAL HAS_WRAPUP_LIBBSP.
1981        * wrapup/Makefile.am: Add AM_CONDITIONAL HAS_WRAPUP_LIBBSP.
1982
19832004-01-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1984
1985        * ChangeLog: Merge-in libnetworking/ChangeLog.
1986        * libnetworking/ChangeLog: Remove.
1987        * ChangeLog: Merge-in librdbg/ChangeLog.
1988        * librdbg/ChangeLog: Remove.
1989        * ChangeLog: Merge-in libchip/ChangeLog.
1990        * libchip/ChangeLog: Remove.
1991        * ChangeLog: Merge-in optman/ChangeLog.
1992        * optman/ChangeLog: Remove.
1993
19942004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1995
1996        * configure.ac: Reflect changes to cpukit.
1997        * wrapup/Makefile.am: Reflect changes to librdbg.
1998        * aclocal/enable-bare.m4: Convert to autoconf-2.59.
1999        * libchip/Makefile.am: Add PREINSTALL_DIRS.
2000        * librdbg/include/rdbg/Makefile.am: Add PREINSTALL_DIRS.
2001        * librdbg/include/rdbg/i386/Makefile.am: Add PREINSTALL_DIRS.
2002        * librdbg/include/rdbg/m68k/Makefile.am: Add PREINSTALL_DIRS.
2003        * librdbg/include/rdbg/powerpc/Makefile.am: Add PREINSTALL_DIRS.
2004        * librdbg/src/i386/Makefile.am: Add PREINSTALL_DIRS.
2005        * librdbg/src/m68k/Makefile.am: Add PREINSTALL_DIRS.
2006        * librdbg/src/powerpc/Makefile.am: Add PREINSTALL_DIRS.
2007
20082004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2009
2010        * aclocal/rtems-top.m4: Remove check for version.m4.
2011        * automake/compile.am: Remove LINK_OBJS, LINK_FILES (Unused).
2012
20132004-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2014
2015        * automake/compile.am: Add RTEMS_RELLDFLAGS. Remove XLDFLAGS.
2016        * wrapup/Makefile.am: Reflect changes to libchip/*.
2017        * support/Makefile.am: Use automake compilation rules.
2018        * wrapup/Makefile.am: Reflect changes to support/*.
2019        * configure.ac: Remove libnetworking/wrapup/Makefile.
2020        * wrapup/Makefile.am: Reflect change to libnetworking/*. Use
2021        libnetworking/*/lib*.a instead of libnetapps.a.
2022        * configure.ac: Add subdir-objects to AUTOMAKE_OPTIONS. Require
2023        automake-1.8.2. Add RTEMS_PROG_CCAS. Add AM_PROG_CC_C_O.
2024        * optman/Makefile.am: Use automake compilation rules.
2025        * libchip/Makefile.am: Fix typo in previous patch.
2026        * libchip/Makefile.am: Use automake compilation rules.
2027        * libnetworking/Makefile.am: Remove wrapup.
2028        * libnetworking/pppd/Makefile.am: Build libpppd. Use
2029        automake-compilation rules.
2030        * libnetworking/rtems_servers/Makefile.am: Build libftpd. Use
2031        automake-compilation rules.
2032        * libnetworking/rtems_telnetd/Makefile.am: Build libtelnetd. Use
2033        automake-compilation rules.
2034        * libnetworking/rtems_webserver/Makefile.am: Build libhttpd. Use
2035        automake-compilation rules.
2036        * libnetworking/wrapup/Makefile.am: Remove (Unused).
2037
20382004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2039
2040        * wrapup/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add
2041        PRE/TMPINSTALL_FILES to CLEANFILES.
2042        * automake/lib.am: Remove TMPINSTALL_FILES.
2043        * optman/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add
2044        PRE/TMPINSTALL_FILES to CLEANFILES.
2045        * libchip/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES. Add
2046        PRE/TMPINSTALL_FILES to CLEANFILES.
2047        * librdbg/include/rdbg/Makefile.am: Re-add dirstamps to
2048        PRE/TMPINSTALL_FILES. Add PRE/TMPINSTALL_FILES to CLEANFILES.
2049        * librdbg/include/rdbg/i386/Makefile.am: Ditto.
2050        * librdbg/include/rdbg/m68k/Makefile.am: Ditto.
2051        * librdbg/include/rdbg/powerpc/Makefile.am: Ditto.
2052        * librdbg/src/i386/Makefile.am: Ditto.
2053        * librdbg/src/m68k/Makefile.am: Ditto.
2054        * librdbg/src/powerpc/Makefile.am: Ditto.
2055        * libnetworking/pppd/Makefile.am: Re-add dirstamps to
2056        PRE/TMPINSTALL_FILES. Add PRE/TMPINSTALL_FILES to CLEANFILES.
2057        * libnetworking/rtems_servers/Makefile.am: Ditto.
2058        * libnetworking/rtems_telnetd/Makefile.am: Ditto.
2059        * libnetworking/rtems_webserver/Makefile.am: Ditto.
2060
20612004-01-07      Joel Sherrill <joel@OARcorp.com>
2062
2063        * aclocal/rtems-cpu-subdirs.m4: mips64orion port removed as mips port
2064        more completely covers the MIPS family.
2065
20662003-12-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2067
2068        * wrapup/Makefile.am: Reflect changes to shmdr.
2069        * libchip/Makefile.am: Add shmdr. Use noinst_DATA instead of TMP_LIBS.
2070
20712003-12-18      Joel Sherrill <joel@OARcorp.com>
2072
2073        * libchip/shmdr/addlq.c, libchip/shmdr/cnvpkt.c, libchip/shmdr/dump.c,
2074        libchip/shmdr/fatal.c, libchip/shmdr/getlq.c, libchip/shmdr/getpkt.c,
2075        libchip/shmdr/init.c, libchip/shmdr/initlq.c, libchip/shmdr/intr.c,
2076        libchip/shmdr/mpci.h, libchip/shmdr/mpisr.c, libchip/shmdr/poll.c,
2077        libchip/shmdr/README, libchip/shmdr/receive.c, libchip/shmdr/retpkt.c,
2078        libchip/shmdr/send.c, libchip/shmdr/setckvec.c,
2079        libchip/shmdr/shm_driver.h: Copied from libbsp/shmdr.
2080
20812003-12-17      Joel Sherrill <joel@OARcorp.com>
2082
2083        * aclocal/version.m4: Updated to rtems-20031217-test.
2084
20852003-12-17     
2086
2087        * c/src/aclocal/version.m4: Updated to rtems-20031217-test.
2088        * c/src/aclocal/version.m4: Updated to rtems-20031217-test.
2089
20902003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2091
2092        * automake/compile.am: Remove LINK_LIBS (Unused).
2093        * configure.ac: Reflect changes to RTEMS_CONFIG_SUBDIR.
2094
20952003-12-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2096
2097        * automake/compile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
2098        * wrapup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
2099        * acinclude.m4: Rework RTEMS_CONFIG_SUBDIR.
2100        * Makefile.am: Reflect changes to RTEMS_CONFIG_SUBDIR.
2101        * support/Makefile.am: Pass @RTEMS_BSP@ to AM_CPPFLAGS.
2102
21032003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2104
2105        * aclocal/env-rtemsbsp.m4: Add PROJECT_LIB.
2106        * wrapup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
2107        * optman/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
2108        * libchip/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
2109        * librdbg/src/i386/Makefile.am:
2110        s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
2111        * librdbg/src/m68k/Makefile.am:
2112        s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
2113        * librdbg/src/powerpc/Makefile.am:
2114        s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
2115
21162003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2117
2118        * wrapup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
2119        * aclocal/lead-dot.m4: Remove (Provided by automake-1.8).
2120        * automake/compile.am: Use mkdir_p instead of mkinstalldirs.
2121        * automake/lib.am: Use mkdir_p instead of mkdir. Remove
2122        $(PROJECT_RELEASE)/lib/$(dirstamp) handling.
2123        * aclocal/env-rtemsbsp.m4: Remove bsplibdir. Cleanups.
2124        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
2125        * optman/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
2126        * optman/Makefile.am: Remove project_libdir.
2127        * libchip/Makefile.am: Use mkdir_p. Remove dirs from
2128        PRE/TMPINSTALL_FILES.
2129        * librdbg/include/rdbg/Makefile.am: Use mkdir_p. Remove dirs from
2130        PRE/TMPINSTALL_FILES.
2131        * librdbg/include/rdbg/i386/Makefile.am: Use mkdir_p. Remove dirs from
2132        PRE/TMPINSTALL_FILES.
2133        * librdbg/include/rdbg/m68k/Makefile.am: Use mkdir_p. Remove dirs from
2134        PRE/TMPINSTALL_FILES.
2135        * librdbg/include/rdbg/powerpc/Makefile.am: Use mkdir_p. Remove dirs
2136        from PRE/TMPINSTALL_FILES.
2137        * librdbg/src/i386/Makefile.am: Use mkdir_p. Remove dirs from
2138        PRE/TMPINSTALL_FILES.
2139        * librdbg/src/m68k/Makefile.am: Use mkdir_p. Remove dirs from
2140        PRE/TMPINSTALL_FILES.
2141        * librdbg/src/powerpc/Makefile.am: Use mkdir_p. Remove dirs from
2142        PRE/TMPINSTALL_FILES.
2143        * libnetworking/pppd/Makefile.am: Use mkdir_p. Remove dirs from
2144        PRE/TMPINSTALL_FILES.
2145        * libnetworking/rtems_servers/Makefile.am: Use mkdir_p. Remove dirs from
2146        PRE/TMPINSTALL_FILES.
2147        * libnetworking/rtems_telnetd/Makefile.am: Use mkdir_p. Remove dirs from
2148        PRE/TMPINSTALL_FILES.
2149        * libnetworking/rtems_webserver/Makefile.am: Use mkdir_p. Remove dirs
2150        from PRE/TMPINSTALL_FILES.
2151
21522003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2153
2154        * aclocal/env-rtemsbsp.m4: AC_SUBST(project_libdir).
2155        * automake/lib.am: Remove project_libdir.
2156        * wrapup/Makefile.am: Reworked.
2157
21582003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2159
2160        * configure.ac: Reflect changes to librdbg.
2161        * optman/Makefile.am: Add tmpinstall dirstamp support.
2162        * libchip/Makefile.am: Fix variant-tmpinstall support.
2163        * librdbg/src/powerpc/new_exception_processing/Makefile.am: Remove.
2164        * librdbg/src/powerpc/Makefile.am: Merge-in former
2165        new_exception_processing/Makefile.am.
2166        * librdbg/src/m68k/any/Makefile.am: Remove.
2167        * librdbg/src/m68k/Makefile.am: Merge-in former any/Makefile.am.
2168        * librdbg/src/i386/any/Makefile.am: Remove.
2169        * librdbg/src/i386/Makefile.am: Merge-in former any/Makefile.am.
2170        * librdbg/src/Makefile.am: Cosmetics.
2171        * librdbg/include/Makefile.am: Cosmetics.
2172        * librdbg/Makefile.am: Cosmetics.
2173        * libnetworking/Makefile.am: Cosmetics.
2174        * libnetworking/pppd/Makefile.am: Cosmetics.
2175        * libnetworking/wrapup/Makefile.am: Cosmetics.
2176
21772003-12-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2178
2179        * Makefile.am: Cosmetics.
2180        * automake/lib.am: Add project_libdir. Add preinstallation dirstamp
2181        support.
2182
21832003-12-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2184
2185        * automake/compile.am: Remove $(ARCH):-rule.
2186
21872003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2188
2189        * configure.ac: Remove lib/libbsp/shared/Makefile,
2190        lib/libbsp/shmdr/Makefile.
2191
21922003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2193
2194        * configure.ac: Remove libchip/ide/Makefile, libchip/network/Makefile,
2195        libchip/serial/Makefile, libchip/rtc/Makefile.
2196        * support/Makefile.am: Remove all-local: $(ARCH).
2197        * wrapup/Makefile.am: Remove all-local: $(ARCH).
2198        * automake/compile.am: Add $(ARCH)/$(dirstamp) rules.
2199        * optman/Makefile.am: Add dependencies to $(ARCH)/$(dirstamp). Reformat.
2200        * optman/Makefile.am: Remove all-local: $(ARCH).
2201        * libchip/ide/Makefile.am, libchip/network/Makefile.am,
2202        libchip/rtc/Makefile.am, libchip/ serial/Makefile.am: Remove.
2203        * libchip/Makefile.am: Merge-in Makefile.am above. Add preinstallation +
2204        compilation dirstamp support.
2205        * libchip/ide/Makefile.am: Remove all-local: $(ARCH).
2206        * libchip/network/Makefile.am: Remove all-local: $(ARCH).
2207        * libchip/rtc/Makefile.am: Remove all-local: $(ARCH).
2208        * libchip/serial/Makefile.am: Remove all-local: $(ARCH).
2209        * librdbg/src/i386/any/Makefile.am: Remove all-local: $(ARCH).
2210        * librdbg/src/m68k/any/Makefile.am: Remove all-local: $(ARCH).
2211        * librdbg/src/powerpc/new_exception_processing/Makefile.am: Remove
2212        all-local: $(ARCH).
2213        * libnetworking/pppd/Makefile.am: Remove all-local: $(ARCH).
2214        * libnetworking/rtems_servers/Makefile.am: Remove all-local: $(ARCH).
2215        * libnetworking/rtems_telnetd/Makefile.am: Remove all-local: $(ARCH).
2216        * libnetworking/rtems_webserver/Makefile.am: Remove all-local: $(ARCH).
2217        * libnetworking/wrapup/Makefile.am: Remove all-local: $(ARCH).
2218
22192003-12-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2220
2221        * aclocal/lead-dot.m4: New (from automake-1.7f).
2222        * aclocal/rtems-top.m4: Require AM_SET_LEADING_DOT. Add
2223        AC_SUBST(dirstamp).
2224        * libchip/ide/Makefile.am: Use dirstamps for preinstallation. Reformat.
2225        * libchip/network/Makefile.am, libchip/rtc/Makefile.am,
2226        libchip/serial/Makefile.am: Ditto.
2227        * librdbg/Makefile.am: Reformat. Apply dirstamps to preinstallation.
2228        * librdbg/include/Makefile.am: Ditto.
2229        * librdbg/include/rdbg/Makefile.am: Ditto.
2230        * librdbg/include/rdbg/i386/Makefile.am: Ditto.
2231        * librdbg/include/rdbg/m68k/Makefile.am: Ditto.
2232        * librdbg/include/rdbg/powerpc/Makefile.am: Ditto.
2233        * librdbg/src/Makefile.am: Ditto.
2234        * librdbg/src/i386/Makefile.am: Ditto.
2235        * librdbg/src/i386/any/Makefile.am: Ditto.
2236        * librdbg/src/m68k/Makefile.am: Ditto.
2237        * librdbg/src/m68k/any/Makefile.am: Ditto.
2238        * librdbg/src/powerpc/Makefile.am: Ditto.
2239        * librdbg/src/powerpc/new_exception_processing/Makefile.am: Ditto.
2240        * libnetworking/Makefile.am: Reformat. Apply dirstamps to
2241        preinstallation.
2242        * libnetworking/pppd/Makefile.am: Ditto.
2243        * libnetworking/rtems_servers/Makefile.am: Ditto.
2244        * libnetworking/rtems_telnetd/Makefile.am: Ditto.
2245        * libnetworking/rtems_webserver/Makefile.am: Ditto.
2246        * libnetworking/wrapup/Makefile.am: Ditto.
2247
22482003-11-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2249
2250        * aclocal/bsp-arg-enable.m4, aclocal/canonical-target-name.m4,
2251        aclocal/canonicalize-tools.m4, aclocal/check-custom-bsp.m4,
2252        aclocal/check-posix.m4, aclocal/check-rdbg.m4, aclocal/check-tool.m4,
2253        aclocal/config-subdirs.m4, aclocal/enable-bare.m4,
2254        aclocal/enable-cxx.m4, aclocal/enable-itron.m4,
2255        aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4,
2256        aclocal/enable-posix.m4, aclocal/enable-rdbg.m4,
2257        aclocal/enable-rtemsbsp.m4, aclocal/env-rtemsbsp.m4,
2258        aclocal/gcc-isystem.m4, aclocal/gcc-pipe.m4, aclocal/gcc-specs.m4,
2259        aclocal/i386-gas-code16.m4, aclocal/multilib.m4, aclocal/path-ksh.m4,
2260        aclocal/prog-cc.m4, aclocal/prog-cxx.m4, aclocal/project-root.m4,
2261        aclocal/rtems-top.m4, aclocal/target.m4, aclocal/tool-paths.m4: Fix
2262        underquoting to silence automake-1.8.
2263
22642003-11-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2265
2266        * configure.ac: Reflect having moved tests to ../../testsuites.
2267
22682003-10-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2269
2270        * aclocal/bsp-configure.m4: AC_PREREQ(2.57). Remove RTEMS_CANONICAL_HOST.
2271        * aclocal/canonical-host.m4: Remove.
2272        * aclocal/canonical-target-name.m4: Merge-in aclocal/canonical-host.m4.
2273        * configure.ac: Remove RTEMS_CANONICAL_HOST.
2274
22752003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2276
2277        * aclocal/check-cpu.m4: Remove.
2278        * configure.ac: Merge-in former aclocal/check-cpu.m4.
2279        * aclocal/canonical-target-name.m4: Add m4-quotes.
2280        * aclocal/check-cxx.m4: Add m4-quotes. Don't require RTEMS_CHECK_CPU.
2281        * aclocal/check-multiprocessing.m4: Add m4-quotes. Require
2282        RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
2283        * aclocal/check-networking.m4: Add m4-quotes. Require
2284        RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
2285        * aclocal/check-posix.m4: Add m4-quotes. Require
2286        RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
2287        * aclocal/check-rdbg.m4: Add m4-quotes. Require
2288        RTEMS_CANONICAL_TARGET_CPU instead of RTEMS_CHECK_CPU.
2289        * libchip/network/open_eth.c: Remove #define OPEN_ETH_SUPPORTED (Unused).
2290
22912003-10-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2292
2293        * aclocal/check-multiprocessing.m4: Remove RTEMS_BSP_ALIAS.
2294        * aclocal/bsp-alias.m4: Remove.
2295
22962003-10-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2297
2298        * configure.ac: Make presence of tests/ optional.
2299
23002003-10-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2301
2302        * aclocal/path-perl.m4: Remove (Unused).
2303
23042003-10-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2305
2306        * automake/force-preinstall.am: Remove.
2307
23082003-09-26      Cedric Aubert <cedric_aubert@yahoo.fr>
2309
2310        PR 499/rtems_misc
2311        * libchip/serial/mc68681.c:  Miscellaneous corrections: - Correction of
2312        ACR_BIT[7] (Baudrate table) Configuration - Correction of Parity Bit
2313        Configuration (Odd was forced) - Correction of Stop Bit configuration
2314        (inversed) - Correction of ISR Handler to call
2315        rtems_termios_dequeue_character() only if is a Tx Empty IRQ. - Add RTS
2316        CTS Hardware flow control Configuration.
2317
23182003-09-04      Joel Sherrill <joel@OARcorp.com>
2319
2320        * lib/libcpu/shared/include/cache.h,
2321        lib/libcpu/shared/src/cache_aligned_malloc.c,
2322        lib/libcpu/shared/src/cache_manager.c, support/version.c: URL for
2323        license changed.
2324        * optman/rtems/no-dpmem.c, optman/rtems/no-event.c,
2325        optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c,
2326        optman/rtems/no-region.c, optman/rtems/no-rtmon.c,
2327        optman/rtems/no-sem.c, optman/rtems/no-signal.c,
2328        optman/rtems/no-timer.c, optman/sapi/no-ext.c, optman/sapi/no-io.c: URL
2329        for license changed.
2330        * libchip/ide/ata.c, libchip/ide/ata.h, libchip/ide/ata_internal.h,
2331        libchip/ide/ide_controller.c, libchip/ide/ide_ctrl.h,
2332        libchip/ide/ide_ctrl_cfg.h, libchip/ide/ide_ctrl_io.h,
2333        libchip/network/cs8900.c, libchip/network/cs8900.c.bsp,
2334        libchip/network/cs8900.h, libchip/network/dec21140.c,
2335        libchip/network/elnk.c, libchip/network/open_eth.c,
2336        libchip/network/sonic.c, libchip/network/sonic.h, libchip/rtc/icm7170.c,
2337        libchip/rtc/icm7170.h, libchip/rtc/icm7170_reg.c,
2338        libchip/rtc/icm7170_reg2.c, libchip/rtc/icm7170_reg4.c,
2339        libchip/rtc/icm7170_reg8.c, libchip/rtc/m48t08.c, libchip/rtc/m48t08.h,
2340        libchip/rtc/m48t08_reg.c, libchip/rtc/m48t08_reg2.c,
2341        libchip/rtc/m48t08_reg4.c, libchip/rtc/m48t08_reg8.c, libchip/rtc/rtc.h,
2342        libchip/rtc/rtcprobe.c, libchip/serial/mc68681.c,
2343        libchip/serial/mc68681.h, libchip/serial/mc68681_p.h,
2344        libchip/serial/mc68681_reg.c, libchip/serial/mc68681_reg2.c,
2345        libchip/serial/mc68681_reg4.c, libchip/serial/mc68681_reg8.c,
2346        libchip/serial/serial.h, libchip/serial/z85c30.c,
2347        libchip/serial/z85c30.h, libchip/serial/z85c30_p.h,
2348        libchip/serial/z85c30_reg.c: URL for license changed.
2349
23502003-09-03      Jiri Gaisler <jiri@gaisler.com>
2351
2352        PR 477/networking
2353        * libchip/network/Makefile.am: Add driver for OpenCores NIC.
2354        * libchip/network/README.open_eth, libchip/network/open_eth.c,
2355        libchip/network/open_eth.h: New files.
2356
23572003-08-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2358
2359        * aclocal/rtems-top.m4: Add RTEMS_API.
2360        AC_DEFAULT_PREFIX([/opt/rtems-][RTEMS_API]).
2361
23622003-08-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2363
2364        * librdbg/src/i386/any/Makefile.am, librdbg/src/m68k/any/Makefile.am,
2365        librdbg/src/powerpc/new_exception_processing/Makefile.am: Don't include
2366        @RTEMS_BSP@.cfg.
2367
23682003-08-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2369
2370        * libchip/ide/Makefile.am: Don't include @RTEMS_BSP@.cfg.
2371
23722003-08-20      Joel Sherrill <joel@OARcorp.com>
2373
2374        * libchip/network/cs8900.c: Correct copyright statements.
2375
23762003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2377
2378        * aclocal/check-itron.m4: Remove.
2379        * aclocal/enable-inlines.m4: Remove.
2380        * Makefile.am: Reflect having moved aclocal/.
2381        * aclocal/bsp-alias.m4: New (Copied from ../../aclocal).
2382        * aclocal/bsp-arg-enable.m4: New (Copied from ../../aclocal).
2383        * aclocal/bsp-configure.m4: New (Copied from ../../aclocal).
2384        * aclocal/bspopts.m4: New (Copied from ../../aclocal).
2385        * aclocal/canonical-host.m4: New (Copied from ../../aclocal).
2386        * aclocal/canonicalize-tools.m4: New (Copied from ../../aclocal).
2387        * aclocal/canonical-target-name.m4: New (Copied from ../../aclocal).
2388        * aclocal/check-cpu.m4: New (Copied from ../../aclocal).
2389        * aclocal/check-custom-bsp.m4: New (Copied from ../../aclocal).
2390        * aclocal/check-cxx.m4: New (Copied from ../../aclocal).
2391        * aclocal/check-itron.m4: New (Copied from ../../aclocal).
2392        * aclocal/check-multiprocessing.m4: New (Copied from ../../aclocal).
2393        * aclocal/check-networking.m4: New (Copied from ../../aclocal).
2394        * aclocal/check-posix.m4: New (Copied from ../../aclocal).
2395        * aclocal/check-rdbg.m4: New (Copied from ../../aclocal).
2396        * aclocal/check-tool.m4: New (Copied from ../../aclocal).
2397        * aclocal/config-subdirs.m4: New (Copied from ../../aclocal).
2398        * aclocal/enable-bare.m4: New (Copied from ../../aclocal).
2399        * aclocal/enable-cxx.m4: New (Copied from ../../aclocal).
2400        * aclocal/enable-inlines.m4: New (Copied from ../../aclocal).
2401        * aclocal/enable-itron.m4: New (Copied from ../../aclocal).
2402        * aclocal/enable-multiprocessing.m4: New (Copied from ../../aclocal).
2403        * aclocal/enable-networking.m4: New (Copied from ../../aclocal).
2404        * aclocal/enable-posix.m4: New (Copied from ../../aclocal).
2405        * aclocal/enable-rdbg.m4: New (Copied from ../../aclocal).
2406        * aclocal/enable-rtemsbsp.m4: New (Copied from ../../aclocal).
2407        * aclocal/env-rtemsbsp.m4: New (Copied from ../../aclocal).
2408        * aclocal/gcc-isystem.m4: New (Copied from ../../aclocal).
2409        * aclocal/gcc-pipe.m4: New (Copied from ../../aclocal).
2410        * aclocal/gcc-specs.m4: New (Copied from ../../aclocal).
2411        * aclocal/i386-gas-code16.m4: New (Copied from ../../aclocal).
2412        * aclocal/multilib.m4: New (Copied from ../../aclocal).
2413        * aclocal/path-ksh.m4: New (Copied from ../../aclocal).
2414        * aclocal/path-perl.m4: New (Copied from ../../aclocal).
2415        * aclocal/ppc.m4: New (Copied from ../../aclocal).
2416        * aclocal/prog-ccas.m4: New (Copied from ../../aclocal).
2417        * aclocal/prog-cc.m4: New (Copied from ../../aclocal).
2418        * aclocal/prog-cxx.m4: New (Copied from ../../aclocal).
2419        * aclocal/project-root.m4: New (Copied from ../../aclocal).
2420        * aclocal/quoting.m4: New (Copied from ../../aclocal).
2421        * aclocal/rtems-cpu-subdirs.m4: New (Copied from ../../aclocal).
2422        * aclocal/rtems-flags.m4: New (Copied from ../../aclocal).
2423        * aclocal/rtems-top.m4: New (Copied from ../../aclocal).
2424        * aclocal/target.m4: New (Copied from ../../aclocal).
2425        * aclocal/tool-paths.m4: New (Copied from ../../aclocal).
2426        * aclocal/version.m4: New (Copied from ../../aclocal).
2427
24282003-08-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2429
2430        * configure.ac: Remove stray comments.
2431        * automake/local.am, automake/host.am: Remove "debug".
2432
24332003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2434
2435        * Makefile.am: Reflect having moved automake/.
2436        * lib/Makefile.am: Reflect having moved automake/.
2437        * support/Makefile.am: Reflect having moved automake/.
2438        * wrapup/Makefile.am: Reflect having moved automake/.
2439        * automake/compile.am, automake/force-preinstall.am, automake/host.am,
2440        automake/lib.am, automake/local.am, automake/subdirs.am: New (copied
2441        from ../../automake).
2442        * optman/Makefile.am: Reflect having moved automake/.
2443        * libchip/Makefile.am: Reflect having moved automake/.
2444        * libchip/ide/Makefile.am: Reflect having moved automake/.
2445        * libchip/network/Makefile.am: Reflect having moved automake/.
2446        * libchip/rtc/Makefile.am: Reflect having moved automake/.
2447        * libchip/serial/Makefile.am: Reflect having moved automake/.
2448        * librdbg/Makefile.am: Reflect having moved automake/.
2449        * librdbg/include/Makefile.am: Reflect having moved automake/.
2450        * librdbg/include/rdbg/Makefile.am: Reflect having moved automake/.
2451        * librdbg/include/rdbg/i386/Makefile.am: Reflect having moved automake/.
2452        * librdbg/include/rdbg/m68k/Makefile.am: Reflect having moved automake/.
2453        * librdbg/include/rdbg/powerpc/Makefile.am: Reflect having moved
2454        automake/.
2455        * librdbg/src/Makefile.am: Reflect having moved automake/.
2456        * librdbg/src/i386/Makefile.am: Reflect having moved automake/.
2457        * librdbg/src/i386/any/Makefile.am: Reflect having moved automake/.
2458        * librdbg/src/m68k/Makefile.am: Reflect having moved automake/.
2459        * librdbg/src/m68k/any/Makefile.am: Reflect having moved automake/.
2460        * librdbg/src/powerpc/Makefile.am: Reflect having moved automake/.
2461        * librdbg/src/powerpc/new_exception_processing/Makefile.am: Reflect
2462        having moved automake/.
2463        * libnetworking/Makefile.am: Reflect having moved automake/.
2464        * libnetworking/pppd/Makefile.am: Reflect having moved automake/.
2465        * libnetworking/rtems_servers/Makefile.am: Reflect having moved
2466        automake/.
2467        * libnetworking/rtems_telnetd/Makefile.am: Reflect having moved
2468        automake/.
2469        * libnetworking/rtems_webserver/Makefile.am: Reflect having moved
2470        automake/.
2471        * libnetworking/wrapup/Makefile.am: Reflect having moved automake/.
2472
24732003-08-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2474
2475        * Makefile.am: Add bsp.pc.in.
2476        * bsp.pc.in: New (pkgconfig support).
2477
24782003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2479
2480        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
2481
24822003-08-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2483
2484        * lib/Makefile.am: New (Required by 'make dist').
2485        * lib/ChangeLog: Remove.
2486        * lib/.cvsignore: Cleanup.
2487        * configure.ac: Reflect having added lib/Makefile.am.
2488        * configure.ac: Merge-in lib/libcpu/configure.ac. Merge-in
2489        lib/libbsp/configure.ac.
2490        * librdbg/include/rdbg/Makefile.am: Add DIST_SUBDIRS = $(RTEMS_CPU).
2491        * librdbg/src/Makefile.am: Add DIST_SUBDIRS = $(RTEMS_CPU).
2492
24932003-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2494
2495        * configure.ac: Use relative dir to make/${RTEMS_BSP}.cache.
2496        * configure.ac: Merge-in librdbg/configure.ac.
2497        * configure.ac: Merge-in libnetworking/configure.ac. Merge-in parts of
2498        librdbg/configure.ac.
2499        * libchip/ide/Makefile.am, libchip/network/Makefile.am,
2500        libchip/rtc/Makefile.am, libchip/ serial/Makefile.am: Add conditional
2501        LIBCHIP. Conditionally build include-dirs.
2502        * libchip/network/if_fxp.c: Replace deprecated b* funcs by mem* funcs.
2503        * librdbg/configure.ac: Remove (Merged into ../configure.ac).
2504        * librdbg/Makefile.am, librdbg/include/Makefile.am,
2505        librdbg/include/rdbg/Makefile.am, librdbg/include/rdbg/i386/Makefile.am,
2506        librdbg/include/rdbg/m68k/Makefile.am,
2507        librdbg/include/rdbg/powerpc/Makefile.am, librdbg/src/Makefile.am,
2508        librdbg/src/i386/Makefile.am, librdbg/src/i386/any/Makefile.am,
2509        librdbg/src/m68k/Makefile.am, librdbg/src/m68k/any/Makefile.am,
2510        librdbg/src/powerpc/Makefile.am, librdbg/
2511        src/powerpc/new_exception_processing/Makefile.am: Reflect having merged
2512        configure.ac into ../configure.ac.
2513        * libnetworking/configure.ac: Remove (Merged into ../configure.ac).
2514        * libnetworking/.cvsignore, libnetworking/Makefile.am,
2515        libnetworking/pppd/Makefile.am, libnetworking/rtems_servers/Makefile.am,
2516        libnetworking/rtems_telnetd/Makefile.am,
2517        libnetworking/rtems_webserver/Makefile.am,
2518        libnetworking/wrapup/Makefile.am: Reflect having merged configure.ac
2519        into ../configure.ac.
2520
25212003-07-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2522
2523        PR 427/rtems
2524        * librdbg/src/rdbg.c: Use memset instead of bzero (deprecated).
2525        * librdbg/src/servtsp.c: Ditto.
2526
25272003-07-18      Greg Menke <gregory.menke@gsfc.nasa.gov>
2528
2529        PR 429/bsps
2530        PR 432/bsps
2531        * libchip/network/elnk.c: Due to a bug in the driver, if multiple
2532        packets are queued onto an elnk board, the ISR will deadlock the device
2533        with a tx complete interrupt.  Lighter tx loads are not affected as they
2534        end up submitting single packets to the device.
2535
25362003-07-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2537
2538        * configure.ac: Merge-in libchip/configure.ac. Merge-in
2539        optman/configure.ac.
2540        * optman/configure.ac: Remove (Merged into ../configure.ac).
2541        * optman/Makefile.am: Reflect having merged configure.ac into
2542        ../configure.ac.
2543        * libchip/configure.ac: Remove (Merged into ../configure.ac).
2544        * libchip/Makefile.am, libchip/ide/Makefile.am,
2545        libchip/network/Makefile.am, libchip/rtc/Makefile.am,
2546        libchip/serial/Makefile.am: Reflect having merged configure.ac into
2547        ../configure.ac.
2548
25492003-07-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2550
2551        * support/version.c: Reflect having remove "rtems-" from RTEMS_VERSION.
2552
25532003-06-30      Greg Menke <gregory.menke@gsfc.nasa.gov>
2554
2555        * libchip/network/dec21140.c, libchip/network/elnk.c: Update to compile
2556        on i386.
2557
25582003-06-13      Joel Sherrill <joel@OARcorp.com>
2559
2560        * libnetworking/pppd/chat.c: Removed warnings.
2561
25622003-06-13      Greg Menke <gregory.menke@gsfc.nasa.gov>
2563
2564        * libchip/network/README.3com: New file missed in previous commit.
2565        PR 405/bsps
2566        PR 393/networking
2567        * libchip/network/dec21140.c: Fix leak also known as PR393.
2568        * libchip/network/elnk.c, libchip/network/if_media.h,
2569        libchip/network/mii.h: New files.
2570        * libchip/network/Makefile.am: Reflect new files.
2571
25722003-06-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2573
2574        * configure.ac: Remove support for profile-variant.
2575
25762003-05-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2577
2578        PR 397/pppd
2579        * libnetworking/pppd/fsm.c: Make peer_mru global again.
2580        * libnetworking/pppd/magic.c: Remove *rand48.
2581        * libnetworking/pppd/chap.c: Remove prototypes of *rand48.
2582
25832003-04-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2584
2585        * wrapup/Makefile.am: Add libide.a.
2586
25872003-04-15      Joel Sherrill <joel@OARcorp.com>
2588
2589        PR 387/rtems_misc
2590        * libchip/ide/ata.c: Removed warning and moved to use of simpler libc
2591        routines.
2592        * libchip/ide/ata_internal.h: Added missing newline and end of file.
2593
25942003-04-11      Joel Sherrill <joel@OARcorp.com>
2595
2596        * libnetworking/rtems_webserver/cgi.c,
2597        libnetworking/rtems_webserver/sockGen.c,
2598        libnetworking/rtems_webserver/umui.c,
2599        libnetworking/rtems_webserver/websSSL.c,
2600        libnetworking/rtems_webserver/websSSL.h,
2601        libnetworking/rtems_webserver/websda.c,
2602        libnetworking/rtems_webserver/websda.h: New files. Not included in
2603        previous commit.
2604
26052003-04-10      Joel Sherrill <joel@OARcorp.com>
2606
2607        PR 371/pppd
2608        * libnetworking/pppd/auth.c, libnetworking/pppd/chat.c,
2609        libnetworking/pppd/demand.c, libnetworking/pppd/fsm.c,
2610        libnetworking/pppd/lcp.c, libnetworking/pppd/options.c,
2611        libnetworking/pppd/pppd.h, libnetworking/pppd/rtemsmain.c,
2612        libnetworking/pppd/rtemspppd.c: Change many symbols to static. There are
2613        still global symbols in rtemspppd.h which might need to be changed or
2614        converted into member of a structure which is dereferenced with a
2615        pointer that is managed as a per task variable. But this patch should
2616        avoid many conflicts.
2617
26182003-03-27      Joel Sherrill <joel@OARcorp.com>
2619
2620        * libchip/ide/Makefile.am: ATA code depends upon libchip/ide which is
2621        not allowed in the cpukit source code since it must be buildable
2622        independent of any BSP. These files were moved to libchip/ide.
2623        * libchip/ide/ata.c, libchip/ide/ata.h, libchip/ide/ata_internal.h: New
2624        files.
2625
26262003-03-25      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
2627
2628        PR 368/filesystems
2629        * libchip/ide/Makefile.am, libchip/ide/ide_ctrl_cfg.h: General
2630        improvements which now work on pc386 and mbx8xx.
2631        * libchip/ide/ide_controller.c: New file.
2632
26332003-03-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2634
2635        * libnetworking/pppd/utils.c: Remove strlcpy, strlcat.
2636
26372003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2638
2639        * configure.ac: Remove AC_CONFIG_AUX_DIR.
2640        * configure.ac: Add support/.
2641        * support/.cvsignore: New.
2642        * support/Makefile.am: New.
2643        * support/version.c: New.
2644        * wrapup/Makefile.am: Add support/libsupport.a.
2645        * optman/configure.ac: Remove AC_CONFIG_AUX_DIR.
2646        * libchip/configure.ac: Remove AC_CONFIG_AUX_DIR.
2647        * librdbg/configure.ac: Remove AC_CONFIG_AUX_DIR.
2648        * libnetworking/configure.ac: Remove AC_CONFIG_AUX_DIR.
2649
26502003-03-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2651
2652        * wrapup/Makefile.am: Use SRC += instead of make-vars.
2653
26542003-02-20      Till Straumann <strauman@slac.stanford.edu>
2655
2656        PR 354/networking
2657        * libchip/network/if_fxp.c (Intel eepro network driver): re-enabled the
2658        chip against a table of supported chips. The untested ones are still
2659        commented out, however.
2660
26612003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2662
2663        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
2664        * configure.ac: AC_PREREQ(2.57).
2665        * optman/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
2666        * optman/configure.ac: AC_PREREQ(2.57).
2667        * libchip/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
2668        * libchip/configure.ac: AC_PREREQ(2.57).
2669        * librdbg/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
2670        * librdbg/configure.ac: AC_PREREQ(2.57).
2671        * libnetworking/configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
2672        * libnetworking/configure.ac: AC_PREREQ(2.57).
2673
26742003-02-06      Joel Sherrill <joel@OARcorp.com>
2675
2676        * libnetworking/pppd/chat.c: Convert routines with common names to
2677        static. This included get_char(), put_char(), and character() among
2678        others.
2679
26802003-02-03      Joel Sherrill <joel@OARcorp.com>
2681
2682        PR 338/filesystem
2683        * optman/sapi/no-io.c: Side-effect of fixing reentrancy problem with
2684        rtems_io_lookup_name() (API change).  Unused function removed.
2685
26862003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2687
2688        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
2689        * libnetworking/wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
2690        * libnetworking/pppd/Makefile.am: Don't include @RTEMS_BSP@.cfg.
2691        Eliminate *_O_FILES.
2692        * libnetworking/rtems_servers/Makefile.am,
2693        libnetworking/rtems_webserver/Makefile.am,
2694        libnetworking/rtems_telnetd/Makefile.am: Ditto.
2695
26962002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2697
2698        * wrapup/Makefile.am: Use install-data-local to install librtemsbsp.a.
2699        Let all-local: depend on $(LIB).
2700        * wrapup/Makefile.am, configure.ac: Remove libmisc.
2701        * optman/Makefile.am: Apply install-data-local to install *.rels.
2702
27032002-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2704
2705        * optman/Makefile.am: Eliminate *_O_FILES. Don't create $ARCH in %.o:
2706        %.c rules.
2707        * optman/Makefile.am: Use .$(OBJEXT) instead of .o.
2708        * libchip/network/Makefile.am: Eliminate C_O_FILES.
2709        * libchip/rtc/Makefile.am: Ditto.
2710        * libchip/serial/Makefile.am: Ditto.
2711
27122002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2713
2714        * libchip/serial/Makefile.am: Don't include @RTEMS_BSP@.cfg. Don't use
2715        LIBC_DEFINES.
2716        * libchip/rtc/Makefile.am: Don't include @RTEMS_BSP@.cfg. Don't use
2717        LIBC_DEFINES.
2718        * libchip/network/Makefile.am: Don't include @RTEMS_BSP@.cfg. Don't use
2719        LIBC_DEFINES.
2720
27212002-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2722
2723        * optman/Makefile.am: Introduce sapi_C_FILES, rtems_C_FILES.
2724
27252002-12-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2726
2727        * configure.ac: Append RTEMS_CPU_MODEL to ac_configure_args. Resort
2728        cache-checking.
2729        * optman/Makefile.am: Don't include @RTEMS_BSP@.cfg.
2730
27312002-12-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2732
2733        * configure.ac: Expand RTEMS_CHECK_BSP_CACHE.
2734        * configure.ac: Append CPU_CFLAGS, CFLAGS_OPTIMIZE_V, CFLAGS_DEBUG_V,
2735        CFLAGS_PROFILE_V, RTEMS_BSP_FAMILY to ac_configure_args.
2736        * optman/configure.ac: Remove RTEMS_CHECK_BSP_CACHE.
2737        * librdbg/configure.ac: Remove RTEMS_CHECK_BSP_CACHE.
2738
27392002-11-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2740
2741        * optman/Makefile.am: Merge-in rtems/Makefile.am and sapi/Makefile.am.
2742        * optman/sapi/Makefile.am, optman/rtems/Makefile.am, optman/rel.am:
2743        Remove.
2744        * optman/configure.ac: Add RTEMS_BSP_CHECK_CACHE. Reflect changes above.
2745
27462002-11-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2747
2748        * configure.ac: Use test "$RTEMS_BSP_FAMILY" != "bare" to setup
2749        HAS_LIBBSP conditional (Solaris/bash incompatibility fix).
2750
27512002-11-13      Jay Monkman <jtm@smoothsmoothie.com>
2752
2753        * libchip/network/cs8900.c: I don't know why we have to SelfST register
2754        twice on the EDB7312, but it doesn't work on the EDB7312 if we don't.
2755
27562002-11-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2757
2758        * optman/rtems/Makefile.am, optman/sapi/Makefile.am: Reworked.
2759        * optman/rel.am: New.
2760
27612002-11-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2762
2763        * Makefile.am: Use "'"-quotes to pass args to bsp.mak.
2764        * configure.ac: Use "'"-quotes for args to RTEMS_CONFIG_SUBDIRS. Fix
2765        braino in comment on "exec". Extend --enable-ada handling.
2766
27672002-11-04      Joel Sherrill <joel@OARcorp.com>
2768
2769        * librdbg/src/_servtgt.c: Removed warning by adding support for ITRON
2770        tasks and rolling multiple loops into 1.
2771        * librdbg/src/m68k/rdbg_f.c: Removed warning.
2772        * libnetworking/pppd/auth.c, libnetworking/rtems_webserver/uemf.h:
2773        Removed warnings.
2774
27752002-10-31      Joel Sherrill <joel@OARcorp.com>
2776
2777        * libchip/network/dec21140.c: Removed warnings.
2778        * librdbg/src/i386/any/remdeb_xdr.c: Removed warnings.
2779        * librdbg/src/rdbg.c, librdbg/src/servtsp.c, librdbg/src/m68k/rdbg_f.c,
2780        librdbg/src/m68k/any/remdeb_xdr.c,
2781        librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c: Removed
2782        warnings.
2783        * libnetworking/rtems_webserver/socket.c,
2784        libnetworking/rtems_webserver/uemf.h: Removed warnings.
2785
27862002-10-28      Eugeny S. Mints <Eugeny.Mints@oktet.ru>
2787
2788        * libchip/ide/Makefile.am, libchip/ide/ide_ctrl_cfg.h,
2789        libchip/ide/ide_ctrl_io.h, libchip/ide/ide_ctrl.h: New files.
2790        * libchip/configure.ac, libchip/Makefile.am: Modified to reflect changes
2791        above.
2792
27932002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2794
2795        * .cvsignore: Reformat. Add autom4te*cache. Remove autom4te.cache.
2796        * wrapup/.cvsignore: Remove autom4te.cache.
2797        * optman/.cvsignore: Reformat. Add autom4te*cache. Remove autom4te.cache.
2798        * libchip/.cvsignore: Reformat. Add autom4te*cache. Remove
2799        autom4te.cache.
2800        * librdbg/.cvsignore: Reformat. Add autom4te*cache. Remove
2801        autom4te.cache.
2802        * libnetworking/.cvsignore: Reformat. Add autom4te*cache. Remove
2803        autom4te.cache.
2804
28052002-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2806
2807        * acinclude.m4: Apply RTEMS_CONFIGURE_ARGS_QUOTE.
2808
28092002-10-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2810
2811        * optman/.cvsignore: Add autom4te.cache.
2812
28132002-09-14      Joel Sherrill <joel@OARcorp.com>
2814
2815        * libchip/serial/z85c30.c: Eliminated warning by clarifying statement.
2816
28172002-09-07      Joel Sherrill <joel@OARcorp.com>
2818
2819        * libnetworking/pppd/ipcp.c, libnetworking/rtems_servers/ftpd.c: Add
2820        include files to resolve warnings.
2821
28222002-09-07      Chris Johns <ccj@acm.org>
2823
2824        * libchip/network/Makefile.am, libchip/network/README.cs8900,
2825        libchip/network/cs8900.c, libchip/network/cs8900.h: Significant update
2826        which corrects the problem  where the cs8900.c file was actually the BSP
2827        glue.  Joel did some hacking so this file will compile.  Previously it
2828        required providing a target.h file to compile.
2829        * libchip/network/cs8900.c.bsp: New file.
2830
28312002-09-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2832
2833        * libnetworking/rtems_webserver/md5.h: Add missing newline.
2834
28352002-08-31      Joel Sherrill <joel@OARcorp.com>
2836
2837        * libnetworking/rtems_webserver/webmain.c: Commented out rootWeb to
2838        eliminate warning.
2839
28402002-08-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2841
2842        * configure.ac: Add ada-tests.
2843
28442002-08-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2845
2846        * Makefile.am: Add preinstall-stamp.
2847
28482002-08-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2849
2850        * libnetworking/rtems_servers/ftpd.c: Remove unused variable buf.
2851        * libnetworking/pppd/md5.c: #include <string.h> to make gcc31 happy.
2852        * libnetworking/rtems_telnetd/telnetd.c: #include <string.h> to make
2853        gcc31 happy.
2854        * libnetworking/rtems_webserver/webmain.c: Remove unused variable dir,
2855        cp.
2856
28572002-08-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2858
2859        * configure.ac: Add AM_CONDITIONAL(LIBCHIP). Pass RTEMS_HOST to
2860        make/bsp.mak.
2861        * Makefile.am: Pass RTEMS_HOST to make/bsp.mak.
2862        * wrapup/Makefile.am: Apply AM_CONDITIONAL(LIBCHIP).
2863
28642002-08-12      Joel Sherrill <joel@OARcorp.com>
2865
2866        * libnetworking/pppd/utils.c: Include i960 in varargs conditional to
2867        avoid error.
2868
28692002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2870
2871        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
2872        * configure.ac: Add BSP_SUBDIRS.
2873        * Makefile.am: Use BSP_SUBDIRS to setup SUBDIRS.
2874        * optman/rtems/Makefile.am: Use .$(OBJEXT) instead of .o.
2875        * optman/sapi/Makefile.am: Use .$(OBJEXT) instead of .o.
2876        * libchip/network/Makefile.am: Use .$(OBJEXT) instead of .o.
2877        * libchip/rtc/Makefile.am: Use .$(OBJEXT) instead of .o.
2878        * libchip/serial/Makefile.am: Use .$(OBJEXT) instead of .o.
2879        * librdbg/configure.ac: Remove RTEMS_BSP_ALIAS. Add
2880        RTEMS_CHECK_BSP_CACHE.
2881        * librdbg/src/i386/any/Makefile.am: Use .$(OBJEXT) instead of .o.
2882        * librdbg/src/m68k/any/Makefile.am: Use .$(OBJEXT) instead of .o.
2883        * librdbg/src/powerpc/new_exception_processing/Makefile.am: Use
2884        .$(OBJEXT) instead of .o.
2885        * libnetworking/pppd/Makefile.am,
2886        libnetworking/rtems_servers/Makefile.am,
2887        libnetworking/rtems_telnetd/Makefile.am,
2888        libnetworking/rtems_webserver/Makefile.am,
2889        libnetworking/wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
2890
28912002-08-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2892
2893        * configure.ac: Remove AC_CONFIG_SUBDIR(wrapup). Cosmetic cleanups.
2894        * wrapup/Makefile.am: Pick up ../libchip/rtc/$(ARCH)/librtcio.a and
2895        ../libchip/serial/$(ARCH)/libserialio.a.
2896        * libchip/serial/Makefile.am: Don't tmp-install lib.
2897        * libchip/rtc/Makefile.am: Don't tmp-install lib.
2898
28992002-08-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2900
2901        * Makefile.am: Add rtems_makedir.
2902        * configure.ac: Merge wrapup/configure.ac. Cosmetic cleanups.
2903        * Makefile.am: Add wrapup-SUBDIR.
2904        * wrapup/ChangeLog: Remove.
2905        * wrapup/configure.ac: Remove.
2906        * Makefile.am: Append BARE_CPU_MODEL to make/@RTEMS_BSP@.cache creation
2907        (Make the bare BSP happy).
2908        * configure.ac: Ditto.
2909        * Makefile.am: Create make/@RTEMS_BSP@.cache. Handle make/custom/*.cfgs.
2910        Create make/custom/default.cfg.
2911        * configure.ac: Add creation of make/custom/*.cfg. Create
2912        make/${RTEMS_BSP}.cache. Read make/${RTEMS_BSP}.cache.
2913
29142002-08-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2915
2916        * Makefile.am: Clean $(PROJECT_RELEASE).
2917
29182002-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2919
2920        * libnetworking/pppd/chap.c, libnetworking/pppd/fsm.c,
2921        libnetworking/pppd/fsm.h, libnetworking/pppd/upap.c: Per PR255 fix
2922        prototype mismatches.
2923
29242002-07-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2925
2926        * optman/sapi/Makefile.am: Add bsplib_DATA = $(PGMS). Remove ASM4FLAGS.
2927        * optman/rtems/Makefile.am: Add bsplib_DATA = $(PGMS).
2928
29292002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2930
2931        * acinclude.m4: Add test "$multilib" != "yes".
2932        * config-ml.in: Remove.
2933        * acinclude.m4: Cleanups.
2934        * configure.ac: Build ${srcdir}/../../cpukit/ as ./exec/ instead of
2935        ${srcdir}/exec/. Further adaptations to autoconf >= 2.50.
2936        * optman/configure.ac: Remove RTEMS_ENABLE_MULTIPROCESSING,
2937        RTEMS_ENABLE_POSIX, RTEMS_ENABLE_ITRON, RTEMS_ENABLE_INLINES,
2938        RTEMS_ENABLE_RTEMS_DEBUG, RTEMS_CHECK_RTEMS_DEBUG, RTEMS_CHECK_NEWLIB.
2939
29402002-07-16      Eric Norum <eric.norum@usask.ca>
2941
2942        * New driver for the Intel EtherExpressPro (82559ER) chip.
2943        * libchip/network/if_fxp.c, libchip/network/if_fxpreg.h,
2944        libchip/network/if_fxpvar.h, libchip/network/pci.h: New file.
2945        * libchip/network/Makefile.am: Modified to reflect above.
2946
29472002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2948
2949        * acinclude.m4: New.
2950        * Makefile.am: Remove tar-installation.  Prepend @exec@ to SUBDIRS.
2951        * configure.ac: Switch to AC_CONFIG_SRCDIR([optman]). Add
2952        RTEMS_ENABLE_MULTIPROCESSING. Add RTEMS_CONFIG_SUBDIR([exec]...).
2953
29542002-07-01      Joel Sherrill <joel@OARcorp.com>
2955
2956        * librdbg/src/_servtgt.c, librdbg/src/ptrace.c: Corrected use of
2957        _Objects_Information_table now that it is a two dimensional array based
2958        upon API and class.
2959        * libnetworking/rtems_webserver/misc.c: Per PR236 eliminate definition
2960        of strnlen().
2961
29622002-06-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2963
2964        * libnetworking/wrapup/Makefile.am: Build libnetapps.a.  Don't
2965        preinstall libnetapps.a.
2966
29672002-06-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2968
2969        * configure.ac: Remove librpc.
2970
29712002-06-25      Joel Sherrill <joel@OARcorp.com>
2972
2973        * Per PR233, moved librpc to exec.
2974        * configure.ac, wrapup/Makefile.am: Modified.
2975        * librpc, librpc/ChangeLog: Removed.
2976
29772002-06-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2978
2979        * optman/Makefile.am: Remove multilib support.
2980        * optman/configure.ac: Ditto.
2981        * optman/sapi/Makefile.am: Ditto.
2982
29832002-05-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2984
2985        * libnetworking/Makefile.am: Remove headers. Remove CHANGELOG.
2986        * libnetworking/configure.ac: Use AC_CONFIG_SRCDIR([pppd]).
2987
29882002-05-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2989
2990        Move networking libraries to c/src/exec/libnetworking
2991        * libnetworking/configure.ac, libnetworking/Makefile.am,
2992        libnetworking/wrapup/Makefile.am: Reflect Moval.
2993
29942002-05-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2995
2996        * configure.ac: Remove CONFIG_SUBDIRS libblock, libfs.
2997        * libnetworking/rtems_telnetd/pty.c: Remove bsp.h. Include
2998        <rtems/bspIo.h>.
2999
30002002-05-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3001
3002        * libnetworking/rtems/mkrootfs.c: Add (relocated from libmisc/rootfs).
3003        * libnetworking/rtems/mkrootfs.h: Ditto.
3004        * libnetworking/rtems/Makefile.am: Reflect changes above.
3005
30062002-05-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3007
3008        * configure.ac: Remove lib.
3009
30102002-05-14      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
3011
3012        * librdbg/src/m68k/rdbg_cpu_asm.S: Per PR163, Fix incorrect assumption
3013        that exception stack frames on M68K members with VBR always are 6 byte
3014        long. The incorrect assumption resulted in some gdb commands like "next"
3015        to fail on the 68360.
3016
30172002-05-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3018
3019        * config-ml.in: Take out arm and sh variants RTEMS does not support.
3020        PR 220
3021        * librdbg/src/i386/any/remdeb_svc.c, librdbg/src/m68k/any/remdeb_svc.c,
3022        librdbg/ src/powerpc/new_exception_processing/remdeb_svc.c: Remove from
3023        CVS.
3024        * libnetworking/sys/ioctl.h, libnetworking/sys/sockio.h,
3025        libnetworking/sys/filio.h: Remove.
3026        * libnetworking/sys/Makefile.am: Reflect changes above.
3027
30282002-05-07      Chris Johns <ccj@acm.org>
3029
3030        * libchip/c/src/libchip/network/i82586.c: Per PR210, adjust the mbuf
3031        lengths to remove the ethernet header as the FreeBSD (RTEMS) stack
3032        requires it to be stripped.
3033
30342002-05-01      Eric Norum <eric.norum@usask.ca>
3035
3036        * libnetworking/machine/in_cksum.h: Per PR200 fix multi-line inline
3037        assembly  to satisfy gcc 3.1 and newer.
3038
30392002-04-26      Eric Norum <eric.norum@usask.ca>
3040
3041        * libnetworking/netinet/in_cksum_i386.c: Add volatile so the more
3042        agressive optimization in gcc 3.1 does not reorder things.
3043
30442002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3045
3046        * libchip/network/dec21140.c: Reflect changes to powerpc's
3047        rtems/score/cpu.h. Use __PPC__ for gcc-3.x compliance.
3048        * librdbg/src/powerpc/rdbg_cpu_asm.S: Reflect changes to
3049        <rtems/score/cpu.h>.
3050        * librdbg/src/powerpc/rdbg_f.c: Ditto.
3051        * libnetworking/pppd/utils.c: Adapt to gcc-3.x.
3052
30532002-04-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3054
3055        * optman/configure.ac: Remove ENABLE_GCC28.
3056
30572002-04-11      Chris Johns <ccj@acm.org>
3058
3059        * libchip/network/rtems_bsdnet.h: To address PR59, added the drv_ctrl
3060        driver control block field to the ifconfig network driver structure.
3061        This field is needed by the i82586 driver which was ported from NetBSD
3062        as it had better hardware abstraction.
3063        * libnetworking/c/src/libnetworking/rtems/rtems_bsdnet.h: To address
3064        PR59, added the drv_ctrl driver control block field to the ifconfig
3065        network driver structure. This field is needed by the i82586 driver
3066        which was ported from NetBSD as it had better hardware abstraction.
3067
30682002-04-10      Mike Siers <mikes@poliac.com>
3069
3070        * libnetworking/rtems_webserver/NOTES,
3071        libnetworking/rtems_webserver/asp.c,
3072        libnetworking/rtems_webserver/balloc.c,
3073        libnetworking/rtems_webserver/default.c,
3074        libnetworking/rtems_webserver/ej.h,
3075        libnetworking/rtems_webserver/ejIntrn.h,
3076        libnetworking/rtems_webserver/ejlex.c,
3077        libnetworking/rtems_webserver/ejparse.c,
3078        libnetworking/rtems_webserver/emfdb.c,
3079        libnetworking/rtems_webserver/emfdb.h,
3080        libnetworking/rtems_webserver/form.c, libnetworking/rtems_webserver/h.c,
3081        libnetworking/rtems_webserver/handler.c,
3082        libnetworking/rtems_webserver/license.txt,
3083        libnetworking/rtems_webserver/md5.h,
3084        libnetworking/rtems_webserver/md5c.c,
3085        libnetworking/rtems_webserver/mime.c,
3086        libnetworking/rtems_webserver/misc.c,
3087        libnetworking/rtems_webserver/ringq.c,
3088        libnetworking/rtems_webserver/rom.c,
3089        libnetworking/rtems_webserver/security.c,
3090        libnetworking/rtems_webserver/sock.c,
3091        libnetworking/rtems_webserver/sym.c,
3092        libnetworking/rtems_webserver/uemf.c,
3093        libnetworking/rtems_webserver/uemf.h,
3094        libnetworking/rtems_webserver/um.c, libnetworking/rtems_webserver/um.h,
3095        libnetworking/rtems_webserver/url.c,
3096        libnetworking/rtems_webserver/value.c,
3097        libnetworking/rtems_webserver/wbase64.c,
3098        libnetworking/rtems_webserver/webcomp.c,
3099        libnetworking/rtems_webserver/webpage.c,
3100        libnetworking/rtems_webserver/webrom.c,
3101        libnetworking/rtems_webserver/webs.c,
3102        libnetworking/rtems_webserver/webs.h,
3103        libnetworking/rtems_webserver/websuemf.c,
3104        libnetworking/rtems_webserver/wsIntrn.h: Update to GoAhead Webserver
3105        2.1.4.
3106
31072002-04-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3108
3109        * libchip/network/i82586.c: Include <string.h>.
3110        * libchip/network/sonic.c: Ditto.
3111
31122002-04-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3113
3114        * libchip/configure.ac: AC_DEFINE(CPU_U32_FIX) for sparc.
3115
31162002-03-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3117
3118        * libnetworking/libc/rcmd.c: Replace __rtems w/ __rtems__.
3119
31202002-03-27      Thomas.Doerfler@imd-systems.de
3121
3122        PR 144
3123        * libnetworking/nfs/bootp_subr.c bootpc_init(): Performs a write to
3124        memory address 0 when called for the first time. This is done when
3125        trying to clear the variable "dhcp_hostname".
3126
31272002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3128
3129        * configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
3130        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
3131        * Makefile.am: Remove AUTOMAKE_OPTIONS.
3132        * optman/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
3133        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
3134        * optman/rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
3135        * optman/Makefile.am: Remove AUTOMAKE_OPTIONS.
3136        * optman/sapi/Makefile.am: Remove AUTOMAKE_OPTIONS.
3137        * libchip/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
3138        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
3139        * libchip/network/Makefile.am: Remove AUTOMAKE_OPTIONS.
3140        * libchip/Makefile.am: Remove AUTOMAKE_OPTIONS.
3141        * libchip/rtc/Makefile.am: Remove AUTOMAKE_OPTIONS.
3142        * libchip/serial/Makefile.am: Remove AUTOMAKE_OPTIONS.
3143        * librdbg/configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
3144        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
3145        * librdbg/include/rdbg/i386/Makefile.am: Remove AUTOMAKE_OPTIONS.
3146        * librdbg/include/rdbg/m68k/Makefile.am: Remove AUTOMAKE_OPTIONS.
3147        * librdbg/include/rdbg/Makefile.am: Remove AUTOMAKE_OPTIONS.
3148        * librdbg/include/rdbg/powerpc/Makefile.am: Remove AUTOMAKE_OPTIONS.
3149        * librdbg/include/Makefile.am: Remove AUTOMAKE_OPTIONS.
3150        * librdbg/Makefile.am: Remove AUTOMAKE_OPTIONS.
3151        * librdbg/src/i386/any/Makefile.am: Remove AUTOMAKE_OPTIONS.
3152        * librdbg/src/i386/Makefile.am: Remove AUTOMAKE_OPTIONS.
3153        * librdbg/src/m68k/any/Makefile.am: Remove AUTOMAKE_OPTIONS.
3154        * librdbg/src/m68k/Makefile.am: Remove AUTOMAKE_OPTIONS.
3155        * librdbg/src/Makefile.am: Remove AUTOMAKE_OPTIONS.
3156        * librdbg/src/powerpc/Makefile.am: Remove AUTOMAKE_OPTIONS.
3157        * librdbg/src/powerpc/new_exception_processing/Makefile.am: Remove
3158        AUTOMAKE_OPTIONS.
3159        * libnetworking/configure.ac:
3160        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define
3161        foreign 1.6]).
3162        * libnetworking/arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
3163        * libnetworking/kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
3164        * libnetworking/Makefile.am: Remove AUTOMAKE_OPTIONS.
3165        * libnetworking/lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
3166        * libnetworking/libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
3167        * libnetworking/machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
3168        * libnetworking/net/Makefile.am: Remove AUTOMAKE_OPTIONS.
3169        * libnetworking/netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
3170        * libnetworking/nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
3171        * libnetworking/pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
3172        * libnetworking/rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
3173        * libnetworking/rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
3174        * libnetworking/rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
3175        * libnetworking/rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
3176        * libnetworking/sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
3177        * libnetworking/vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
3178        * libnetworking/wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
3179
31802002-03-27      Ilya Alexeev <ilya@continuum.ru>
3181
3182        PR 162
3183        * libnetworking/net/if_ppp.c ppp_txdaemon(),
3184        libnetworking/net/if_pppvar.h pppstart(): Local variables must not be
3185        used in a device write routines.  Now ppp_softc structure have own
3186        character for writing to device (sc_outchar).  I think that converting
3187        local variables to static is not a right solution, because problems will
3188        occur in the case of two or more ppp instances.
3189        * libnetworking/net/ppp_tty.c pppstart(): Type of the ioffset variable
3190        must be u_long, otherwise in the case of the big output packet endless
3191        loop may occur.
3192
31932002-03-21      Ilya Alexeev <ilya@continuum.ru>
3194
3195        * libnetworking/net/if_ppp.c, libnetworking/net/ppp_tty.c: Initial
3196        preparations for multiple PPPD connections.
3197
31982002-03-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3199
3200        PR 149
3201        * librdbg/src/i386/any/Makefile.am: s/$(SED)/sed/.
3202        * librdbg/src/m68k/any/Makefile.am: s/$(SED)/sed/.
3203        * librdbg/src/powerpc/new_exception_processing/Makefile.am:
3204        s/$(SED)/sed/. (Reported by Till Straumann <strauman@SLAC.Stanford.EDU>).
3205
32062002-02-28      Victor V. Vengerov <vvv@oktet.ru>
3207
3208        * DOS filesystem including FAT12, FAT16, and FAT32 support submitted.
3209        * configure.ac: Modified to reflect addition.
3210
32112002-02-27      Ilya Alexeev <ilya@continuum.ru>
3212
3213        * libnetworking/net/if_ppp.c, libnetworking/pppd/auth.c,
3214        libnetworking/pppd/chat.c, libnetworking/pppd/pppd.h,
3215        libnetworking/pppd/sys-rtems.c: Add server with pap-authorization
3216        capabilities as well as eliminate some warnings.
3217
32182002-02-27      Eric Norum <eric.norum@usask.ca>
3219
3220        * libnetworking/net/radix.c: Properly handle fetching the default route
3221        when there is no route.  This was a bug in the original FreeBSD code and
3222        this fix is from an updated version of their code.
3223
32242002-02-16      Eric Norum <eric.norum@usask.ca>
3225
3226        * libnetworking/lib/tftpDriver.clib/tftpDriver.c: Fix TFTP block number
3227        checking.
3228
32292002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3230
3231        * libnetworking/pppd/sys-rtems.c: Remove unused variable status from
3232        dodefaultroute.
3233
32342002-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3235
3236        * libnetworking/lib/tftpDriver.c: Remove set_errno_and_return_minus_one,
3237        include <rtems/seterr.h>.
3238
32392002-02-01      Mike Siers <mikes@poliac.com>
3240
3241        * libnetworking/pppd/rtemspppd.c (rtems_pppd_disconnect): Modified to
3242        avoid bringing the link down too fast. NOTE: Mike reports successfully
3243        running at 56K baud on a direct link.
3244
32452002-02-01      Eric Valette <valette@crf.canon.fr>
3246
3247        * librdbg/So many patches have been posted recently on the mailing list
3248        and  because we were unable to find correct solution to compile on
3249        various  linux distros (due to rpcgen incompatibilities), librdbg/and
3250        because the coding  style of rdbg was rather inconsistant among various
3251        pieces of code, librdbg/I  decided to: 1) make some cleaning regarding
3252        global coding style (using indent + manual edits), 2) incorporate/review
3253        the paches send by various people (S. Holford, T. Strauman), 3) Fix the
3254        bug due to varying rpcgen code generation in remdeb_svc.c, 4) Remove
3255        some dead code, 5) Apply a patches enabling to call enterRdbg imediately
3256        after rdbg initialization is done, NB : the paches is huge but it is
3257        mainly due to coding styke chnages.  Only few lines of codes have been
3258        really changed and they do not impact  rdbg functionnality (AFAIKT).
3259        * librdbg/include/rdbg/servrpc.h, librdbg/include/rdbg/i386/rdbg_f.h,
3260        librdbg/include/rdbg/m68k/rdbg_f.h,
3261        librdbg/include/rdbg/powerpc/rdbg_f.h, librdbg/src/_servtgt.c,
3262        librdbg/src/awk.svc, librdbg/src/excep.c, librdbg/src/ptrace.c,
3263        librdbg/src/rdbg.c, librdbg/src/remdeb.x, librdbg/src/servbkpt.c,
3264        librdbg/src/servcon.c, librdbg/src/servrpc.c, librdbg/src/servtgt.c,
3265        librdbg/src/servtsp.c, librdbg/src/servutil.c,
3266        librdbg/src/i386/excep_f.c, librdbg/src/i386/rdbg_f.c,
3267        librdbg/src/i386/any/Makefile.am, librdbg/src/i386/any/remdeb.h,
3268        librdbg/src/i386/any/remdeb_svc.c, librdbg/src/i386/any/remdeb_xdr.c,
3269        librdbg/src/m68k/excep_f.c, librdbg/src/m68k/rdbg_f.c,
3270        librdbg/src/m68k/any/Makefile.am, librdbg/src/m68k/any/remdeb.h,
3271        librdbg/src/m68k/any/remdeb_svc.c, librdbg/src/m68k/any/remdeb_xdr.c,
3272        librdbg/src/powerpc/excep_f.c, librdbg/src/powerpc/rdbg_f.c,
3273        librdbg/src/powerpc/new_exception_processing/Makefile.am,
3274        librdbg/src/powerpc/new_exception_processing/remdeb.h,
3275        librdbg/src/powerpc/new_exception_processing/remdeb_svc.c,
3276        librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c: Modified.
3277
32782002-01-31      Mike Siers <mikes@poliac.com>
3279
3280        * libnetworking/pppd/rtemsdialer.h: New file missed in previous commit.
3281        * Nice Update of PPPD support which eliminates the requiremetn that
3282        drivers be in the termios TASK_DRIVEN mode. Mike did significant testing
3283        and reports that it seems to be more stable and handle larger packets
3284        better.  This patch replaces the termios tasks with more general pppd
3285        network driver tasks.  The functions pppinput() and pppstart() get
3286        called from the interrupt service routine.
3287        * libnetworking/Makefile.am, libnetworking/configure.ac,
3288        libnetworking/net/Makefile.am, libnetworking/net/bpf.h,
3289        libnetworking/net/ethernet.h, libnetworking/net/if.c,
3290        libnetworking/net/if.h, libnetworking/net/if_arp.h,
3291        libnetworking/net/if_dl.h, libnetworking/net/if_ethersubr.c,
3292        libnetworking/net/if_llc.h, libnetworking/net/if_loop.c,
3293        libnetworking/net/if_ppp.h, libnetworking/net/if_pppvar.h,
3294        libnetworking/net/if_types.h, libnetworking/net/netisr.h,
3295        libnetworking/net/ppp-comp.h, libnetworking/net/ppp_defs.h,
3296        libnetworking/net/pppcompress.h, libnetworking/net/radix.c,
3297        libnetworking/net/radix.h, libnetworking/net/raw_cb.c,
3298        libnetworking/net/raw_cb.h, libnetworking/net/raw_usrreq.c,
3299        libnetworking/net/route.c, libnetworking/net/route.h,
3300        libnetworking/net/rtsock.c, libnetworking/pppd/Makefile.am,
3301        libnetworking/pppd/README, libnetworking/pppd/STATUS,
3302        libnetworking/pppd/auth.c, libnetworking/pppd/cbcp.c,
3303        libnetworking/pppd/ccp.c, libnetworking/pppd/ccp.h,
3304        libnetworking/pppd/chap.c, libnetworking/pppd/chap.h,
3305        libnetworking/pppd/chap_ms.c, libnetworking/pppd/chap_ms.h,
3306        libnetworking/pppd/chat.c, libnetworking/pppd/demand.c,
3307        libnetworking/pppd/fsm.c, libnetworking/pppd/fsm.h,
3308        libnetworking/pppd/ipcp.c, libnetworking/pppd/ipcp.h,
3309        libnetworking/pppd/ipxcp.c, libnetworking/pppd/ipxcp.h,
3310        libnetworking/pppd/lcp.c, libnetworking/pppd/lcp.h,
3311        libnetworking/pppd/magic.c, libnetworking/pppd/magic.h,
3312        libnetworking/pppd/options.c, libnetworking/pppd/patchlevel.h,
3313        libnetworking/pppd/pathnames.h, libnetworking/pppd/pppd.8,
3314        libnetworking/pppd/pppd.h, libnetworking/pppd/rtemsmain.c,
3315        libnetworking/pppd/rtemspppd.c, libnetworking/pppd/rtemspppd.h,
3316        libnetworking/pppd/sys-rtems.c, libnetworking/pppd/upap.c,
3317        libnetworking/pppd/upap.h, libnetworking/pppd/utils.c,
3318        libnetworking/pppd/example/README,
3319        libnetworking/pppd/example/netconfig.h,
3320        libnetworking/wrapup/Makefile.am: Modified.
3321        * libnetworking/net/bsd-comp.c, libnetworking/net/if_ppp.c,
3322        libnetworking/net/ppp-deflate.c, libnetworking/net/ppp.h,
3323        libnetworking/net/ppp_tty.c, libnetworking/net/pppcompress.c,
3324        libnetworking/net/zlib.c, libnetworking/net/zlib.h: New file.
3325        * libnetworking/modem/, libnetworking/modem/.cvsignore,
3326        libnetworking/modem/Makefile.am, libnetworking/modem/ppp.c,
3327        libnetworking/modem/ppp.h, libnetworking/modem/ppp_tty.c,
3328        libnetworking/modem/pppcompress.c: Subdirectory removed.
3329
33302002-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3331
3332        * libnetworking/rtems_telnetd/pty.c: Move config.h to were it belongs.
3333        Remove printf (Reported by Till Straumann <strauman@SLAC.Stanford.EDU>).
3334
33352002-01-18      Till Straumann <strauman@slac.stanford.edu>
3336
3337        * librdbg/src/powerpc/excep_f.c: This patch addresses the following
3338        issues: - exception handler needs to enable MSR_FP if the interrupted
3339        thread is FP enabled. - printk message for MSR fixed and added
3340        stacktrace. NOTE: this requires the stacktrace patch to
3341        lib/libbsp/powerpc/shared/vectors/vector_init.c (#ifdef DDEBUG only,
3342        however).
3343
33442002-01-06      Joel Sherrill <joel@OARcorp.com>
3345
3346        * optman/.cvsignore: Added aclocal.m4 and configure.
3347        * optman/.cvsignore: New file.
3348
33492002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3350
3351        * libchip/network/cs8900.c: Include rtems/bspIo.h instead of bspIo.h.
3352
33532002-01-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3354
3355        * configure.ac: Add AC_CONFIG_SUBDIRS(optman). Remove AC_CONFIG_COMMANDS.
3356        * optman/ChangeLog: New.
3357        * optman/configure.ac: New.
3358        * optman/Makefile.am: New.
3359        * optman/rtems/*: Copied from c/src/exec/rtems/optman.
3360        * optman/sapi/*: Copied from c/src/exec/sapi/optman.
3361
33622001-12-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3363
3364        * config-ml.in: New file. Imported from gcc and modified for RTEMS.
3365
33662001-12-18      Eric Norum <eric.norum@usask.ca>
3367
3368        * libnetworking/lib/tftpDriver.c: Allow chdir() to work on TFTP
3369        `directories' (path names with a / at the end) while disallowing open()
3370        operations on TFTP `directories'.
3371
33722001-12-07      Eric Norum <eric.norum@usask.ca>
3373
3374        * libnetworking/lib/tftpDriver.c: Restore write capability.
3375
33762001-11-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3377
3378        * libchip/network/sonic.h: Fix typo.
3379        * libnetworking/arpa/Makefile.am: Remove stray lines.
3380
33812001-10-30      Victor V. Vengerov <vvv@oktet.ru>
3382
3383        * librdbg/src/m68k/rdbg_cpu_asm.S: Now compiles on ColdFire.
3384
33852001-10-18      Eric Norum <eric.norum@usask.ca>
3386
3387        * libnetworking/lib/tftpDriver.c: Properly handles ../ components in
3388        chdir() and open() operations within the TFTP file system.
3389
33902001-10-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3391
3392        * librdbg/configure.ac: Fix latent bug exposed by removal of
3393        config.cache's which prevented powerpc targets librdbg from building.
3394
33952001-10-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3396
3397        * Makefile.am: Use SUBDIRS = @subdirs@, require automake-1.5.
3398        * configure.ac: Replace hst_subdirs with AC_CONFIG_SUBDIRS to make
3399        autoconf-2.52 happy.
3400
34012001-10-12      Mike Siers <mikes@poliac.com>
3402
3403        * libnetworking/Update to stable working state.  Congratulations Mike!
3404        :).
3405        * libnetworking/modem_example: Directory removed.
3406        * libnetworking/modem_example/16550.h,
3407        libnetworking/modem_example/README, libnetworking/modem_example/modem.c,
3408        libnetworking/modem_example/modem.h, libnetworking/modem_example/ppp.c,
3409        libnetworking/modem_example/ppp.h,
3410        libnetworking/modem_example/pppcompress.c: Files removed.
3411        * libnetworking/pppd/example/pppd.options: New file.
3412        * libnetworking/pppd/README, libnetworking/pppd/STATUS,
3413        libnetworking/pppd/cbcp.c, libnetworking/pppd/cbcp.h,
3414        libnetworking/pppd/chat.c, libnetworking/pppd/pppd.h,
3415        libnetworking/pppd/rtemsmain.c: Updated.
3416
34172001-10-12      Joel Sherrill <joel@OARcorp.com>
3418
3419        * libchip/serial/z85c30.c: Fixed typo.
3420
34212001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3422
3423        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
3424        * configure.in: Remove.
3425        * configure.ac: New file, generated from configure.in by autoupdate.
3426        * libchip/.cvsignore: Add autom4te.cache for autoconf > 2.52.
3427        * libchip/configure.in: Remove.
3428        * libchip/configure.ac: New file, generated from configure.in by
3429        autoupdate.
3430        * librdbg/.cvsignore: Add autom4te.cache for autoconf > 2.52.
3431        * librdbg/configure.in: Remove.
3432        * librdbg/configure.ac: New file, generated from configure.in by
3433        autoupdate.
3434        * libnetworking/.cvsignore: Add autom4te.cache for autoconf > 2.52.
3435        * libnetworking/configure.in: Remove.
3436        * libnetworking/configure.ac: New file, generated from configure.in by
3437        autoupdate.
3438
34392001-09-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3440
3441        * libchip/rtc/Makefile.am: Use 'PREINSTALL_FILES ='.
3442        * libchip/network/Makefile.am: Use 'PREINSTALL_FILES ='.
3443        * libchip/serial/Makefile.am: Use 'PREINSTALL_FILES ='.
3444
34452001-09-27      Joel Sherrill <joel@OARcorp.com>
3446
3447        * libchip/ChangeLog: Fixed typo in date.
3448
34492001-09-27      Eric Norum <eric.norum@usask.ca>
3450
3451        * libnetworking/lib/tftpDriver.c: Add limited chdir() support to the
3452        TFTP  filesystem.
3453
34542001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3455
3456        * librdbg/include/rdbg/i386/Makefile.am: Use 'PREINSTALL_FILES ='.
3457        * librdbg/include/rdbg/m68k/Makefile.am: Use 'PREINSTALL_FILES ='.
3458        * librdbg/include/rdbg/powerpc/Makefile.am: Use 'PREINSTALL_FILES ='.
3459        * librdbg/include/rdbg/Makefile.am: Use 'PREINSTALL_FILES ='.
3460        * librdbg/src/i386/any/Makefile.am: Use 'PREINSTALL_FILES ='.
3461        * librdbg/src/m68k/any/Makefile.am: Use 'PREINSTALL_FILES ='.
3462        * librdbg/src/powerpc/new_exception_processing/Makefile.am: Use
3463        'PREINSTALL_FILES ='.
3464        * libnetworking/machine/Makefile.am: Use 'PREINSTALL_FILES ='.
3465        * libnetworking/net/Makefile.am: Use 'PREINSTALL_FILES ='.
3466        * libnetworking/netinet/Makefile.am: Use 'PREINSTALL_FILES ='.
3467        * libnetworking/vm/Makefile.am: Use 'PREINSTALL_FILES ='.
3468        * libnetworking/pppd/Makefile.am: Use 'PREINSTALL_FILES ='.
3469        * libnetworking/sys/Makefile.am: Use 'PREINSTALL_FILES ='.
3470        * libnetworking/rtems_servers/Makefile.am: Use 'PREINSTALL_FILES ='.
3471        * libnetworking/arpa/Makefile.am: Use 'PREINSTALL_FILES ='.
3472        * libnetworking/nfs/Makefile.am: Use 'PREINSTALL_FILES ='.
3473        * libnetworking/rtems_webserver/Makefile.am: Use 'PREINSTALL_FILES ='.
3474        * libnetworking/rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
3475        * libnetworking/rtems_telnetd/Makefile.am: Use 'PREINSTALL_FILES ='.
3476
34772001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3478
3479        * librdbg/src/i386/any/Makefile.am: Move MAINTAINERCLEANFILES before the
3480        includes and use MAINTAINERCLEANFILES = to make automake-1.5 happy.
3481        * librdbg/src/m68k/any/Makefile.am: Ditto.
3482        * librdbg/src/powerpc/new_exception_processing/Makefile.am: Ditto.
3483        * libnetworking/Makefile.am: Use PREINSTALL_FILES = to make automake-1.5
3484        happy.
3485
34862001-09-21      Joel Sherrill <joel@OARcorp.com>
3487
3488        * libchip/network/Makefile.am: Fixed typo on file name.
3489        * libchip/network/i82586.c: Commented out line 318 which is referencing
3490        a member of a structure that is not currently there.  This needs to be
3491        worked out with Chris Johns <ccj@acm.org>. Switched C++ style comments
3492        to C style.
3493
34942001-09-19      Eric Norum <eric.norum@usask.ca>
3495
3496        * libnetworking/lib/tftpDriver.c: Add some debugging capability.
3497
34982001-09-19      Chris Johns <ccj@acm.org>
3499
3500        * libchip/network/README.i82586, libchip/network/i82586.c,
3501        libchip/network/i82586reg.h, libchip/network/i82586var.h: New files.
3502        Network driver for Intel i82586.
3503        * nfs/bootp_subr.c, rtems/rtems_bootp.c, rtems/rtems_bsdnet.h,
3504        rtems/rtems_bsdnet_internal.h Added support for populating the initial
3505        "root" filesystem with information obtained via the DHCP response.
3506
35072001-09-14      Eric Norum <eric.norum@usask.ca>
3508
3509        * librdbg/include/rdbg/rdbg.h, librdbg/src/ptrace.c: Modifications to
3510        make gcc 3.x happy.
3511
35122001-08-16      Mike Siers <mikes@poliac.com>
3513
3514        * libnetworking/pppd/STATUS: Updated by Joel based upon email from Mike.
3515        * libnetworking/pppd/cbcp.c, libnetworking/pppd/cbcp.h: Readded files.
3516        These support callback functionality that has not even been compiled
3517        under RTEMS yet.
3518        * libnetworking/Update of PPPD to 2.3.11 from 2.3.5 and addition of an
3519        example application.  Mike's notes on the modifications: - renamed
3520        error() function because of namespace problems - removed calls to the
3521        exit() funciton - removed extra files from the pppd source directory -
3522        defined pppd task constant values in rtemspppd.h - modifyied example
3523        code to get actual tick per second value - placed the pppd 2.3.11 man
3524        page file (pppd.8) into the pppd directory.
3525        * libnetworking/pppd/cbcp.c, libnetworking/pppd/cbcp.h,
3526        libnetworking/pppd/main.c, libnetworking/pppd/ppp_tty.c,
3527        libnetworking/pppd/pppmain.c, libnetworking/pppd/rtems-ppp.c,
3528        libnetworking/pppd/rtems-ppp.c: Deleted.
3529        * libnetworking/pppd/pppd.8, libnetworking/pppd/rtemsmain.c,
3530        libnetworking/pppd/rtemspppd.c, libnetworking/pppd/rtemspppd.h,
3531        libnetworking/pppd/sys-rtems.c, libnetworking/pppd/utils.c,
3532        libnetworking/pppd/example/Makefile, libnetworking/pppd/example/README,
3533        libnetworking/pppd/example/init.c,
3534        libnetworking/pppd/example/netconfig.h,
3535        libnetworking/pppd/example/ppp.conf,
3536        libnetworking/pppd/example/pppdapp.c,
3537        libnetworking/pppd/example/system.h: New files.
3538        * libnetworking/modem/ppp_tty.c, libnetworking/net/if_ppp.h,
3539        libnetworking/pppd/Makefile.am, libnetworking/pppd/README,
3540        libnetworking/pppd/STATUS, libnetworking/pppd/auth.c,
3541        libnetworking/pppd/ccp.c, libnetworking/pppd/ccp.h,
3542        libnetworking/pppd/chap.c, libnetworking/pppd/chap.h,
3543        libnetworking/pppd/chap_ms.c, libnetworking/pppd/chap_ms.h,
3544        libnetworking/pppd/chat.c, libnetworking/pppd/demand.c,
3545        libnetworking/pppd/fsm.c, libnetworking/pppd/fsm.h,
3546        libnetworking/pppd/ipcp.c, libnetworking/pppd/ipcp.h,
3547        libnetworking/pppd/ipxcp.c, libnetworking/pppd/ipxcp.h,
3548        libnetworking/pppd/lcp.c, libnetworking/pppd/lcp.h,
3549        libnetworking/pppd/magic.c, libnetworking/pppd/magic.h,
3550        libnetworking/pppd/options.c, libnetworking/pppd/patchlevel.h,
3551        libnetworking/pppd/pathnames.h, libnetworking/pppd/pppd.h,
3552        libnetworking/pppd/upap.c, libnetworking/pppd/upap.h: Modified.
3553
35542001-08-16      Joel Sherrill <joel@OARcorp.com>
3555
3556        * libnetworking/pppd/example/Makefile: Removed.
3557        * libnetworking/pppd/example/Makefile-user: Added was Makefile.  Renamed
3558        to avoid bootstrap -c clobbering it.
3559        * libnetworking/rtems_telnetd/.cvsignore: New file.
3560
35612001-08-09      Fernando-Ruiz Casas <correo@fernando-ruiz.com>
3562
3563        * libnetworking/Makefile.am, libnetworking/configure.in,
3564        libnetworking/rtems_servers/Makefile.am,
3565        libnetworking/rtems_servers/telnetd.c,
3566        libnetworking/rtems_servers/telnetd.h,
3567        libnetworking/rtems_telnetd/Makefile.am,
3568        libnetworking/rtems_telnetd/README, libnetworking/rtems_telnetd/icmds.c,
3569        libnetworking/rtems_telnetd/pty.c, libnetworking/rtems_telnetd/pty.h,
3570        libnetworking/rtems_telnetd/telnetd.c,
3571        libnetworking/rtems_telnetd/telnetd.h, libnetworking/wrapup/Makefile.am:
3572        - pty and telnetd have a new subdir rtems_telnetd to avoid the side
3573        effect when ftpd change. - the tcp/ip stats have been implemented into
3574        icmds.c and started when telnetd daemon is started.
3575        * libnetworking/rtems_servers/telnetd.c,
3576        libnetworking/rtems_servers/telnetd.h: Removed.
3577        * libnetworking/rtems_telnetd: New directory.
3578        * libnetworking/rtems_telnetd/Makefile.am,
3579        libnetworking/rtems_telnetd/README, libnetworking/rtems_telnetd/icmds.c,
3580        libnetworking/rtems_telnetd/pty.c, libnetworking/rtems_telnetd/pty.h,
3581        libnetworking/rtems_telnetd/telnetd.c,
3582        libnetworking/rtems_telnetd/telnetd.h: New files.
3583
35842001-06-14      Joel Sherrill <joel@OARcorp.com>
3585
3586        * libnetworking/rtems_servers/telnetd.c, libnetworking/shell/telnetd.h:
3587        Moved from libmisc/shell so the network stack to address network
3588        depenendency.
3589        * libnetworking/rtems_servers/Makefile.am: Modified to reflect above.
3590
35912001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3592
3593        * libnetworking/rtems_servers/Makefile.am: Deleted blank lines.
3594
35952001-05-15      Joel Sherrill <joel@OARcorp.com>
3596
3597        * librdbg/src/i386/any/remdeb_svc.c, librdbg/src/m68k/any/remdeb_svc.c,
3598        librdbg/src/powerpc/new_exception_processing/remdeb_svc.c: Readding as I
3599        accidentally deleted the incorrectly empty versions.
3600
36012001-05-14      Till Straumann <strauman@slac.stanford.edu>
3602
3603        * libchip/bootloader/Makefile.am, libchip/console/Makefile.am,
3604        libchip/pci/Makefile.am: Per PR215 address the following issues: -
3605        _IO_BASE, _ISA_MEM_BASE and PCI_DRAM_OFFSET are no longer defined by
3606        libcpu (powerpc/shared/include/io.h) but by the BSP (who is the only one
3607        to know the values) - the affected BSP (shared/motorola) headers have
3608        been fixed in a separate "libbsp/powerpc/shared" patch. - the DEC 21140
3609        driver (libchip/network/dec21140.c) has been fixed to use
3610        PCI_DRAM_OFFSET instead of PREP_PCI_DRAM_OFFSET. and PCI_MEM_BASE
3611        instead of PREP_ISA_MEM_BASE. PCI_MEM_BASE is to be defined by the BSP
3612        who is using this driver. - the DEC driver also has been fixed to use
3613        the newer rtems_bsp_delay_in_bus_cycles() instead of the obsolete
3614        delay_in_bus_cycles().
3615
36162001-05-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3617
3618        * libnetworking/libc/Makefile.am: Remove -D__STRICT_ANSI__.
3619
36202001-04-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3621
3622        * libchip/configure.in: Add [-ansi -fasm] to RTEMS_PROG_CC_FOR_TARGET.
3623
36242001-04-24      Eric Norum <eric.norum@usask.ca>
3625
3626        * libnetworking/lib/rtems_bsdnet_ntp.c: Modifications to make the RTEMS
3627        NTP synchronization a little more robust -- no NTP daemon yet, but at
3628        least it trys a little harder when the primary NTP server is down.
3629
36302001-04-20      Radzislaw Galler  <rgaller@et.put.poznan.pl>
3631
3632        * libnetworking/modem/ppp.c, libnetworking/pppd/main.c,
3633        libnetworking/pppd/pppmain.c, libnetworking/pppd/rtems-ppp.c,
3634        libnetworking/pppd/modem_example/modem.c,
3635        libnetworking/pppd/modem_example/ppp.c: Translated Polish comments and
3636        other strings into English.
3637        * libnetworking/pppd/STATUS: updated to reflect the changes.
3638
36392001-04-20      Jake Janovetz <janovetz@uiuc.edu>
3640
3641        * libnetworking/rtems_servers/ftpd.c: Correct argument so hooks work
3642        again.
3643
36442001-04-20      Eric Valette <valette@crf.canon.fr>
3645
3646        * mcp750 directory renamed new_exception processing as it supports many
3647        more CPU models.
3648        * librdbg/configure.in, librdbg/src/powerpc/Makefile.am,
3649        librdbg/src/powerpc/new_exception_processing/Makefile.am,
3650        librdbg/src/powerpc/new_exception_processing/remdeb_f.x: New files
3651        formerly in mcp750 plus modifications.
3652        * librdbg/src/powerpc/mcp750/.cvsignore,
3653        librdbg/src/powerpc/mcp750/Makefile.am,
3654        librdbg/src/powerpc/mcp750/remdeb.h,
3655        librdbg/src/powerpc/mcp750/remdeb_f.x,
3656        librdbg/src/powerpc/mcp750/remdeb_svc.c,
3657        librdbg/src/powerpc/mcp750/remdeb_xdr.c: Removed when moved to
3658        new_exception_processing.
3659        * librdbg/configure.in, librdbg/src/powerpc/Makefile.am,
3660        librdbg/src/powerpc/new_exception_processing/Makefile.am,
3661        librdbg/src/powerpc/new_exception_processing/remdeb_f.x: Modified as
3662        part of this effort to add support for the MPC8xx.
3663
36642001-04-19      Joel Sherrill <joel@OARcorp.com>
3665
3666        * librdbg/src/powerpc/rdbg_f.c: Always include <rtems.h> instead of
3667        internal include files.
3668
36692001-03-20      Till Straumann <strauman@SLAC.Stanford.EDU>
3670
3671        PR 158
3672        * libnetworking/libc/rcmd.c, libnetworking/libc/rcmd.c: Enable the
3673        rcmd() library call by commenting out the parts that deal with signals.
3674        This enables RTEMS to 'rsh' command to a server connecting fd to remote
3675        stdio. The 'server-side' parts of this file which deal with
3676        authentication are disabled since they are not needed.
3677
36782001-03-15      Ralf Corsepius <corsepius@faw.uni-ulm.de>
3679
3680        * libnetworking/include/.cvsignore: Remove dangling file.
3681
36822001-03-14      Joel Sherrill <joel@OARcorp.com>
3683
3684        * libchip/serial/Makefile.am, libchip/serial/mc68681.c,
3685        libchip/serial/ns16550.c, libchip/serial/serprobe.c,
3686        libchip/serial/z85c30.c: Now install sersupp.h to <libchip/sersupp.h> so
3687        libchip style serial drivers can be written in libcpu or libbsp.
3688
36892001-03-01      Joel Sherrill <joel@OARcorp.com>
3690
3691        * libchip/network/cs8900.c, libchip/network/cs8900.h,
3692        libchip/network/sonic.c, libchip/network/sonic.h,
3693        libchip/rtc/icm7170_reg.c, libchip/rtc/icm7170_reg2.c,
3694        libchip/rtc/icm7170_reg4.c, libchip/rtc/icm7170_reg8.c,
3695        libchip/rtc/m48t08_reg.c, libchip/rtc/m48t08_reg2.c,
3696        libchip/rtc/m48t08_reg4.c, libchip/rtc/m48t08_reg8.c,
3697        libchip/serial/mc68681_reg.c, libchip/serial/mc68681_reg2.c,
3698        libchip/serial/mc68681_reg4.c, libchip/serial/mc68681_reg8.c,
3699        libchip/serial/z85c30.c, libchip/serial/z85c30.h,
3700        libchip/serial/z85c30_p.h, libchip/serial/z85c30_reg.c: Corrected header.
3701
37022001-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3703
3704        * librdbg/include/rdbg/Makefile.am,
3705        librdbg/include/rdbg/i386/Makefile.am,
3706        librdbg/include/rdbg/m68k/Makefile.am,
3707        librdbg/include/rdbg/powerpc/Makefile.am: Cleanup including more proper
3708        style on include files.
3709
37102001-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3711
3712        * libchip/network/Makefile.am, libchip/rtc/Makefile.am,
3713        libchip/serial/Makefile.am:  Apply include_*HEADERS instead of H_FILES,
3714        replace ${..} with $(..).
3715        * libnetworking/Makefile.am, libnetworking/arpa/Makefile.am,
3716        libnetworking/machine/Makefile.am, libnetworking/net/Makefile.am,
3717        libnetworking/ netinet/Makefile.am, libnetworking/nfs/Makefile.am,
3718        libnetworking/rtems/Makefile.am, libnetworking/
3719        rtems_servers/Makefile.am, libnetworking/rtems_webserver/Makefile.am,
3720        libnetworking/ sys/Makefile.am, libnetworking/vm/Makefile.am: Apply
3721        include_*HEADERS instead of H_FILES.
3722        * libnetworking/include/Makefile.am: Remove.
3723        * libnetworking/Makefile.am: Add handling of *.h files.
3724        * libnetworking/configure.in: Remove include/Makefile.
3725
37262001-02-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3727
3728        * Makefile.am: install to $(exec_prefix)/@RTEMS_BSP@.
3729
37302001-01-31      Sergei Organov <osv@javad.ru>
3731
3732        * libnetworking/rtems_servers/ftp.d: Following changes: - Hacks with
3733        current dir and root dir removed in favor of new libio support for
3734        task-local current and root directories. - Bug in `close_data_socket()'
3735        introduced by previous change fixed. - `command_pasv()' changed to set
3736        timeout on socket we are listening on and code fixed to don't close
3737        socket twice on error. - `serr()' changed to clear `errno'. -
3738        `data_socket()' changed to clear `errno' before `bind()'. - `session()'
3739        changed to clear `errno' before processing session. -
3740        `close_data_socket()' fixed to close both active and passive sockets -
3741        Initialize info->data_socket to -1 in `daemon()' - Initialize `fname' to
3742        empty string  in `exec_command()'.
3743
37442001-01-25      Eric Norum <eric.norum@usask.ca>
3745
3746        * libnetworking/lib/tftpDriver.c: Reduce first timeout interval.  This
3747        improves throughput on systems which are dropping packets.   Only the
3748        first timeout is reduced.  This keeps the number of extra packets down
3749        on networks that are very busy and dropping lots of packets.
3750
37512001-01-24      Sergei Organov <osv@javad.ru>
3752
3753        * libnetworking/rtems_servers/ftpd.c,
3754        libnetworking/rtems_servers/ftpd.h: Major enhancements as listed below:
3755        - Timeouts on sockets implemented. 'idle' field added to configuration.
3756        No timeout by default to keep backward compatibility. Note: SITE IDLE
3757        command not implemented yet. - Basic global access control implemented.
3758        'access' field added to configuration. No access limitations by default
3759        to keep backward compatibility. - Anchor data socket for active mode
3760        (using self IP and port 20.) - Fixed default data port support (still
3761        not tested). - Don't allow IP address different from originating host in
3762        PORT command to improve security. - Fixed bug in MDTM command. - Check
3763        for correctness of parsing of argument in command_port(). - Fixed
3764        squeeze_path() to don't allow names like 'NAME/smth' where 'NAME' is not
3765        a directory. - Command parsing a little bit improved: command names are
3766        now converted to upper-case to be more compatible with RFC (command
3767        names are not case-sensitive.) - Reformat comments so that they have
3768        RTEMS look-and-feel. - Fixed DELE, SITE CHMOD, RMD, MKD broken by
3769        previous changes - True ASCII mode implemented (doesn't work for hooks
3770        and /dev/null) - Passive mode implemented, PASV command added. - Default
3771        port for data connection could be used (untested, can't find ftp client
3772        that doesn't send PORT command) - SYST reply changed to UNIX, as former
3773        RTEMS isn't registered name. - Reply codes reviewed and fixed.
3774
37752001-01-18      Joel Sherrill <joel@OARcorp.com>
3776
3777        * librdbg/src/powerpc/new_exception_processing/remdeb_svc.c: Corrected
3778        macro using variable arguments.
3779        * librdbg/src/powerpc/new_exception_processing/remdeb.h,
3780        librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c: Regenerated
3781        since I updated the main RTEMS development machine to RedHat 7.2 and
3782        apparently got a new version of rpcgen.
3783
37842001-01-12      Sergei Organov <osv@javad.ru>
3785
3786        * libnetworking/rtems_servers/ftpd.c,
3787        libnetworking/rtems_servers/ftpd.h: Major enhancements as listed below:
3788        - use pool of pre-created threads to handle sessions instead of
3789        creating/deleting threads on the fly - LIST output is now similar to
3790        what "/bin/ls -al" would output, thus FTP clients such Netscape are
3791        happy with it. - LIST NAME now works (both for files and directories) -
3792        added support for NLST, CDUP, and MDTM FTP commands to make more FTP
3793        clients happy  - keep track of CWD for every session separately -
3794        ability to specify root directory name for FTPD in configuration table.
3795        FTPD will then create illusion for FTP clients that this is actually
3796        root directory. - ignore options sent in commands, thus LIST -al FILE
3797        works and doesn't try to list "-al" directory. - buffers are allocated
3798        on stack instead of heap where possible to eliminate malloc/free calls
3799        (avoid possible heap fragmentation troubles). - drop using of task
3800        notepad to pass parameters - use function arguments instead - use
3801        snprintf() instead of sprintf() as the latter is unsafe - use of PF_INET
3802        in socket() instead of AF_INET.
3803
38042001-01-02      Joel Sherrill <joel@OARcorp.com>
3805
3806        * libnetworking/CHANGELOG: Removed.
3807        * libnetworking/README: Merged CHANGELOG contents as initial changes.
3808
38092000-12-14      Eric Norum <eric.norum@usask.ca>
3810
3811        * libnetworking/lib/tftpDriver.c: Added write capability.
3812
38132000-12-08      Joel Sherrill <joel@OARcorp.com>
3814
3815        * libnetworking/libc/linkaddr.c: Initialized variable to remove warning.
3816        * libnetworking/modem/ppp.c, libnetworking/modem/ppp_tty.c: Made
3817        numerous variable declarations conditional on PPP_COMPRESS and
3818        PPP_FILTER.  Commented out variables that were not used because the code
3819        using them was commented out. Removed totally unused variables.
3820        * libnetworking/modem/pppcompress.c: Added parentheses to avoid warnings.
3821        * libnetworking/pppd/pppmain.c: Removed numerous warnings.
3822
38232000-11-30      Joel Sherrill <joel@OARcorp.com>
3824
3825        * libnetworking/modem/ppp_tty.c: Changed to include
3826        <rtems/termiostypes.h> since that is an RTEMS specific header file.
3827        * libnetworking/sys/ttycom.h: Moved to lib/include/sys.
3828        * libnetworking/Makefile.am: Modified to reflect above.
3829
38302000-11-27      Joel Sherrill <joel@OARcorp.com>
3831
3832        * libnetworking/libc/res_init.c: Fix typo - adding missing # on include.
3833
38342000-11-25      Eric Norum <eric.norum@usask.ca>
3835
3836        * libnetworking/libc/res_init.c: Move include to avoid compiler dumping
3837        core.
3838
38392000-11-25      Antti P Miettinen  <antti.p.miettinen@nokia.com>
3840
3841        * libnetworking/wrapup/Makefile.am: Added modem subdir.
3842        * libnetworking/configure.in, libnetworking/Makefile.am: Added modem
3843        subdir.
3844        * libnetworking/net/Makefile.am: Added if_pppvar.h, pppcompress.h.
3845        * libnetworking/pppd/Makefile.am: Added pppmain.c (which needs work).
3846        * libnetworking/pppd/chat.c, libnetworking/pppd/fsm.c,
3847        libnetworking/pppd/fsm.h, libnetworking/pppd/ipxcp.c,
3848        libnetworking/pppd/main.c, libnetworking/pppd/ppp_tty.c,
3849        libnetworking/pppd/upap.c: Changes from Thomas Doerfler
3850        <Thomas.Doerfler@imd-systems.de> and cosmetic changes by me. Actually
3851        main.c and ppp_tty.c should be scratched. The modem subdir has the real
3852        ppp_tty.c and the real pppd main is in pppmain.c.
3853
38542000-11-13      Jiri Gaisler <jgais@ws.estec.esa.nl>
3855
3856        * libchip/network/sonic.c: Added ipalign() routine to align the received
3857        packet so that the ip header is on a 32-bit boundary. Necessary for
3858        cpu's that do not allow unaligned loads and stores and when the 32-bit
3859        DMA mode is used.
3860
38612000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3862
3863        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
3864        * libchip/Makefile.am: Use ... instead of RTEMS_TOPdir in
3865        ACLOCAL_AMFLAGS.
3866        * librdbg/Makefile.am: Use ... instead of RTEMS_TOPdir in
3867        ACLOCAL_AMFLAGS.
3868        * libnetworking/Makefile.am: Use ... instead of RTEMS_TOPdir in
3869        ACLOCAL_AMFLAGS.
3870
38712000-11-03      Chris Johns <ccj@acm.org>
3872
3873        * libchip/network/README.cs8900, libchip/network/cs8900.c,
3874        libchip/network/cs8900.h: New files.
3875
38762000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3877
3878        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
3879        * libchip/Makefile.am: Switch to ACLOCAL_AMFLAGS = -I
3880        $(RTEMS_TOPdir)/aclocal.
3881        * librdbg/Makefile.am: Switch to ACLOCAL_AMFLAGS = -I
3882        $(RTEMS_TOPdir)/aclocal.
3883        * libnetworking/Makefile.am: Switch to ACLOCAL_AMFLAGS = -I
3884        $(RTEMS_TOPdir)/aclocal.
3885
38862000-10-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3887
3888        * configure.in: Switch to GNU-canonicalization.
3889        * Makefile.am: Reflect changes to configure.in.
3890        * acinclude.m4: Remove.
3891
38922000-10-30      Joel Sherrill <joel@OARcorp.com>
3893
3894        * POSIX include files merged into newlib.  This resulted in some
3895        definitions moving to other files and thus some secondary effects in
3896        RTEMS source code.
3897        * libnetworking/machine/types.h: Added _CLOCKID_T_ and _TIMER_T_ to be
3898        in sync with newlib's <machine/types.h>.
3899        * libnetworking/rtems/rtems_bsdnet_internal.h: newlib now includes
3900        definition of struct itimerval in <sys/time.h>.
3901
39022000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3903
3904        * configure.in: add lib/libbsp to the GNU canonicalized subdirectories,
3905        remove cfg_subdirs, cfg_subdirs1, hst_subdirs1.
3906        * Makefile.am: remove cfg_subdirs, cfg_subdirs1, hst_subdirs1.
3907        * ChangeLog: Fix typos.
3908        * configure.in: add tests to the GNU canonicalized subdirectories.
3909
39102000-10-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3911
3912        * configure.in: add lib/libcpu to the GNU canonicalized subdirectories.
3913        * configure.in: add lib to the GNU canonicalized subdirectories,  make
3914        the lib directory before configuring lib/.
3915
39162000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3917
3918        * configure.in, Makefile.am: add exec to the GNU canonicalized
3919        subdirectories.
3920        * configure.in: add librtems++ to the GNU canonicalized subdirectories.
3921        * configure.in: add libnetworking, librpc and librdb to the GNU
3922        canonicalized subdirectories.
3923        * configure.in: add libmisc and libchip to the GNU canonicalized
3924        subdirectories.
3925        * libchip/Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
3926        Switch to GNU canonicalization.
3927        * librdbg/Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
3928        Switch to GNU canonicalization.
3929        * libnetworking/Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
3930        Switch to GNU canonicalization.
3931
39322000-10-24      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3933
3934        * Makefile.am, acinclude.m4, configure.in: Introduce GNU
3935        canonicalization to libfs/. The approach is currently a bit of a hack as
3936        GNU canonicalization does not support the per-BSP build some of the
3937        other directories require.  As more of the tree is converted, this will
3938        become less  of an issue.
3939
39402000-10-20      Joel Sherrill <joel@OARcorp.com>
3941
3942        * libchip/network/dec21140.c: Corrected attach to include "int attach"
3943        parameter.
3944
39452000-10-19      Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
3946
3947        * librdbg/src/m68k/any/remdeb.h, librdbg/src/m68k/any/remdeb_xdr.c,
3948        librdbg/src/m68k/any/remdeb_svc.c: New files missed in merger.
3949        * librdbg/configure.in: Add m68k support.
3950        * librdbg/include/rdbg/m68k, librdbg/src/m68k, librdbg/src/m68k/any: New
3951        subdirectory.
3952        * librdbg/src/_servtgt.c: add status text to prinf upon task creation
3953        failure.
3954        * librdbg/src/rdbg.c: reconnect rdbg exception handlers upon RPC calls.
3955        * librdbg/src/m68k/Makefile.am, librdbg/src/m68k/any/Makefile.am,
3956        librdbg/src/m68k/any/remdeb_f.x, librdbg/src/m68k/any/.cvsignore,
3957        librdbg/src/m68k/any/remdeb.h, librdbg/src/m68k/any/remdeb_xdr.c,
3958        librdbg/src/m68k/any/remdeb_svc.c, librdbg/src/m68k/excep_f.c,
3959        librdbg/src/m68k/rdbg_cpu_asm.S, librdbg/src/m68k/rdbg_f.c,
3960        librdbg/src/m68k/.cvsignore: New files.
3961        * libnetworking/lib/tftpDriver.c: add comments to handlers struct
3962        function pointers.
3963        * libnetworking/rtems/rtems_glue.c: move pointer arithmetic to be
3964        _after_ pointer has been checked against NULL.
3965
39662000-10-18      Joel Sherrill <joel@OARcorp.com>
3967
3968        * wrapup/Makefile.am: Added libfs.
3969
39702000-10-18      Chris Johns <ccj@acm.org>
3971
3972        * libfs created.
3973        * configure.in: Added libfs subdirectory.
3974        * libnetworking/pppd/ipxcp.c: Fixed a typo.
3975
39762000-09-28      Joel Sherrill <joel@OARcorp.com>
3977
3978        * libnetworking/rtems_webserver/Makefile.am,
3979        libnetworking/rtems_webserver/base64.c,
3980        libnetworking/rtems_webserver/base64.c: Renamed base64.c to wbase64.c.
3981        * libnetworking/rtems_webserver/sock.c: Added file missed in merger.
3982
39832000-09-22      Joel Sherrill <joel@OARcorp.com>
3984
3985        * libnetworking/machine/types.h, libnetworking/pppd/pppd.h,
3986        libnetworking/rtems/rtems_bsdnet_internal.h,
3987        libnetworking/rtems_webserver/webmain.c: machine/types.h  should not
3988        have included rtems.h.  It is now including precisely the  least amount
3989        of low level, yet portable .h files to get the basic RTEMS types
3990        defined.  This rippled into other  files since rtems_bsdnet_internal.h
3991        used machine/types.h to include rtems.h.
3992
39932000-09-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3994
3995        * configure.in: Add RTEMS_PROG_CC_FOR_TARGET, RTEMS_CANONICALIZE_TOOLS.
3996
39972000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
3998
3999        * libnetworking/ChangeLog: Cleanup.
4000
40012000-09-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
4002
4003        * libchip/network/Makefile.am: Use AM_*FLAGS += ...
4004        * libchip/ChangeLog: Fix formating.
4005
40062000-09-05      Joel Sherrill <joel@OARcorp.com>
4007
4008        * libnetworking/rtems/rtems_syscall.c: Changed from O_NONBLOCK to
4009        internal RTEMS_LIBIO_FLAGS_NO_DELAY to avoid O_NONBLOCK/O_NDELAY
4010        confusion and to work with the converted flags.
4011
40122000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
4013
4014        * wrapup/Makefile.am: Include compile.am.
4015        * libchip/network/Makefile.am, libchip/rtc/Makefile.am,
4016        libchip/serial/Makefile.am: Include compile.am.
4017        * librdbg/src/i386/any/Makefile.am,
4018        librdbg/src/powerpc/mcp750/Makefile.am: Include compile.am.
4019        * libnetworking/kern/Makefile.am, libnetworking/lib/Makefile.am,
4020        libnetworking/libc/Makefile.am, libnetworking/net/Makefile.am,
4021        libnetworking/netinet/Makefile.am, libnetworking/nfs/Makefile.am,
4022        libnetworking/pppd/Makefile.am, libnetworking/rtems/Makefile.am,
4023        libnetworking/rtems_servers/Makefile.am,
4024        libnetworking/rtems_webserver/Makefile.am,
4025        libnetworking/wrapup/Makefile.am: Include compile.am.
4026
40272000-09-01      Rosimildo daSilva <rdasilva@connecttel.com>
4028
4029        * libnetworking/emfdb.c: Removed stray semi-colon.  Reported on GoAhead
4030        mailing lists by Jim Rudnicki <jdrudnicki@yahoo.com>.
4031
40322000-08-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
4033
4034        * libnetworking/netinet/tcp_input.c: Spelling corrections.
4035
40362000-08-31      Joel Sherrill <joel@OARcorp.com>
4037
4038        * Merged version 2.1 of GoAhead webserver.  This update was submitted by
4039        Antti P Miettinen <antti.p.miettinen@nokia.com>.
4040        * libnetworking/NOTES, libnetworking/base64.c, libnetworking/ejIntrn.h,
4041        libnetworking/emfdb.c, libnetworking/emfdb.h, libnetworking/md5.h,
4042        libnetworking/md5c.c, libnetworking/ um.c, libnetworking/um.h: New files.
4043        * libnetworking/wbase64.c: Removed.
4044        * libnetworking/Makefile.am, libnetworking/asp.c,
4045        libnetworking/balloc.c, libnetworking/default.c, libnetworking/ej.h,
4046        libnetworking/ejlex.c, libnetworking/ejparse.c, libnetworking/ form.c,
4047        libnetworking/h.c, libnetworking/handler.c, libnetworking/mime.c,
4048        libnetworking/misc.c, libnetworking/ringq.c, libnetworking/rom.c,
4049        libnetworking/security.c, libnetworking/ socket.c, libnetworking/sym.c,
4050        libnetworking/uemf.c, libnetworking/uemf.h, libnetworking/url.c,
4051        libnetworking/value.c, libnetworking/webcomp.c, libnetworking/webmain.c,
4052        libnetworking/ webpage.c, libnetworking/webrom.c, libnetworking/webs.c,
4053        libnetworking/webs.h, libnetworking/websuemf.c, libnetworking/wsIntrn.h:
4054        Modified.
4055
40562000-08-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
4057
4058        * configure.in: Add lib/libcpu and lib/libbsp to cfg_subdirs.
4059
40602000-08-30      Joel Sherrill <joel@OARcorp.com>
4061
4062        * libnetworking/rtems_webserver/license.txt: New file.
4063
40642000-08-10      Joel Sherrill <joel@OARcorp.com>
4065
4066        * ChangeLog: New file.
4067        * libchip/ChangeLog: New file.
4068        * librdbg/ChangeLog: New file.
4069        * libnetworking/ChangeLog: New file.
4070
Note: See TracBrowser for help on using the repository browser.