summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* tools: Remove duplicate doxy-filterSebastian Huber2018-06-152-22/+0
| | | | This is a duplicate of cpukit/doxy-filter and not used.
* tools: Remove packhexSebastian Huber2018-06-1511-623/+0
| | | | | | | | | | | | All tools should be removed from the RTEMS source repository at some point in time. Tools with a BSD-style license will be moved to the RTEMS tools repository. Unfortunately, this tool has no license information. Remove all uses of this tool from the code base. Users of HEX files should consider to use ELF instead. Close #3379.
* tools: Remove rtems-testsuite-autostuffSebastian Huber2018-06-151-49/+0
| | | | | | It is not used. Close #3447.
* tools: Remove cvsignore-add.shSebastian Huber2018-06-152-26/+1
| | | | | | This script is obsolete since moving to Git. Close #3446.
* tools: Remove multigenSebastian Huber2018-06-152-172/+1
| | | | | | This script is unused and out dated. Close #3445.
* tools: Remove unhexSebastian Huber2018-06-153-779/+1
| | | | | | | | This program has no license information and is unused in the RTEMS build. Users of HEX files should consider to use ELF instead. Remove it. Close #3378.
* tools: Remove eolstripSebastian Huber2018-06-152-372/+1
| | | | | | | | | | | This program has no license information and is unused in the RTEMS build. General usability is questionable, for example a sed -i 's/[[:space:]]*$//' file performs a similar task. Remove it. Close #3377.
* tools: Remove cklengthSebastian Huber2018-06-152-371/+1
| | | | | | | | | | | This program has no license information and is unused in the RTEMS build. General usability is questionable, for example a awk 'length($0) > 80' < file performs a similar task. Remove it. Close #3376.
* tools: Remove rtems-bin2cSebastian Huber2018-06-146-336/+5
| | | | | | This tool is now included in the RTEMS tools repository. Close #3380.
* tools: Remove size_rtemsSebastian Huber2018-06-146-342/+0
| | | | | | | This script is horribly out of date. A new version could be placed in RTEMS tools if necessary. Close #3451.
* tools: Remove nios2genSebastian Huber2018-06-1420-2966/+0
| | | | | | | | | | | | All tools should be removed from the RTEMS source repository at some point in time. Tools with a BSD-style license will be moved to the RTEMS tools repository. Unfortunately, the this tool is RTEMS GPL licensed. If users of this tool still exist, they can reimplement the functionality using a BSD-style license and add it to the RTEMS tools. Close #3444.
* tools: Remove shgenSebastian Huber2018-06-1119-738/+87
| | | | | | | | | | | | All tools should be removed from the RTEMS source repository at some point in time. Tools with a BSD-style license will be moved to the RTEMS tools repository. Unfortunately, the shgen tool is GPL licensed. Remove all uses of this tool from the code base. Replace generated files with stub functions. If users of this BSP still exist, they can reimplement the functionality using a BSD-style license. Close #3443.
* build: Force warningsSebastian Huber2018-06-111-1/+1
| | | | Always append some standard warning flags.
* powerpc: Fix ss555 buildSebastian Huber2018-06-074-10/+12
| | | | | | | The mpc555 define is provided via <bspopts.h>. It must not be used in cpukit header files. Update #3425.
* bsps/powerpc: Hack to fix the buildSebastian Huber2018-06-071-12/+18
| | | | | | | | | The ppc405 define must be checked before the ppc403 define. The ppc405 define is provided by <bspopts.h>. The ppc403 define is provided by GCC as a built-in define if no ppc* or mpc* define is set via the command line (see GCC sources "gcc/config/rs6000/rtems.h"). Update #3425.
* Add RTEMS_FATAL_SOURCE_INVALID_HEAP_FREESebastian Huber2018-06-0511-17/+88
| | | | | | | | An invalid heap usage such as a double free is usually a fatal error since this indicates a use after free. Replace the use of printk() in free() with a fatal error. Update #3437.
* Update rtems_fatal_source_text()Sebastian Huber2018-06-053-4/+6
| | | | | | Add RTEMS_FATAL_SOURCE_PANIC to rtems_fatal_source_text(). Update #3244.
* bsps: Avoid malloc() in generic IRQ supportSebastian Huber2018-06-051-2/+3
| | | | | Use rtems_heap_allocate_aligned_with_boundary() instead of malloc() to avoid a dependency on errno.
* score: Simplify _Objects_Name_to_string()Sebastian Huber2018-06-051-2/+12
| | | | | Do not use isprint() from <ctype.h> since it depends on the heavy weight C locale implementation in Newlib.
* rtems: Move _Status_Object_name_errors_to_statusSebastian Huber2018-06-053-50/+67
| | | | | | Move _Status_Object_name_errors_to_status to a separate file to avoid a dependency on errno. Dependencies to errno are hard to be removed by the linker garbage collection.
* capture: Use unlimited objectsSebastian Huber2018-06-041-3/+2
| | | | Avoid resource allocation problems with unlimited objects.
* Fix and extend error message in posix timer testMartin Erik Werner2018-05-301-2/+12
| | | | | | | | | | _Timespec_Equal_to() does not set errno, hence avoid using perror(), instead use fprintf() to stderr, and extend the error message to provide information about what the error is (measured timer value after re-arming is not equal to the configured interval), and how large of a difference was measured. Signed-off-by: Martin Erik Werner <martin.werner@aacmicrotec.com>
* bsp/atsam: Remove side effect from gmac functions.Christian Mauderer2018-05-301-0/+38
| | | | | | | | | Quite a number of GMAC_... functions had a side effect of enabling the transmit and receive. During the initialization of the ethernet driver, that lead to the situation that the receive has been already enabled while the DMA isn't set up correctly. Therefore the DMA interpreted the values at address 0 as an DMA descriptor. When a packet is received during that time, the behaviour is quite undefined.
* build: Really fix RTEMS_ENABLE_RTEMSBSP()Sebastian Huber2018-05-281-2/+2
| | | | | | | | | | The d542af2e4304b663461330a60313fb6c4fdbf4db commit was a bad one. The riscv32 and riscv64 targets share a riscv source directory. The potential future powerpcspe and powerpc targets need this change as well. For example ${target_arch} is "riscv32" and ${cfg_arch} is "riscv".
* sptests: Remove CONFIGURE_MILLISECONDS_PER_TICKSebastian Huber2018-05-282-4/+0
| | | | This configuration define is not supported.
* config: Hide CONFIGURE_SCHEDULER_COUNTSebastian Huber2018-05-281-5/+5
| | | | | Rename CONFIGURE_SCHEDULER_COUNT to _CONFIGURE_SCHEDULER_COUNT to emphasise that this is not a user configuration option.
* config: Hide CONFIGURE_INITIAL_EXTENSION_TABLESebastian Huber2018-05-281-3/+3
| | | | | | Rename CONFIGURE_INITIAL_EXTENSION_TABLE to _CONFIGURE_INITIAL_EXTENSION_TABLE to emphasise that this is not a user configuration option.
* build: Fix typo in RTEMS_ENABLE_RTEMSBSP()Sebastian Huber2018-05-281-1/+1
|
* gumstix: Remove CONFIGURE_INTERRUPT_STACK_MEMORYSebastian Huber2018-05-251-3/+0
| | | | | This define is not supported by confdefs.h. In addition, on ARM the interrupt stack size is defined by the linker command file.
* bsp/atsam: Reserve one region for applications.Christian Mauderer2018-05-251-0/+4
| | | | | | This allows a user to overwrite some MPU settings. That can for example be usefull for devices with special requirements that are connected to the external bus interface.
* dltests-broken-on-this-bsp.tcfg: Add dl06Joel Sherrill2018-05-211-0/+1
|
* virtex5: Move -Dxxx to configure.acJoel Sherrill2018-05-182-1/+3
| | | | Updates #3425.
* virtex4: Move -Dxxx to configure.acJoel Sherrill2018-05-182-1/+3
| | | | Updates #3425.
* virtex: Move -Dxxx to configure.acJoel Sherrill2018-05-182-1/+3
| | | | Updates #3425.
* tqm8xx: Move -Dxxx to configure.acJoel Sherrill2018-05-182-2/+2
| | | | Updates #3425.
* t32mppc: Move -Dxxx to configure.acJoel Sherrill2018-05-182-3/+2
| | | | Updates #3425.
* ss555: Move -Dxxx to configure.acJoel Sherrill2018-05-182-2/+3
| | | | Updates #3425.
* qoriq: Move -Dxxx to configure.acJoel Sherrill2018-05-184-7/+4
| | | | Updates #3425.
* qemuppc: Move -Dxxx to configure.acJoel Sherrill2018-05-182-1/+2
| | | | Updates #3425.
* psim: Move -Dxxx to configure.acJoel Sherrill2018-05-182-1/+3
| | | | Updates #3425.
* mvme5500: Move -Dxxx to configure.acJoel Sherrill2018-05-182-1/+3
| | | | Updates #3425.
* mvme3100: Move -Dxxx to configure.acJoel Sherrill2018-05-182-1/+3
| | | | Updates #3425.
* mpc8260ads: Move -Dxxx to configure.acJoel Sherrill2018-05-182-2/+2
| | | | Updates #3425.
* mpc55xxevb: Move -Dxxx to configure.acJoel Sherrill2018-05-182-1/+3
| | | | Updates #3425.
* motorola_powerpc: Move -Dxxx to configure.acJoel Sherrill2018-05-186-7/+21
| | | | Updates #3425.
* haleakala: Move -Dxxx to configure.acJoel Sherrill2018-05-182-1/+3
| | | | Updates #3425.
* beatnik: Move -Dxxx to configure.acJoel Sherrill2018-05-182-1/+3
| | | | Updates #3425.
* bsp/powerpc: Remove wildcards in linkcmds.baseSebastian Huber2018-05-181-3/+3
| | | | | | | | | | | | This reverts commit 40c623a883da5dd80e4599cf4cd14097834706bd. The use of postfix wildcards, e.g. of the form "*.x" is dangerous since it circumvents the standard matching rules for sections. Unknown input sections should be added explicitly to the desired output section via "x.*" wildcards. Update #3307.
* libtests/block05: Use rtems_blkdev_create()Sebastian Huber2018-05-181-22/+25
| | | | Update #3358.
* libchip: Use rtems_blkdev_create()Sebastian Huber2018-05-181-43/+15
| | | | Update #3358.