source: rtems/c/src/lib/libbsp/powerpc/ppcn_60x/configure.ac @ 7ebeaa1

4.104.114.84.95
Last change on this file since 7ebeaa1 was 7a97f26, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/11/03 at 10:43:44

Merger from rtems-4-6-branch.

  • Property mode set to 100644
File size: 2.6 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-ppcn_60x],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16
17RTEMS_CHECK_NETWORKING
18
19# Don't build the network directory
20# The problem is that the code there has not yet been converted to
21# bsd networking
22AM_CONDITIONAL(HAS_NETWORKING,false)
23# AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
24
25RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[0])
26RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
27[If defined, then the PowerPC specific code in RTEMS will use some
28of the special purpose registers to slightly optimize interrupt
29response time.  The use of these registers can conflict with
30other tools like debuggers.])
31
32RTEMS_BSPOPTS_SET([PPC_USE_DATA_CACHE],[*],[1])
33RTEMS_BSPOPTS_HELP([PPC_USE_DATA_CACHE],
34[If defined, then the PowerPC specific code in RTEMS will use
35 data cache instructions to optimize the context switch code.
36 This code can conflict with debuggers or emulators.  It is known
37 to break the Corelis PowerPC emulator with at least some combinations
38 of PowerPC 603e revisions and emulator versions.
39 The BSP actually contains the call that enables this.])
40
41# FIXME: This should be a 1 out of 2 (3??) selection.
42RTEMS_BSPOPTS_SET([PPCN_60X_USE_DINK],[*],[1])
43RTEMS_BSPOPTS_HELP([PPCN_60X_USE_DINK],
44[The Score603e board can be configured with 3 ROM monitors.  Only two
45 are appropriate for use with RTEMS.  Set exactly one of these to "1"
46 to indicate which ROM monitor is on the board you are using. Corresponds to
47PPCN_60X_USE_NONE])
48
49RTEMS_BSPOPTS_SET([PPCN_60X_USE_NONE],[*],[0])
50RTEMS_BSPOPTS_HELP([PPCN_60X_USE_NONE],
51[The Score603e board can be configured with 3 ROM monitors.  Only two
52 are appropriate for use with RTEMS.  Set exactly one of these to "1"
53 to indicate which ROM monitor is on the board you are using. Corresponds to
54PPCN_60X_USE_DINK])
55
56RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0x0100])
57RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
58[This defines the base address of the exception table.
59 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
60
61
62# Explicitly list all Makefiles here
63AC_CONFIG_FILES([Makefile
64clock/Makefile
65console/Makefile
66include/Makefile
67network/Makefile
68nvram/Makefile
69pci/Makefile
70start/Makefile
71startup/Makefile
72timer/Makefile
73tod/Makefile
74universe/Makefile
75vectors/Makefile
76wrapup/Makefile])
77
78RTEMS_PPC_EXCEPTIONS([old])
79
80AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.