summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Removed generated file.Joel Sherrill1999-10-261-1101/+0
|
* New versions for gcc and patch.Joel Sherrill1999-10-261-2/+2
|
* Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to moveJoel Sherrill1999-10-268-12/+11
| | | | c/src/lib/libmisc to c/src/libmisc.
* cat /tmp/j | while read fJoel Sherrill1999-10-2642-5982/+0
| | | | | | do rpm -qi $f 2>&1 | grep -v "is not ins" done
* Patch rtems-rc-19991011-0.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1999-10-262-6/+5
| | | | fixes a minor configuration bug.
* RegeneratedJoel Sherrill1999-10-266-27/+34
|
* New ideas on test incorporated.Joel Sherrill1999-10-261-9/+17
|
* Modifications from Erik Ivanenko <erik.ivanenko@utoronto.ca> to addJoel Sherrill1999-10-262-5/+17
| | | | | proper Multiboot signature to pc386 BSP. This enables Grub to recognize the image.
* Patch from Erik Ivanenko <erik.ivanenko@utoronto.ca> to fix someJoel Sherrill1999-10-261-28/+68
| | | | reported bugs in the start code.
* Fixed line too long problems.Joel Sherrill1999-10-253-14/+22
|
* Updated copyright year and corrected image path.Joel Sherrill1999-10-251-4/+4
|
* Updated copyright year.Joel Sherrill1999-10-252-2/+3
|
* Patch generated from scripts-19991025-0.tar.gz fromJoel Sherrill1999-10-2510-74/+143
| | | | | | | | | | | | | | | | Ralf Corsepius <corsepiu@faw.uni-ulm.de>: Most significant changes: * Names for rpms changed again * gccnewlib.rpm split into 3 rpms, one for chill, gcj, gcc (includes c/c++/f77/objc), simultaneously built from a common *.spec. * small patches with major impact to gcc and newlib (Those fixes mentioned to Ian, ie. libobjc/libchill are built, multilibing works) * gcc patch against gcc-2.95.2 (Should also apply to gcc-2.95.1 without major problems) * Buildroot removed from */*spec.in * New: rpm Group: "rtems" (rpm -q -g rtems reports all RTEMS packages)
* Regnenerated following update from Ralf.Joel Sherrill1999-10-256-27/+34
|
* Fixing many lines that are too long to format cleanly.Joel Sherrill1999-10-255-33/+56
|
* Added descriptions of the mount table entry elements.Jennifer Averett1999-10-251-0/+97
|
* Modified url references to be dynamic links.Charles Phillips1999-10-251-1/+1
|
* Added definition of DDD. Modified url references to beCharles Phillips1999-10-251-3/+3
| | | | dynamic links.
* + Filled in information on IMFS_freenod and IMFS_freenodinfoJennifer Averett1999-10-251-13/+58
| | | | + Filled in information on the imfs_fsunmount and imfs_unmount methods.
* + Cleaned up lines that were too long.Jennifer Averett1999-10-251-129/+19
| | | | | + Removed subheading File - This is not valid for the callback descriptions. + Filled in information on freenod
* Fixing many lines that are too long to format cleanly.Joel Sherrill1999-10-259-50/+54
|
* Added information on how the directory is stored for future referanceJennifer Averett1999-10-251-2/+3
| | | | during a mount.
* Formatting improvements.Joel Sherrill1999-10-253-12/+80
|
* Enabled Ada95 interrupt support chapter and reformatted aJoel Sherrill1999-10-256-35/+48
| | | | bunch of stuff to avoid line wrappings.
* Patch from Eric Norum <eric@cls.usask.ca> to address the following problemJoel Sherrill1999-10-253-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | report from Philip A. Prindeville <philipp@zembu.com>: I was working on a device driver for a certain ethernet chipset that occassionally wraps in its buffer, and causes a resulting mbuf chain with only a few dozen bytes in the first mbuf of the chain. I wouldn't have thought this would be a problem, until I ran some stress tests that flooded the ethernet receiver with packets and started to get panics here: 250 251 if (m->m_pkthdr.len < sizeof(struct ip)) 252 goto tooshort; 253 254 #ifdef DIAGNOSTIC 255 if (m->m_len < sizeof(struct ip)) 256 panic("ipintr mbuf too short"); 257 #endif 258 259 if (m->m_len < sizeof (struct ip) && 260 (m = m_pullup(m, sizeof (struct ip))) == 0) { 261 ipstat.ips_toosmall++; 262 return; 263 } 264 ip = mtod(m, struct ip *); and the panic was at line 256. But if I #undef'd DIAGNOSTICS, then the m_pullup() at line 260 does the right thing and the packet ends up being processed just fine. So I started wondering, (a) why was the test checking for something that apparently wasn't a fatal condition but rather one that is subsequently recovered from a couple of lines later and (b) why panic as a diagnostic "aid" from a recoverable condition rather than just (say) log a message to the console? All of this seems overly severe for no reason that is readily apparent to me.
* Patch from Charles-Antoine Gauthier <charles.gauthier@iit.nrc.ca>Joel Sherrill1999-10-252-0/+16
| | | | | to initialize the pthread cancellation fields. This is a patch to _POSIX_Threads_Create_extension that fixes the problem.
* Added notes for new test.Joel Sherrill1999-10-251-0/+19
|
* Made html links browsable.Charles Phillips1999-10-251-4/+3
|
* tch from Eric Valette <valette@crf.canon.fr> and Emmanuel RaguetJoel Sherrill1999-10-253-73/+73
| | | | | <raguet@crf.canon.fr> to fix bugs and make the mcp750 boot RTEMS running the GoAhead web server.
* Made urls browsable links.Charles Phillips1999-10-251-3/+3
|
* Made html urls browsable links.Charles Phillips1999-10-251-1/+1
|
* Made html urls browable links. Updated the reference to theCharles Phillips1999-10-251-6/+48
| | | | | U.S. Army Missile Command to show the merger with the Aviation Command
* Patch from Eric Valette <valette@crf.canon.fr> and Emmanuel RaguetJoel Sherrill1999-10-254-28/+32
| | | | <raguet@crf.canon.fr> to use a local variable.
* Added code to correctly free any allocated space during the evaluationJennifer Averett1999-10-256-216/+222
| | | | process.
* Merged scripts-19991022-0 changes from Ralf.Joel Sherrill1999-10-2510-122/+82
|
* Changed to use interrupt driven console.Joel Sherrill1999-10-251-1/+1
|
* Added sp26 which tests the rtems_task_is_suspended directive.Joel Sherrill1999-10-2514-2/+582
|
* Modified to ease comparison of screen to target output.Joel Sherrill1999-10-258-2184/+2184
|
* Modified to reflect test change where reinitialize mutex test case wasJoel Sherrill1999-10-252-2/+2
| | | | removed.
* Removed reinitialize mutex test case to reflect earlier code change inJoel Sherrill1999-10-252-2/+16
| | | | the executive.
* Changed leading spaces to periods to ease comparing test output.Joel Sherrill1999-10-254-4/+4
|
* Modified to produce correct output with new version of sis.Joel Sherrill1999-10-251-1/+6
|
* Swapped SO_SNDWAKEUP and SO_RCVWAKEUP in many places since they wereJoel Sherrill1999-10-251-11/+10
| | | | backwards.
* Changed version number.Joel Sherrill1999-10-251-1/+1
|
* Removed warning.Joel Sherrill1999-10-212-0/+4
|
* Now builds RPM without complete source. Each target is only 15K.Joel Sherrill1999-10-216-9/+59
|
* Made the RTEMS version get substituted properly even though it isJoel Sherrill1999-10-2114-9/+27
| | | | | | not right yet. Now can specify rpm_build_root via setup.
* Now can specify rpm_build_root via setup.Joel Sherrill1999-10-211-2/+2
| | | | Changed package name so generated RPM would have a nicer name.
* Increased stack size of initialization thread.Joel Sherrill1999-10-212-0/+4
|
* Added rtems_semaphore_flush directive.Joel Sherrill1999-10-215-1/+209
|