Timeline



02/26/03:

18:05 Changeset in rtems [a696c7a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-26 RTEMS * setup.def: Updated gdb revision to -2 so arm will build and to fix psim build problem on NetBSD. * gcc3newlib/gccnewlib.add: Ignore dependency on GNAT RPM since RedHat? 7.3 doesn't have it available. Maybe later. * gdb/Makefile.am: Cleanup way the RPM_SPECS_DATA variable is built.
17:29 Ticket #362 (Moving RTEMS_VERSION) created by Ralf Corsepius
I would want to move RTEMS_VERSION out of sptables.h.in because …
17:29 Ticket #363 (Move _RTEMS_version[]) created by Ralf Corsepius
I would want to move this part of sptables.h.in #if …
15:52 Changeset in rtems [8a1d1e0b] by Ralf Corsepius <ralf.corsepius@…>
2003-02-26 Ralf Corsepius <corsepiu@…> * gcc3newlib/gccnewlib.add: Add %gcc_version, %newlib_version. Apply %gcc_version, %newlib_version. * gcc3newlib/target-c++.add: Apply %gcc_version, %newlib_version. * gcc3newlib/target-g77.add: Apply %gcc_version, %newlib_version. * gcc3newlib/target-gcc.add: Apply %gcc_version, %newlib_version. * gcc3newlib/target-gcj.add: Apply %gcc_version, %newlib_version. * gcc3newlib/target-gnat.add: Apply %gcc_version, %newlib_version. * gcc3newlib/target-objc.add: Apply %gcc_version, %newlib_version.
07:46 Changeset in rtems [d4e67c5d] by Ralf Corsepius <ralf.corsepius@…>
2003-02-26 Ralf Corsepius <corsepiu@…> * custom/armulator.cfg: CPU_CFLAGS = -msoft-float. * custom/vegaplus.cfg: CPU_CFLAGS = -msoft-float. * custom/ebd7312.cfg: CPU_CFLAGS = -msoft-float. * custom/arm_bare_bsp.cfg: CPU_CFLAGS = -msoft-float.
07:45 Changeset in rtems [f622d16] by Ralf Corsepius <ralf.corsepius@…>
2003-02-26 Ralf Corsepius <corsepiu@…> * custom/armulator.cfg: CPU_CFLAGS = -msoft-float. * custom/vegaplus.cfg: CPU_CFLAGS = -msoft-float. * custom/ebd7312.cfg: CPU_CFLAGS = -msoft-float. * custom/arm_bare_bsp.cfg: CPU_CFLAGS += -msoft-float.
07:16 Changeset in rtems [536b41a] by Ralf Corsepius <ralf.corsepius@…>
2003-02-26 Ralf Corsepius <corsepiu@…> * rtems/score/arm.h: Set up ARM_HAS_FPU based on -DSOFTFP.
07:14 Changeset in rtems [55e2e98] by Ralf Corsepius <ralf.corsepius@…>
2003-02-26 Ralf Corsepius <corsepiu@…> * configure.ac: AC_SUBST(RTEMS_VERSION,_RTEMS_VERSION).

02/21/03:

19:20 Ticket #361 (strange quirk about libchip/networking/dec21140 mvme23xx BSP) created by strauman
The dec21140 (PPC branch) initialization reads PCI_INTERRUPT_LINE …
18:34 Ticket #360 (incorrect IRQ priority settings in powerpc/shared BSPs) created by strauman
BSP code had set the task priority register multiple times of the …
00:02 Ticket #359 (bootstrap does not accept automake-1.7.3) created by Ralf Corsepius
bootstrap does not accept automake-1.7.3 Release: RTEMS-CVS and …

02/20/03:

22:12 Changeset in rtems [125d81db] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * rtems/powerpc/registers.h: Add definitions for HID1 and DABR SPRs.
22:11 Changeset in rtems [cd228d76]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * rtems/powerpc/registers.h: Add definitions for HID1 and DABR SPRs.
22:10 Changeset in rtems [c494deb8] by Joel Sherrill <joel.sherrill@…>
Patch against RTEMS-ss-20030128 Author: Till Straumann <strauman@…> 2003/2/11 This patch addresses the following issues: 2003-02-20 Till Straumann <strauman@…> PR 349/bsps * src/mount.c, src/privateenv.c: - mount() bugfix: allocated 'loc' node must be released if mount fails due to missing node_type_h - silence compiler warning about improper pointer type Index: cpukit/libcsupport/src/mount.c =================================================================== RCS file: /afs/slac/g/spear/cvsrep/rtems/src-20030128/cpukit/libcsupport/src/mount.c,v retrieving revision 1.1.1.2 diff -c -r1.1.1.2 mount.c * cpukit/libcsupport/src/mount.c 29 Jan 2003 22:57:19 -0000 1.1.1.2 --- cpukit/libcsupport/src/mount.c 7 Feb 2003 20:47:49 -0000 * * 142,147 --- 142,149 ---- mount_point, RTEMS_LIBIO_PERMS_RWX, &loc, TRUE ) == -1 ) goto cleanup_and_bail; + loc_to_free = &loc; + /* * Test for node_type_h */ * * 155,161 * Test to see if it is a directory */ - loc_to_free = &loc; if ( loc.ops->node_type_h( &loc ) != RTEMS_FILESYSTEM_DIRECTORY ) { errno = ENOTDIR; goto cleanup_and_bail; --- 157,162 ---- Index: cpukit/libcsupport/src/privateenv.c =================================================================== RCS file: /afs/slac/g/spear/cvsrep/rtems/src-20030128/cpukit/libcsupport/src/privateenv.c,v retrieving revision 1.1.1.3 diff -c -r1.1.1.3 privateenv.c * cpukit/libcsupport/src/privateenv.c 29 Jan 2003 22:57:20 -0000 1.1.1.3 --- cpukit/libcsupport/src/privateenv.c 30 Jan 2003 18:01:40 -0000 * * 65,71 tmp->refcnt = 1; #endif ! sc = rtems_task_variable_add(RTEMS_SELF,(void*)&rtems_current_user_env,free_user_env); if (sc != RTEMS_SUCCESSFUL) { /* don't use free_user_env because the pathlocs are * not initialized yet --- 65,71 ---- tmp->refcnt = 1; #endif ! sc = rtems_task_variable_add(RTEMS_SELF,(void*)&rtems_current_user_env,(void(*)(void *))free_user_env); if (sc != RTEMS_SUCCESSFUL) { /* don't use free_user_env because the pathlocs are * not initialized yet
22:09 Changeset in rtems [8860f103]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Patch against RTEMS-ss-20030128 Author: Till Straumann <strauman@…> 2003/2/11 This patch addresses the following issues: 2003-02-20 Till Straumann <strauman@…> PR 349/bsps * src/mount.c, src/privateenv.c: - mount() bugfix: allocated 'loc' node must be released if mount fails due to missing node_type_h - silence compiler warning about improper pointer type Index: cpukit/libcsupport/src/mount.c =================================================================== RCS file: /afs/slac/g/spear/cvsrep/rtems/src-20030128/cpukit/libcsupport/src/mount.c,v retrieving revision 1.1.1.2 diff -c -r1.1.1.2 mount.c * cpukit/libcsupport/src/mount.c 29 Jan 2003 22:57:19 -0000 1.1.1.2 --- cpukit/libcsupport/src/mount.c 7 Feb 2003 20:47:49 -0000 * * 142,147 --- 142,149 ---- mount_point, RTEMS_LIBIO_PERMS_RWX, &loc, TRUE ) == -1 ) goto cleanup_and_bail; + loc_to_free = &loc; + /* * Test for node_type_h */ * * 155,161 * Test to see if it is a directory */ - loc_to_free = &loc; if ( loc.ops->node_type_h( &loc ) != RTEMS_FILESYSTEM_DIRECTORY ) { errno = ENOTDIR; goto cleanup_and_bail; --- 157,162 ---- Index: cpukit/libcsupport/src/privateenv.c =================================================================== RCS file: /afs/slac/g/spear/cvsrep/rtems/src-20030128/cpukit/libcsupport/src/privateenv.c,v retrieving revision 1.1.1.3 diff -c -r1.1.1.3 privateenv.c * cpukit/libcsupport/src/privateenv.c 29 Jan 2003 22:57:20 -0000 1.1.1.3 --- cpukit/libcsupport/src/privateenv.c 30 Jan 2003 18:01:40 -0000 * * 65,71 tmp->refcnt = 1; #endif ! sc = rtems_task_variable_add(RTEMS_SELF,(void*)&rtems_current_user_env,free_user_env); if (sc != RTEMS_SUCCESSFUL) { /* don't use free_user_env because the pathlocs are * not initialized yet --- 65,71 ---- tmp->refcnt = 1; #endif ! sc = rtems_task_variable_add(RTEMS_SELF,(void*)&rtems_current_user_env,(void(*)(void *))free_user_env); if (sc != RTEMS_SUCCESSFUL) { /* don't use free_user_env because the pathlocs are * not initialized yet
22:07 Changeset in rtems [c074ea2e] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * mpc6xx/exceptions/raw_exception.c, mpc6xx/mmu/bat.c, mpc6xx/mmu/pte121.c, shared/include/cpuIdent.c, shared/include/cpuIdent.h, shared/src/Makefile.am, shared/src/stack.c, shared/src/stackTrace.h, powerpc/registers.h: - undo improper 'fix' who broke mpc604r identification - fix: 7400 identification PVR value was wrong - enhance 'setdbat()' to switch OFF a given BAT if called with 0 size - fix: page table support bugfix - enhancement: provide routines to take and print stack trace snapshots - add definitions for HID1 and DABR SPRs
22:07 Changeset in rtems [da1100e] by cvs2git <rtems-devel@…>
This commit was manufactured by cvs2svn to create branch 'rtems-4-6-branch'. Cherrypick from master 2003-02-20 22:07:22 UTC Joel Sherrill <joel.sherrill@…> '2003-02-20 Till Straumann <strauman@…>': c/src/lib/libcpu/powerpc/shared/src/stack.c c/src/lib/libcpu/powerpc/shared/src/stackTrace.h
22:07 Changeset in rtems [d49389a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * mpc6xx/exceptions/raw_exception.c, mpc6xx/mmu/bat.c, mpc6xx/mmu/pte121.c, shared/include/cpuIdent.c, shared/include/cpuIdent.h, shared/src/Makefile.am, shared/src/stack.c, shared/src/stackTrace.h, powerpc/registers.h: - undo improper 'fix' who broke mpc604r identification - fix: 7400 identification PVR value was wrong - enhance 'setdbat()' to switch OFF a given BAT if called with 0 size - fix: page table support bugfix - enhancement: provide routines to take and print stack trace snapshots - add definitions for HID1 and DABR SPRs
21:59 Changeset in rtems [f3ceb2bf]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * configure.ac: Add glue to the powerpc/shared BSP to use the vmeUniverse VME-PCI bridge driver.
21:59 Changeset in rtems [ef42b5c] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * configure.ac: Add glue to the powerpc/shared BSP to use the vmeUniverse VME-PCI bridge driver.
21:57 Changeset in rtems [8f814761]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * startup/Makefile.am, startup/linkcmds startup/Makefile.am, startup/bspstart.c, startup/pgtbl_activate.c, startup/pgtbl_setup.c: Let the powerpc/shared (+derived) BSPs use pagetable support from libcpu.
21:57 Changeset in rtems [83ae314] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * startup/Makefile.am, startup/linkcmds startup/Makefile.am, startup/bspstart.c, startup/pgtbl_activate.c, startup/pgtbl_setup.c: Let the powerpc/shared (+derived) BSPs use pagetable support from libcpu.
21:57 Changeset in rtems [e00763df]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * Makefile.am, configure.ac: Add glue to the powerpc/shared BSP to use the vmeUniverse VME-PCI bridge driver. * vme/.cvsignore, vme/Makefile.am, wrapup/Makefile.am: New files.
21:57 Changeset in rtems [ff4e9fe] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * startup/Makefile.am, startup/linkcmds startup/Makefile.am, startup/bspstart.c, startup/pgtbl_activate.c, startup/pgtbl_setup.c: Let the powerpc/shared (+derived) BSPs use pagetable support from libcpu.
21:57 Changeset in rtems [3c2f21a9] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * Makefile.am, configure.ac: Add glue to the powerpc/shared BSP to use the vmeUniverse VME-PCI bridge driver. * vme/.cvsignore, vme/Makefile.am, wrapup/Makefile.am: New files.
21:52 Changeset in rtems [8fcce4f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * openpic/Makefile.am, pci/Makefile.am: - install the 'openpic.h' and 'pci.h' headers - avoid a name clash by renaming 'vsprintf' & friends to 'k_vsprintf' etc. - let 'rtemsReboot' print a stack trace (in case an 'assert' failed) - irq.c: * fix: remove implicit assumption that ISA interrupt vectors start at 0 * add BSP hook to let a VME interrupt acknowledge the PCI/openpic IRQ. (SEE ALSO THE ppc-sharedbsp-vme.diff patch) - fix: EABI compliance; isr/exception lowlevel handlers must not clobber R2 or R13 - fix: openpic_init was called with the polarity/senses tables swapped (fixed wrong order of arguments) - cosmetics: use new _read_SPRXX() _write_SPRXX() macros
21:52 Changeset in rtems [5cfb5ca] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * openpic/Makefile.am, pci/Makefile.am: - install the 'openpic.h' and 'pci.h' headers - avoid a name clash by renaming 'vsprintf' & friends to 'k_vsprintf' etc. - let 'rtemsReboot' print a stack trace (in case an 'assert' failed) - irq.c: * fix: remove implicit assumption that ISA interrupt vectors start at 0 * add BSP hook to let a VME interrupt acknowledge the PCI/openpic IRQ. (SEE ALSO THE ppc-sharedbsp-vme.diff patch) - fix: EABI compliance; isr/exception lowlevel handlers must not clobber R2 or R13 - fix: openpic_init was called with the polarity/senses tables swapped (fixed wrong order of arguments) - cosmetics: use new _read_SPRXX() _write_SPRXX() macros
21:48 Changeset in rtems [e7625fc6] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * console/polled_io.c, console/reboot.c, irq/irq.c, irq/irq_asm.S, irq/irq_init.c, openpic/Makefile.am, startup/linkcmds, vectors/vectors.S, vectors/vectors_init.c: - install the 'openpic.h' and 'pci.h' headers - avoid a name clash by renaming 'vsprintf' & friends to 'k_vsprintf' etc. - let 'rtemsReboot' print a stack trace (in case an 'assert' failed) - irq.c: * fix: remove implicit assumption that ISA interrupt vectors start at 0 * add BSP hook to let a VME interrupt acknowledge the PCI/openpic IRQ. (SEE ALSO THE ppc-sharedbsp-vme.diff patch) - fix: EABI compliance; isr/exception lowlevel handlers must not clobber R2 or R13 - fix: openpic_init was called with the polarity/senses tables swapped (fixed wrong order of arguments) - cosmetics: use new _read_SPRXX() _write_SPRXX() macros
21:46 Changeset in rtems [ea29ba6]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * startup/pgtbl_setup.c, startup/pgtbl_activate.c: New files * startup/Makefile.am, startup/bspstart.c, startup/linkcmds: Let the powerpc/shared (+derived) BSPs use pagetable support from libcpu.
21:45 Changeset in rtems [837a1323] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * startup/pgtbl_setup.c, startup/pgtbl_activate.c: New files * startup/Makefile.am, startup/bspstart.c, startup/linkcmds: Let the powerpc/shared (+derived) BSPs use pagetable support from libcpu.
21:43 Changeset in rtems [b95aedf]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * vme/.cvsignore, vme/Makefile.am, vme/VME.h, vme/VMEConfig.h, vme/vmeconfig.c: Add glue to the powerpc/shared BSP to use the vmeUniverse VME-PCI bridge driver.
21:42 Changeset in rtems [422d561d] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * vme/.cvsignore, vme/Makefile.am, vme/VME.h, vme/VMEConfig.h, vme/vmeconfig.c: Add glue to the powerpc/shared BSP to use the vmeUniverse VME-PCI bridge driver.
21:38 Changeset in rtems [01fdbb1] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * console/console.c, console/uart.c, console/uart.h: implement IOCTLs for the serial (UART) console to install/retrieve a BREAK-IRQ callback. The callback routine (if installed) is invoked from the UART ISR when a BREAK interrupt is detected. This can be used e.g. to enforce a "hotkey" reboot a la vxWorks Ctrl-X (although we use the serial line break condition) NOTE: The callback runs in ISR context.
21:37 Changeset in rtems [254f055] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * README.universe, vmeUniverse/README.porting vmeUniverse/README.universe, vmeUniverse/vmeUniverse.c, vmeUniverse/vmeUniverse.h: Update of the VME universe driver. * vmeUniverse/README.porting: New file.
21:35 Changeset in rtems [03dfa5ee] by cvs2git <rtems-devel@…>
This commit was manufactured by cvs2svn to create branch 'rtems-4-6-branch'. Cherrypick from master 2003-02-20 21:35:57 UTC Joel Sherrill <joel.sherrill@…> '2003-02-20 Till Straumann <strauman@…>': c/src/lib/libbsp/shared/vmeUniverse/README.porting
21:35 Changeset in rtems [20b349f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * shared/README.universe, shared/vmeUniverse/README.porting shared/vmeUniverse/README.universe, shared/vmeUniverse/vmeUniverse.c, shared/vmeUniverse/vmeUniverse.h: Update of the VME universe driver.
21:32 Changeset in rtems [4f3e4f33]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 349/bsps * console/console.c, console/uart.c, console/uart.h: implement IOCTLs for the serial (UART) console to install/retrieve a BREAK-IRQ callback. The callback routine (if installed) is invoked from the UART ISR when a BREAK interrupt is detected. This can be used e.g. to enforce a "hotkey" reboot a la vxWorks Ctrl-X (although we use the serial line break condition) NOTE: The callback runs in ISR context.
21:25 Changeset in rtems [c1631075] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 353/bsps * include/bsp.h: Let the application override the network driver and attach routine.
21:24 Changeset in rtems [d19443c7]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 353/bsps * include/bsp.h: Let the application override the network driver and attach routine.
21:22 Ticket #349 (PowerPC BSP and Libcpu Fixes) closed by Joel Sherrill
21:22 Changeset in rtems [6ba05a77] by Joel Sherrill <joel.sherrill@…>
Fixed typo in PR category.
21:22 Changeset in rtems [47cf7a75]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
Fixed typo in PR category.
21:21 Changeset in rtems [64db6d3] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 351/networking * nfs/bootp_subr.c: Fix ridiculous leak in bootp and use strdup_bootp_realloc() everywhere for sake of consistency.
21:21 Changeset in rtems [7ac73e6]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 351/networking * nfs/bootp_subr.c: Fix ridiculous leak in bootp and use strdup_bootp_realloc() everywhere for sake of consistency.
21:18 Changeset in rtems [8daecd8] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 354/networkign * network/if_fxp.c (Intel eepro network driver): re-enabled the chip against a table of supported chips. The untested ones are still commented out, however.
21:17 Changeset in rtems [9f9ba59]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Till Straumann <strauman@…> PR 354/networkign * network/if_fxp.c (Intel eepro network driver): re-enabled the chip against a table of supported chips. The untested ones are still commented out, however.
20:45 Changeset in rtems [bce9f3b1] by Joel Sherrill <joel.sherrill@…>
2003-02-20 Wolfram Wadepohl <W.Wadepohl@…> PR 357/rtems_misc * src/termios.c (rtems_termios_open): Fixed code the incorrectly checked that the wrong pointer during allocation was NULL.
20:45 Changeset in rtems [2932830b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-20 Wolfram Wadepohl <W.Wadepohl@…> PR 357/rtems_misc * src/termios.c (rtems_termios_open): Fixed code the incorrectly checked that the wrong pointer during allocation was NULL.
20:25 Ticket #353 (pc386 BSP -- allow override of network device name) closed by Joel Sherrill
State-Changed-From-To: open->closed State-Changed-Why: Patch applied to 4.6 branch and trunk.
20:22 Ticket #351 (fix bootp leak) closed by Joel Sherrill
State-Changed-From-To: open->closed State-Changed-Why: Patch applied to both 4.6 branch and trunk.
20:18 Ticket #354 (libchip- Intel EEPRO autodetect more) closed by Joel Sherrill
State-Changed-From-To: open->closed State-Changed-Why: Patch applied to 4.6 and trunk.
19:46 Ticket #357 (Single line patch to rtems_termios_open() in termios.c) closed by Joel Sherrill
State-Changed-From-To: feedback->closed State-Changed-Why: Patch applied to 4.6 branch and trunk. Thanks.
18:16 Ticket #358 (Mail test) closed by Jeff Mayes
State-Changed-From-To: open->closed State-Changed-Why: test case
18:14 Ticket #358 (Mail test) created by Jeff Mayes
Please disregard. Release: unknown
17:20 Ticket #357 (Single line patch to rtems_termios_open() in termios.c) created by ptorre
we have detected an error in the termios.c code. in the function …

02/19/03:

01:29 Ticket #356 (make rtems + powerpc/shared BSP [more] sysv/eabi compliant) created by strauman
A detailed description is available at the top of the patch file …

02/18/03:

16:17 Changeset in rtems [64151bf]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-18 Joel Sherrill <joel@…> * Makefile.am, configure.ac: Remove src2html references. * index.html.in: Update to reflect partial update of Development Environment Guide.
16:16 Changeset in rtems [aa41429]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-18 Joel Sherrill <joel@…> * Makefile.am, develenv.texi: Relect generating .texi from .t's. * direct.t, sample.t, utils.t: New files. * direct.texi, sample.texi, utils.texi: Removed. Now generated from corresponding .t files which are in the process of being updated. This commit is a anspshot of the update effort.
15:19 Changeset in rtems [529fc62] by Ralf Corsepius <ralf.corsepius@…>
2003-02-18 Ralf Corsepius <corsepiu@…> capture/capture-cli.c: Add proper definition to avoid compiler warnings. Apply int = getchar().
14:35 Changeset in rtems [6738c9d] by Ralf Corsepius <ralf.corsepius@…>
2003-02-18 Ralf Corsepius <corsepiu@…> * aclocal/gcc-isystem.m4: New. * aclocal/gcc-specs.m4: Remove. * aclocal/prog-cc.m4: Remove RTEMS_GCC_SPECS. Add RTEMS_GCC_ISYSTEM. Reformat setting up RTEMS_CPPFLAGS.
13:20 Changeset in rtems [f7276a9b] by Ralf Corsepius <ralf.corsepius@…>
2003-02-18 Ralf Corsepius <corsepiu@…> * aclocal/rtems-top.m4: Set PROJECT_ROOT unconditionally. * automake/local.am: Remove $(ARCH), clean-local. * automake/compile.am: Add $(ARCH), clean-local. Set CXXFLAGS = @RTEMS_CFLAGS@ $(XCXXFLAGS).
12:58 Changeset in rtems [385b2e2] by Ralf Corsepius <ralf.corsepius@…>
2003-02-18 Ralf Corsepius <corsepiu@…> * automake/local.am: Introduce depend-gcc. Remove ${ARCH}. * automake/compile.am: Remove GCCSPECS, GCC_SPECS, CONFIG.CC, CC, CPP. Add ${ARCH}. depend-gcc. * aclocal/prog-cc.m4: Set up RTEMS_CPPFLAGS. * aclocal/env-rtemscpu.m4: Remove GCC_SPECS. * aclocal/env-rtemsbsp.m4: Remove GCC_SPECS.
12:51 Changeset in rtems [a0d2c79a] by Ralf Corsepius <ralf.corsepius@…>
2003-02-18 Ralf Corsepius <corsepiu@…> * src/privateenv.c: Fix prototype for free_user_env.

02/15/03:

06:09 Changeset in rtems [21595c7] by Ralf Corsepius <ralf.corsepius@…>
2003-02-15 Ralf Corsepius <corsepiu@…> * configure.ac: Unconditionally check for epstopdf and texi2pdf.
06:09 Changeset in rtems [fb5bfdc4] by Ralf Corsepius <ralf.corsepius@…>
2003-02-15 Ralf Corsepius <corsepiu@…> * buildc.t: Add several @ifset BUILDTOOLS-TAR. * sample.t: Use @code{make/README} instead of @code{@value{RTEMS-UNTAR}/make/README} (Workaround to PR 345).
05:18 Ticket #345 (doc/started does not build) closed by Ralf Corsepius
State-Changed-From-To: open->closed State-Changed-Why: Seems to be a bug or incompatiblity in newer versions of texinfo or tex (The bug occurs during texi->tex transformation). Worked-around by changing the offending code at the end of started/sample.t
04:35 Changeset in rtems [b22fa3ab]4.104.114.84.95 by Ralf Corsepius <ralf.corsepius@…>
2003-02-15 Ralf Corsepius <corsepiu@…> * Makefile.am: Remove references to obsoleted files aclocal/enable-gcc28.m4, aclocal/enable-libcdir.m4.
04:31 Changeset in rtems [a45f7e2]4.104.114.84.95 by Ralf Corsepius <ralf.corsepius@…>
2003-02-15 Ralf Corsepius <corsepiu@…> * ChangeLog?: Take out bogus ppc changelog entry.
04:09 Changeset in rtems [d7efd852] by Ralf Corsepius <ralf.corsepius@…>
2003-02-15 Ralf Corsepius <corsepiu@…> * Makefile.am: Remove references to obsoleted files aclocal/enable-gcc28.m4, aclocal/enable-libcdir.m4.
04:04 Changeset in rtems [299ebb4]4.104.114.84.95 by Ralf Corsepius <ralf.corsepius@…>
Merger from rtems-4-6-branch
04:03 Changeset in rtems [4b14cd2] by Ralf Corsepius <ralf.corsepius@…>
2003-02-15 Ralf Corsepius <corsepiu@…> * Makefile.am: Remove references to obsolete files README.DOS REQUIRES PROBLEMS TESTED README UPDATE_HELP. Add TOOL_TARGETS.

02/14/03:

20:12 Changeset in rtems [9e2dc5f] by Joel Sherrill <joel.sherrill@…>
2003-02-14 Greg Menke <gregory.menke@…> PR 348/bsps * mpc6xx/exceptions/raw_exception.c: Add PPC_603ev as required by MTX603e BSP.
20:12 Changeset in rtems [83795347]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Greg Menke <gregory.menke@…> PR 348/bsps * mpc6xx/exceptions/raw_exception.c: Add PPC_603ev as required by MTX603e BSP.
20:09 Changeset in rtems [de621a5b] by Joel Sherrill <joel.sherrill@…>
2003-02-14 Till Straumann <strauman@…> PR 352/rtems_misc * shell/shell.c: make rtems_shell main task an FP enabled task.
20:08 Changeset in rtems [b70779a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Till Straumann <strauman@…> PR 352/rtems_misc * shell/shell.c: make rtems_shell main task an FP enabled task.
19:54 Changeset in rtems [ebea96b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Joel Sherrill <joel@…> AMD a29k obsolete. * custom/portsw.cfg: Removed.
19:52 Changeset in rtems [4e7d2181]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Joel Sherrill <joel@…> AMD a29k is obsolete. * Makefile.am: Removed reference. * a29k/.cvsignore, a29k/ChangeLog, a29k/Makefile.am, a29k/configure.ac, a29k/clock/.cvsignore, a29k/clock/Makefile.am, a29k/clock/ckinit.c, a29k/clock/clock.S, a29k/clock/clock.h, a29k/timer/.cvsignore, a29k/timer/Makefile.am, a29k/timer/timer.c, a29k/timer/timerisr.c: Removed.
19:50 Changeset in rtems [c4b0613f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Joel Sherrill <joel@…> * index.html.in: Removed a29k reference.
19:50 Changeset in rtems [37b30dc]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Joel Sherrill <joel@…> * cpumodels.t: Removed a29k reference and updated.
19:49 Changeset in rtems [53d5cf48]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Joel Sherrill <joel@…> * preface.texi: Remove a29k references and update.
19:49 Changeset in rtems [52ffa3e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Joel Sherrill <joel@…> * basic.t, entry: Remove A29k references and update.
19:43 Changeset in rtems [6dd184ce]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Joel Sherrill <joel@…> * README.configure, aclocal/rtems-cpu-subdirs.m4: Remove a29k references.
19:40 Changeset in rtems [0404011]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Joel Sherrill <joel@…> AMD a29k declared obsolete. * cpu/Makefile.am: Removed reference. * cpu/a29k/.cvsignore, cpu/a29k/ChangeLog, cpu/a29k/Makefile.am, cpu/a29k/amd.ah, cpu/a29k/asm.h, cpu/a29k/configure.ac, cpu/a29k/cpu.c, cpu/a29k/cpu_asm.S, cpu/a29k/pswmacro.ah, cpu/a29k/register.ah, cpu/a29k/sig.S, cpu/a29k/rtems/.cvsignore, cpu/a29k/rtems/score/.cvsignore, cpu/a29k/rtems/score/a29k.h, cpu/a29k/rtems/score/cpu.h, cpu/a29k/rtems/score/cpu_asm.h, cpu/a29k/rtems/score/types.h: Removed.
19:39 Changeset in rtems [a6ca1f3]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Joel Sherrill <joel@…> AMD a29k port declared obsolete. * a29k/.cvsignore, a29k/ChangeLog, a29k/Makefile.am, a29k/acinclude.m4, a29k/configure.ac, a29k/portsw/.cvsignore, a29k/portsw/ChangeLog, a29k/portsw/Makefile.am, a29k/portsw/README, a29k/portsw/bsp_specs, a29k/portsw/configure.ac, a29k/portsw/times, a29k/portsw/console/.cvsignore, a29k/portsw/console/Makefile.am, a29k/portsw/console/concntl.h, a29k/portsw/console/console.c, a29k/portsw/console/serial.c, a29k/portsw/console/serial.h, a29k/portsw/include/.cvsignore, a29k/portsw/include/Makefile.am, a29k/portsw/include/bsp.h, a29k/portsw/start/.cvsignore, a29k/portsw/start/Makefile.am, a29k/portsw/start/amd.ah, a29k/portsw/start/pswmacro.ah, a29k/portsw/start/register.S, a29k/portsw/start/register.ah, a29k/portsw/start/start.S, a29k/portsw/startup/.cvsignore, a29k/portsw/startup/Makefile.am, a29k/portsw/startup/bspclean.c, a29k/portsw/startup/bspstart.c, a29k/portsw/startup/linkcmds, a29k/portsw/startup/main.c, a29k/portsw/startup/ramlink, a29k/portsw/startup/romlink, a29k/portsw/startup/setvec.c, a29k/portsw/wrapup/.cvsignore, a29k/portsw/wrapup/Makefile.am: Removed.
19:34 Changeset in rtems [b07906fd] by Joel Sherrill <joel.sherrill@…>
* empty log message *
19:33 Changeset in rtems [a6f8daab]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2003-02-14 Till Straumann <strauman@…> PR 347/rtems * rtems/powerpc/registers.h (PPC_Set_decrementer): Correct inline assembly so it correctly generates on newer gcc's.
19:13 Ticket #344 (sh: no memory region specified for section `set_pseu') closed by Joel Sherrill
State-Changed-From-To: open->closed State-Changed-Why: Can't be repeated. Fixed already. Perhaps a tree sync problem.
19:12 Ticket #348 (MTX603e BSP missing libcpu support for CPU model) closed by Joel Sherrill
State-Changed-From-To: analyzed->closed State-Changed-Why: Patch applied.
19:09 Ticket #352 (add FP attribute to main shell task) closed by Joel Sherrill
State-Changed-From-To: open->closed State-Changed-Why: Patch applied to branch and trunk.
18:34 Ticket #347 (Corrupted Decrementer Clock on PPC) closed by Joel Sherrill
State-Changed-From-To: open->closed State-Changed-Why: Patch applied to both branch and trunk.
18:20 Ticket #355 (SH4 patches) created by dedekind
1. c/src/libnetworking/rtems_telnetd/pty.c a). 'No memory' case check …
18:00 Ticket #345 (doc/started does not build) closed by Joel Sherrill
17:59 Ticket #346 (remove docs/tools/src2html1.4a) closed by Joel Sherrill
State-Changed-From-To: open->closed State-Changed-Why: Removed from both 4.6 and trunk.
17:53 Ticket #354 (libchip- Intel EEPRO autodetect more) created by strauman
- if_fxp (intel eepro network driver): re-enabled the chip …
17:52 Ticket #353 (pc386 BSP -- allow override of network device name) created by strauman
allow override of network device name Release: RTEMS-4.6 and CVS
17:50 Ticket #352 (add FP attribute to main shell task) created by strauman
add FP attribute to main shell task. Release: RTEMS-4.6 and CVS
17:43 Ticket #351 (fix bootp leak) created by strauman
bootp leaks memory. Patch attached Release: RTEMS-4.6 and CVS
17:42 Ticket #350 (Honor user setting LD_PATHS as addition to LDFLAGS) created by strauman
Honor LD_PATHS as addition to LDFLAGS in user Makefiles. Release: …
17:41 Ticket #349 (PowerPC BSP and Libcpu Fixes) created by strauman
* Till Straumann: 2003/03/21 (attachment 2) - At some point, CPU …
17:31 Ticket #348 (MTX603e BSP missing libcpu support for CPU model) created by gregory.menke
I think I missed that file when I sent you the mtx patches, so no evil …
05:15 Changeset in rtems [746219a]4.104.114.84.95 by Ralf Corsepius <ralf.corsepius@…>
Fix ChangeLog?.
05:15 Changeset in rtems [6b2b4a36]4.104.114.84.95 by Ralf Corsepius <ralf.corsepius@…>
Merger from rtems-4-6-branch.
04:23 Ticket #347 (Corrupted Decrementer Clock on PPC) created by strauman
The PPC_Set_decrementer() macro is wrong resulting in a wrong value …
03:29 Changeset in rtems [e84c5286]4.104.114.84.95 by Ralf Corsepius <ralf.corsepius@…>
Merger from rtems-4-6-branch.

02/13/03:

16:14 Changeset in rtems [14228b6c] by Ralf Corsepius <ralf.corsepius@…>
Remove.
16:08 Changeset in rtems [f827bded] by Ralf Corsepius <ralf.corsepius@…>
2003-02-11 Ralf Corsepius <corsepiu@…> * src2html: Remove. * src2html1.4a: Remove. * configure.ac: Reflect changes above. * Makefile.am: Reflect changes above.
13:10 Ticket #346 (remove docs/tools/src2html1.4a) created by Ralf Corsepius
docs/tools/src2html1.4a is not used by RTEMS. I propose to remove …
12:44 Ticket #345 (doc/started does not build) created by Ralf Corsepius
doc/started does not build: …

02/12/03:

15:27 Changeset in rtems [fa652b57] by Ralf Corsepius <ralf.corsepius@…>
2003-02-12 Ralf Corsepius <corsepiu@…> * config.sub (rtems-4-6-branch only): New from subversion. * bootstrap (rtems-4-6-branch only): Do not delete config.sub.
15:26 Changeset in rtems [cfc06a7] by Ralf Corsepius <ralf.corsepius@…>
2003-02-12 Ralf Corsepius <corsepiu@…> * aclocal/canonical-target-name.m4: Transform tic4x -> RTEMS_CPU=c4x.
09:30 Ticket #344 (sh: no memory region specified for section `set_pseu') created by Ralf Corsepius
sh-rtems-gcc --pipe -B../../../../../lib/ -B../../../../../gensh2/lib/ …
05:13 Ticket #343 (--program-prefix) created by Ralf Corsepius
4.6.0 configuration does not support --program-prefix. [This PR is a …
Note: See TracTimeline for information about the timeline view.