Changeset 6af8512c in rtems


Ignore:
Timestamp:
11/21/01 18:34:28 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
1c3c605
Parents:
524c7414
Message:

2001-11-21 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Add @exceptions@ to SUBDIRS.
  • configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from make/custom/psim.cfg; Remove RTEMS_OUTPUT_BUILD_SUBDIRS; Add RTEMS_PPC_EXCEPTIONS([old]).
  • include/Makefile.am: include force-preinstall.am.
  • wrapup/Makefile.am: Apply @exceptions@.
Location:
c/src/lib/libbsp/powerpc/psim
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/psim/ChangeLog

    r524c7414 r6af8512c  
     12001-11-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * Makefile.am: Add @exceptions@ to SUBDIRS.
     4        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
     5        make/custom/psim.cfg;
     6        Remove RTEMS_OUTPUT_BUILD_SUBDIRS;
     7        Add RTEMS_PPC_EXCEPTIONS([old]).
     8        * include/Makefile.am: include force-preinstall.am.
     9        * wrapup/Makefile.am: Apply @exceptions@.
     10
    1112001-11-20      Joel Sherrill <joel@OARcorp.com>
    212
  • c/src/lib/libbsp/powerpc/psim/Makefile.am

    r524c7414 r6af8512c  
    88# wrapup is the one that actually builds and installs the library
    99#  from the individual .rel files built in other directories
    10 SUBDIRS = include start clock console startup shmsupp timer vectors wrapup \
     10SUBDIRS = include start clock console startup shmsupp timer vectors \
     11    @exceptions@ wrapup \
    1112    tools
    1213
  • c/src/lib/libbsp/powerpc/psim/configure.ac

    r524c7414 r6af8512c  
    2626RTEMS_CONFIG_BUILD_SUBDIRS(tools)
    2727
     28RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[0])
     29RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
     30[If defined, then the PowerPC specific code in RTEMS will use some
     31of the special purpose registers to slightly optimize interrupt
     32response time.  The use of these registers can conflict with
     33other tools like debuggers.])
     34
     35RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0xFFF00100])
     36RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
     37[This defines the base address of the exception table.
     38 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
     39
    2840AM_CONFIG_HEADER(include/bspopts.h)
    2941RTEMS_PROJECT_ROOT
     
    4052vectors/Makefile
    4153wrapup/Makefile])
     54
     55RTEMS_PPC_EXCEPTIONS([old])
     56
    4257AC_OUTPUT
    43 
    44 RTEMS_OUTPUT_BUILD_SUBDIRS(RTEMS_BUILD_SUBDIRS)
  • c/src/lib/libbsp/powerpc/psim/include/Makefile.am

    r524c7414 r6af8512c  
    1818all-local: $(TMPINSTALL_FILES)
    1919
     20include $(top_srcdir)/../../../../../../automake/force-preinstall.am
    2021include $(top_srcdir)/../../../../../../automake/local.am
  • c/src/lib/libbsp/powerpc/psim/wrapup/Makefile.am

    r524c7414 r6af8512c  
    2121# bummer; have to use $foreach since % pattern subst rules only replace 1x
    2222OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
    23     $(wildcard ../../../../libcpu/powerpc/old_exception_processing/$(ARCH)/*.rel) \
     23    ../@exceptions@/$(ARCH)/rtems-cpu.rel \
    2424    $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel)
    2525LIB = $(ARCH)/libbsp.a
Note: See TracChangeset for help on using the changeset viewer.