source: rtems/c/src/lib/libbsp/powerpc/score603e/configure.ac @ 9b5c258

4.104.114.84.95
Last change on this file since 9b5c258 was 9b5c258, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/11/03 at 11:11:33

2003-02-11 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_PREREQ(2.57).
  • 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-score603e],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9AC_CONFIG_AUX_DIR(../../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12AM_INIT_AUTOMAKE([no-define foreign 1.6])
13RTEMS_BSP_CONFIGURE
14
15RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
16RTEMS_CANONICALIZE_TOOLS
17
18
19RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0])
20RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS],
21[whether using console interrupts])
22
23RTEMS_BSPOPTS_SET([INITIALIZE_COM_PORTS],[*],[1])
24RTEMS_BSPOPTS_HELP([INITIALIZE_COM_PORTS],
25[FIXME: Missing explanation])
26
27RTEMS_BSPOPTS_SET([HAS_PMC_PSC8],[*],[0])
28RTEMS_BSPOPTS_HELP([HAS_PMC_PSC8],
29[FIXME: Missing explanation])
30
31## FIXME: This should be a 1 out of 3 selection
32## and is somehow coupled to USE_DINK (cf. include/gen2.h)
33RTEMS_BSPOPTS_SET([SCORE603E_USE_SDS],[*],[0])
34RTEMS_BSPOPTS_HELP([SCORE603E_USE_SDS],
35[use SDS ROM monitor])
36
37RTEMS_BSPOPTS_SET([SCORE603E_OPEN_FIRMWARE],[*],[0])
38RTEMS_BSPOPTS_HELP([SCORE603E_OPEN_FIRMWARE],
39[use Open Firmware ROM monitor])
40
41RTEMS_BSPOPTS_SET([SCORE603E_USE_NONE],[*],[0])
42RTEMS_BSPOPTS_HELP([SCORE603E_USE_NONE],
43[use no ROM monitor])
44
45RTEMS_BSPOPTS_SET([SCORE603E_USE_DINK],[*],[1])
46RTEMS_BSPOPTS_HELP([SCORE603E_USE_DINK],
47[FIXME: Missing explanation.])
48
49RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[0])
50RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
51[If defined, then the PowerPC specific code in RTEMS will use some
52of the special purpose registers to slightly optimize interrupt
53response time.  The use of these registers can conflict with
54other tools like debuggers.])
55
56RTEMS_BSPOPTS_SET([PPC_USE_DATA_CACHE],[*],[0])
57RTEMS_BSPOPTS_HELP([PPC_USE_DATA_CACHE],
58[If defined, then the PowerPC specific code in RTEMS will use
59 data cache instructions to optimize the context switch code.
60 This code can conflict with debuggers or emulators.  It is known
61 to break the Corelis PowerPC emulator with at least some combinations
62 of PowerPC 603e revisions and emulator versions.
63 The BSP actually contains the call that enables this.])
64
65RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0x0100])
66RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
67[This defines the base address of the exception table.
68 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
69
70
71
72# Explicitly list all Makefiles here
73AC_CONFIG_FILES([Makefile
74PCI_bus/Makefile
75clock/Makefile
76console/Makefile
77include/Makefile
78start/Makefile
79startup/Makefile
80timer/Makefile
81tod/Makefile
82vectors/Makefile
83wrapup/Makefile])
84
85RTEMS_PPC_EXCEPTIONS([old])
86
87AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.