Timeline



01/12/01:

15:00 Changeset in rtems [c2a4084f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-12 Eric Norum <eric.norum@…> * README, clock/Makefile.am, clock/ckinit.c, clock/clock.c: Clock driver updated to use shell driver mechanism. * clock/ckinit.c: Removed. * clock/clock.c: New file.
13:51 Changeset in rtems [3f777d0e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-12 Sergei Organov <osv@…> * rtems_servers/ftpd.c, rtems_servers/ftpd.h: Major enhancements as listed below: - use pool of pre-created threads to handle sessions instead of creating/deleting threads on the fly - LIST output is now similar to what "/bin/ls -al" would output, thus FTP clients such Netscape are happy with it. - LIST NAME now works (both for files and directories) - added support for NLST, CDUP, and MDTM FTP commands to make more FTP clients happy - keep track of CWD for every session separately - ability to specify root directory name for FTPD in configuration table. FTPD will then create illusion for FTP clients that this is actually root directory. - ignore options sent in commands, thus LIST -al FILE works and doesn't try to list "-al" directory. - buffers are allocated on stack instead of heap where possible to eliminate malloc/free calls (avoid possible heap fragmentation troubles). - drop using of task notepad to pass parameters - use function arguments instead - use snprintf() instead of sprintf() as the latter is unsafe - use of PF_INET in socket() instead of AF_INET Here are ftp clients I've tried new FTPD with (all of them running on Debian GNU/Linux 2.2): Lftp 2.1.10 NcFTP 2.4.3 Netscape 4.75 ftp mc 4.5.49
13:44 Changeset in rtems [d1941587]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-12 Jake Janovetz <janovetz@…> * src/imfs/imfs.h, src/imfs/imfs_creat.c, src/imfs/imfs_debug.c, src/imfs/imfs_eval.c, src/imfs/imfs_fchmod.c, src/imfs/imfs_handlers_memfile.c, src/imfs/imfs_init.c, src/imfs/imfs_initsupp.c, src/imfs/imfs_stat.c, src/imfs/memfile.c, src/imfs/miniimfs_init.c: Final developmental update to "tarfs". When rtems_tarfs_load() is called, it checks the permissions on each file. If there is write permission, it just creates a standard file using "creat()" and therefore, uses the IMFS MEMORY_FILE. If there is no write permission, it creates a LINEAR_FILE node with the appropriate properties. If the permission is ever changed to writeable, IMFS_fchmod converts it to a regular memory file.
13:38 Changeset in rtems [5c27c80]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-12 Joel Sherrill <joel@…> * r46xx/vectorisrs/vectorisrs.c (mips_get_cause): Corrected constraints from general to register. * tx39/vectorisrs/vectorisrs.c (mips_get_cause): Corrected constraints from general to register.
13:36 Changeset in rtems [d2959b2]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-12 Joel Sherrill <joel@…> * setvec.c: Removed unused variables.
13:36 Changeset in rtems [9c1dc8c]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-12 Joel Sherrill <joel@…> * rtems/score/mips.h (mips_get_sr, mips_set_sr): Corrected register constraints from "general" to "register".
13:34 Changeset in rtems [d9f6165]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-12 Joel Sherrill <joel@…> * src/README.mqueue: Enhanced example.
13:28 Changeset in rtems [4d6b3b6]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-12 Joel Sherrill <joel@…> * include/bsp.h, timer/timer.c: Updated so timer appears to work and support tm27. I would prefer to time a software interrupt rather than an use an extra timer though.

01/09/01:

18:50 Changeset in rtems [3e7e859]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
changed version to ss-20010109
17:28 Changeset in rtems [8b15163f]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-09 Joel Sherrill <joel@…> * Removing non-function shmsupp directory. * shmsupp/.cvsignore, shmsupp/Makefile.am, shmsupp/addrconv.c, shmsupp/getcfg.c, shmsupp/lock.c, shmsupp/mpisr.c: Removed. * configure.in, Makefile.am, wrapup/Makefile.am
17:10 Changeset in rtems [d3d5319]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-09 Joel Sherrill <joel@…> * clockdrv_shell.c (CLOCK_DRIVER_ISRS_PER_TICK): Add support for multiple ISRs per clock tick. Testing per hacking on mips/jmr3904 clock driver.
17:05 Changeset in rtems [026f4aa]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-09 Joel Sherrill <joel@…> * clock/clockdrv.c: Clean up. * include/bsp.h: Uncomment and fix set_vector() prototype.
16:48 Changeset in rtems [16ad7ea]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-09 Joel Sherrill <joel@…> * cpu_asm.S: Use SR_INTERRUPT_ENABLE_BITS instead of SR_XXX constants to make it easier to conditionalize the code for various ISA levels.
13:51 Changeset in rtems [96e34e0]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-09 Joel Sherrill <joel@…> * custom/pc386.cfg (make-exe): Removed commented out lines that were displayed in build longs.

01/08/01:

19:23 Changeset in rtems [73ee5105]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Joel Sherrill <joel@…> * wrapup/Makefile.am: Remove warning missed in shmsupp removal.
19:22 Changeset in rtems [7af5e14]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Joel Sherrill <joel@…> * Shared memory support removed since it was non-functional. * shmsupp/.cvsignore, shmsupp/Makefile.am, shmsupp/addrconv.c, shmsupp/getcfg.c, shmsupp/lock.c, shmsupp/mpisr.c: Removed. * configure.in, Makefile.am, wrapup/Makefile.am: Modified to reflect above.
19:16 Changeset in rtems [81f6e8cc]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Joel Sherrill <joel@…> * src/threadinitialize.c: Fix my bad hack of Ralf's fp_area warning removal patch. :(
18:26 Changeset in rtems [9c49db4]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Ralf Corsepius <corsepiu@…> * configure.in: Add libc/config.h * libc/Makefile.am: Add INCLUDES += -I. to pickup config.h * libc/.cvsignore: Add config.h and stamp-h * libc/*.c: Add config.h support.
18:23 Changeset in rtems [ac5c8c7]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Ralf Corsepius <corsepiu@…> * src/threadinitialize.c: Removed warning.
18:19 Changeset in rtems [5f78f5d0]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Joel Sherrill <joel@…> * start/start.S: init_exc_vecs is now called mips_install_isr_entries. * wrapup/Makefile.am: Corrected to reflect new libcpu structure.
18:18 Changeset in rtems [9b0e5b2]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Joel Sherrill <joel@…> * console/vt.c: Added include of <rtems.h> so _CPU_ISR_disable would be visible.
18:17 Changeset in rtems [82e2265e]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Joel Sherrill <joel@…> * include/bsp.h: Added closing brace for extern C.
18:16 Changeset in rtems [1800f717]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Joel Sherrill <joel@…> * idtcpu.h: Commented out definition of "wait". It was stupid to use such a common word as a macro. * rtems/score/cpu.h (_CPU_ISR_Disable): Fixed for mips ISA 3. * rtems/score/mips.h: Added include of <idtcpu.h>. * rtems/score/mips.h (mips_enable_in_interrupt_mask): Corrected.
18:14 Changeset in rtems [f8b891d]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Joel Sherrill <joel@…> * custom/p4000.cfg, custom/p4600.cfg, custom/p4650.cfg: Remove unneeded definitions when compiled for "mips" rather than "mips64orion." Correct CPU_CFLAGS.
18:12 Changeset in rtems [f692d7e0]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Joel Sherrill <joel@…> * src/rtemsInterrupt.cc: Allocated interrupt_table since since cannot be determined without CPU model information.
18:11 Changeset in rtems [b03f4f2]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-08 Joel Sherrill <joel@…> * Added r46xx directory. * Makefile.am, configure.in: Modified to reflect addition of r46xx. * shared/interrupts/installisrentries.c: Fixed typo. * r46xx/.cvsignore, r46xx/Makefile.am, r46xx/vectorisrs/.cvsignore, r46xx/vectorisrs/Makefile.am, r46xx/vectorisrs/vectorisrs.c: New files.

01/05/01:

13:40 Changeset in rtems [ec5afe0]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-05 Ralf Corsepius <corsepiu@…> * Makefile.am: Remove subshell from *.a processing in librtemsall.a rule.
13:38 Changeset in rtems [60391a2]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-05 Joel Sherrill <joel@…> * scitab/Makefile.am, startup/bspstart.c, configure.in: Removed rest of make-target-options and moved them to BSP configure options.
13:36 Changeset in rtems [e8ad374a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-05 Joel Sherrill <joel@…> * custom/gensh1.cfg: Removed rest of make-target-options and moved them to BSP configure options.
13:35 Changeset in rtems [96b2583]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-05 Joel Sherrill <joel@…> * include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect the movement of this component to libmisc. * wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
13:33 Changeset in rtems [7a0a5531]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-05 Joel Sherrill <joel@…> * console/vt.c: Added include of <rtems.h> so _CPU_ISR_disable would be visible.
13:31 Changeset in rtems [98e1de84]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-05 Joel Sherrill <joel@…> * /dev/null moved to libmisc. * Makefile.am, configure.in: Removed null directory. * include/Makefile.am: Removed null.h. * include/null.h, null/.cvsignore, null/Makefile.am, null/close.c, null/cntrl.c, null/init.c, null/open.c, null/read.c, null/write.c: Removed.
13:26 Changeset in rtems [85d03e2]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-05 Joel Sherrill <joel@…> * devnull: New addition. Moved from libcpu/sh. * devnull/devnull.c, devnull/devnull.h, devnull/.cvsignore, devnull/Makefile.am: New files. * Makefile.am, configure.in, wrapup/Makefile.am: Modified to reflect addition of above.

01/03/01:

18:47 Changeset in rtems [0589f0b]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Emmanuel Raguet <raguet@…> * bootloader/Makefile.am: Modified to install bootloader so make-exe rule can avoid writing to install point or assuming BSP build tree is available.
18:47 Changeset in rtems [4dc2e9a]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Emmanuel Raguet <raguet@…> * automake/compile.am: Add LD.
18:46 Changeset in rtems [fdfa5b9]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Emmanuel Raguet <raguet@…> * custom/mcp750.cfg (make-exe): Rewrite to avoid writing to install point or assuming BSP build tree is available.
17:53 Changeset in rtems [c2bbfb52]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * custom/psim.cfg: Removed unused variables.
17:53 Changeset in rtems [2e10f51]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * clockdrv_shell.c: Fixed syntax error in fast idle support.
17:52 Changeset in rtems [e177810d]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * clock/clock.c: Use shared clock driver shell. * console/console.c: Removed. Now use shared polling shell. * console/console-io.c: New file. * console/Makefile.am: Correct to use shared polling shell. * startup/bspstart.c: Remove all fast idle references.
17:50 Changeset in rtems [90dccce]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * console/console-io.c: Removed unused variable initialized.
16:54 Changeset in rtems [dbe4dc9]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * console/console-io.c: Added console_initialize_hardware().
16:50 Changeset in rtems [409f7d1]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * setup.def, binutils/HISTORY, gccnewlib/HISTORY: Updated binutils HISTORY to reflect new revision. Updated gcc to fix i960 C++ problem. Updated newlib to move to newlib 1.9.0.
16:47 Changeset in rtems [80cc928]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * custom/sim68000.cfg: Corrected CPU model for simcpu32 configuration. * custom/simcpu32.cfg: Removed MVME162 reference.
16:45 Changeset in rtems [5e67b98]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * new_exception_processing/cpu.h, old_exception_processing/cpu.c: old_exception_processing/cpu.h, Added _CPU_Initialize_vectors(). In particular, spurious vector initialization had to be moved on old exception processing model.
16:44 Changeset in rtems [e182c620]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * clockdrv_shell.c: Added fast idle mode which is enabled by defining CLOCK_DRIVER_USE_FAST_IDLE. * console-polled.c: Added console_initialize_hardware() hook.
16:43 Changeset in rtems [60ab53a2]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * ChangeLog?: Removed bad entry.
16:43 Changeset in rtems [1f275887]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * console/console-io.c: Added console_initialize_hardware().
16:42 Changeset in rtems [0fd4a13]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * clock/Makefile.am: Fixed reference to ckinit.c. * clock/clockdrv.c: Enabled fast idle. * console/console-io.c: Added console_initialize_hardware().
16:41 Changeset in rtems [7f9bee00]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * start/start.S: Added space for vectors on CPU32 configuration. * startup/bspstart.c: Fixed typo.
16:39 Changeset in rtems [2ecb715]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * clock: New directory with stub clock driver. * clock/.cvsignore, clock/Makefile.am, clock/clockdrv.c: New files. * Makefile.am, configure.in, wrapup/Makefile.am: Modified to reflect above.
16:37 Changeset in rtems [d6ea098]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * rtems/score/cpu.h: Added _CPU_Initialize_vectors().
16:36 Changeset in rtems [fe7acdcf]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * rtems/score/cpu.h: Added _CPU_Initialize_vectors(). * cpu_asm.S: Modify to properly dereference _ISR_Vector_table now that it is dynamically allocated.
16:35 Changeset in rtems [9fd4f5c5]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * rtems/score/cpu.h: Added _CPU_Initialize_vectors(). * cpu_asm.S: Eliminated warning for duplicate definition of EXTERN.
16:32 Changeset in rtems [ac00434]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * rtems/score/cpu.h: Added _CPU_Initialize_vectors(). * cpu_asm.S: Modify to properly dereference _ISR_Vector_table now that it is dynamically allocated.
16:31 Changeset in rtems [0dd2ee71]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * ChangeLog?: Removed duplicate entry.
16:29 Changeset in rtems [effa6593]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * rtems/score/cpu.h: Added _CPU_Initialize_vectors().
16:29 Changeset in rtems [2d877aa]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * rtems/score/cpu.h: Added _CPU_Initialize_vectors().
15:43 Changeset in rtems [9094566]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-03 Joel Sherrill <joel@…> * rtems/score/cpu.h: Added _CPU_Initialize_vectors().

01/02/01:

14:18 Changeset in rtems [75ca179]4.104.114.84.95 by Joel Sherrill <joel.sherrill@…>
2001-01-02 Joel Sherrill <joel@…> * CHANGELOG: Removed. * README: Merged CHANGELOG contents as initial changes.
Note: See TracTimeline for information about the timeline view.