summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add new files for exception handlerThomas Doerfler2009-10-239-0/+1232
|
* Fix broken formating.Ralf Corsepius2009-10-231-1/+2
|
* 2009-10-23 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-231-0/+5
| | | | | * console/console.c: Include <rtems/error.h>. * spi/spi.c: Remove m8xx_spi_softc_ptr (Unused).
* Remove m8xx_spi_softc_ptr (Unused).Ralf Corsepius2009-10-231-1/+1
|
* Include <rtems/error.h>.Ralf Corsepius2009-10-231-1/+1
|
* Update for exception support changes.Thomas Doerfler2009-10-23103-1580/+1601
|
* 2009-10-23 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-233-1/+7
| | | | | * irq/irq.h: Add BSP_irq_enabled_at_cpm. * network/network.c: Remove local decl of BSP_irq_enabled_at_cpm.
* 2009-10-23 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-236-12/+34
| | | | | | | * irq/BSP_irq.c, network/if_100MHz/GT64260eth.c, network/if_1GHz/if_wm.c, network/if_1GHz/pci_map.c, startup/bspstart.c: Add missing prototypes. Adjust bogus types. Remove unused vars.
* 2009-10-23 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-232-1/+6
| | | | * automake/compile.am: Add *.ralf to clean-local.
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-222-2/+20
| | | | * score/cpu/Makefile.am: Update DIST_SUBDIRS.
* 2009-10-22 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2009-10-222-2/+5
| | | | | * Makefile.am: Build file IO related tests even with POSIX threading is disabled.
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-222-2/+5
| | | | | * new-exceptions/bspsupport/vectors_init.c: Remove duplicate defines DEAR_BOOKE, DEAR_405.
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-222-1/+6
| | | | | * libblock/include/rtems/flashdisk.h: Use UINT32_C consts to avoid implicit int-cast overflows in RTEMS_FDISK_KBYTES.
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-222-4/+8
| | | | * libchip/ide/ata.h: Move extern "C".
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-221-0/+5
| | | | | * clock/clock-config.c, misc/dma.c, network/network.c, rtc/rtc-config.c, ssp/ssp.c: Remove unused vars.
* Remove unused vars.Ralf Corsepius2009-10-225-9/+0
|
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-222-0/+13
| | | | | | * libcsupport/include/rtems/error.h: Use ordinal constants for RTEMS_ERROR_ERRNO, RTEMS_ERROR_PANIC, RTEMS_ERROR_ABORT to avoid implicit constant conversion overflows on 16bit-int targets.
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-221-0/+8
| | | | | | | | * libchip/i2c/spi-flash-m25p40.c, libchip/i2c/spi-fram-fm25l256.c: Use hex-constants to avoid implicit int-casts. * libchip/i2c/spi-memdrv.c: Use hex-constants to avoid implicit int-casts. Use rtems_off64_t offsets to avoid loosing precision.
* Use hex-constants to avoid implicit int-casts.Ralf Corsepius2009-10-221-4/+4
| | | | Use rtems_off64_t offsets to avoid loosing precision.
* Use hex-constants to avoid implicit int-casts.Ralf Corsepius2009-10-222-8/+8
|
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-221-0/+9
| | | | | | | | | * libmisc/uuid/uuid_time.c: Add cast to uint32_t to allow 16bit shift on 16bit-int targets. * libmisc/uuid/gen_uuid.c: Add HAVE_CONFIG_H guard. Include <limits.h>. Shift pid_t's by (sizeof(pid_t)*CHAR_BIT)>>1 instead of hard-coded 16 to permit building on non 16bit-int targets.
* Add HAVE_CONFIG_H guard.Ralf Corsepius2009-10-221-1/+4
| | | | | | Include <limits.h>. Shift pid_t's by (sizeof(pid_t)*CHAR_BIT)>>1 instead of hard-coded 16 to permit building on non 16bit-int targets.
* Add cast to uint32_t to allow 16bit shift on 16bit-int targets.Ralf Corsepius2009-10-221-1/+1
|
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-221-0/+7
| | | | | | | * libmisc/shell/extern-ls.h: Remove DAYSPERNYEAR, SECSPERDAY. * libmisc/shell/print-ls.c: Add DAYSPERNYEAR, SECSPERDAY. Add casts to time_t on constants in DAYSPERNYEAR, SECSPERDAY for 16bit-int targets.
* Add DAYSPERNYEAR, SECSPERDAY.Ralf Corsepius2009-10-221-0/+4
| | | | Add casts to time_t on constants in DAYSPERNYEAR, SECSPERDAY for 16bit-int targets.
* Remove DAYSPERNYEAR, SECSPERDAY.Ralf Corsepius2009-10-221-3/+0
|
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-221-0/+5
| | | | | * libmisc/shell/dd-args.c: Use uint_least32_t instead of u_int, force 32bit constants to make code functional on 16bit-int targets.
* Use uint_least32_t instead of u_int, force 32bit constants to make code ↵Ralf Corsepius2009-10-221-10/+10
| | | | functional on 16bit-int targets.
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-223-4/+10
| | | | | | * clock/clock.c: Add missing prototypes. Remove argument from clockOff(). * tod/pcf8563.c: Add missing const.
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-222-1/+5
| | | | * configure.ac: Remove -fasm.
* 2009-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-222-3/+7
| | | | * mpc6xx/mmu/bat.c: Add missing prototypes.
* Spacing.Joel Sherrill2009-10-211-4/+2
|
* 2009-10-21 Till Straumann <strauman@slac.stanford.edu>Till Straumann2009-10-212-2/+10
| | | | | | | | * sapi/include/rtems/config.h: Fixed typos (wrong case) in macro expansion for rtems_configuration_get_device_driver_table() and rtems_configuration_get_user_extension_table()
* add missing changeThomas Doerfler2009-10-212-4/+16
|
* various maintenance changesThomas Doerfler2009-10-213-0/+999
|
* removed erronously added spi.c and spi.hThomas Doerfler2009-10-212-993/+0
|
* add missing fileThomas Doerfler2009-10-212-0/+993
|
* interrupt handler type changeThomas Doerfler2009-10-2132-247/+159
|
* * rtems/powerpc/registers.h: Added defines DEAR_BOOKE and DEAR_405.Thomas Doerfler2009-10-214-16/+21
| | | | | | | | * rtems/score/cpu.h: Changed fpscr field to an integer type in Context_Control_fp. Fixed warnings in PPC_Set_timebase_register(). Changed _CPU_Context_Initialize_fp() to initialize all fields and avoid floating-point instructions. * rtems/score/powerpc.h: Removed PPC_INIT_FPSCR define.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-213-6/+5
| | | | | * make/custom/c3xsim.cfg: Remove RTEMS_BSP_FAMILY. * make/custom/c4xsim.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-3/+4
| | | | * make/custom/leon3.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-2/+4
| | | | * make/custom/leon2.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-3/+4
| | | | * make/custom/erc32.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-215-4/+7
| | | | | | | * make/custom/simsh1.cfg: Remove RTEMS_BSP_FAMILY. * make/custom/simsh2.cfg: Remove RTEMS_BSP_FAMILY. * make/custom/simsh2e.cfg: Remove RTEMS_BSP_FAMILY. * make/custom/simsh4.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-4/+4
| | | | * make/custom/gensh4.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-4/+4
| | | | * make/custom/gensh2.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-4/+4
| | | | * make/custom/gensh1.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-3/+4
| | | | * make/custom/virtex.cfg: Remove RTEMS_BSP_FAMILY.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-3/+4
| | | | * make/custom/tqm8xx.inc: Remove RTEMS_BSP_FAMILY.
* 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2009-10-212-3/+4
| | | | * make/custom/ss555.cfg: Remove RTEMS_BSP_FAMILY.