source: rtems/c/src/lib/libbsp/powerpc/score603e/configure.ac @ 0f77281

4.115
Last change on this file since 0f77281 was 0f77281, checked in by Ralf Corsépius <ralf.corsepius@…>, on 07/19/12 at 13:44:32

Require autoconf-2.69.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-lib-libbsp-powerpc-ep1a],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
5AC_CONFIG_SRCDIR([bsp_specs])
6RTEMS_TOP(../../../../../..)
7
8RTEMS_CANONICAL_TARGET_CPU
9AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.11.1])
10RTEMS_BSP_CONFIGURE
11
12RTEMS_PROG_CC_FOR_TARGET
13RTEMS_CANONICALIZE_TOOLS
14RTEMS_PROG_CCAS
15
16RTEMS_BSPOPTS_SET_DATA_CACHE_ENABLED([*],[])
17RTEMS_BSPOPTS_HELP_DATA_CACHE_ENABLED
18
19RTEMS_BSPOPTS_SET_INSTRUCTION_CACHE_ENABLED([*],[])
20RTEMS_BSPOPTS_HELP_INSTRUCTION_CACHE_ENABLED
21
22## FIXME: This should be a 1 out of 3 selection
23## and is somehow coupled to USE_DINK (cf. include/gen2.h)
24RTEMS_BSPOPTS_SET([SCORE603E_USE_SDS],[*],[0])
25RTEMS_BSPOPTS_HELP([SCORE603E_USE_SDS],
26[use SDS ROM monitor])
27
28RTEMS_BSPOPTS_SET([SCORE603E_OPEN_FIRMWARE],[*],[0])
29RTEMS_BSPOPTS_HELP([SCORE603E_OPEN_FIRMWARE],
30[use Open Firmware ROM monitor])
31
32RTEMS_BSPOPTS_SET([SCORE603E_USE_NONE],[*],[0])
33RTEMS_BSPOPTS_HELP([SCORE603E_USE_NONE],
34[use no ROM monitor])
35
36RTEMS_BSPOPTS_SET([SCORE603E_USE_DINK],[*],[1])
37RTEMS_BSPOPTS_HELP([SCORE603E_USE_DINK],
38[FIXME: Missing explanation.])
39
40RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0])
41RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS],
42[whether using console interrupts])
43
44RTEMS_BSPOPTS_SET([HAS_PMC_PSC8],[*],[1])
45RTEMS_BSPOPTS_HELP([HAS_PMC_PSC8],
46[whether has a PSC8 PMC board attached to PMC slot])
47
48RTEMS_BSPOPTS_SET([INITIALIZE_COM_PORTS],[*],[0])
49RTEMS_BSPOPTS_HELP([INITIALIZE_COM_PORTS],
50[FIXME: Missing explanation])
51
52RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[0])
53RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
54[If defined, then the PowerPC specific code in RTEMS will use some
55of the special purpose registers to slightly optimize interrupt
56response time.  The use of these registers can conflict with
57other tools like debuggers.])
58
59RTEMS_BSPOPTS_SET([CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK], [*], [1])
60RTEMS_BSPOPTS_HELP([CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK],
61[If defined then the BSP may reduce the available memory size
62initially. This can be useful for debugging (reduce the core
63size) or dynamic loading (std gcc text offsets/jumps are < +/-32M).
64Note that the policy can still be defined by the application
65(see sbrk.c, BSP_sbrk_policy). By undefining
66CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK this feature is removed
67and a little memory is saved.])
68
69RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0x0100])
70RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
71[This defines the base address of the exception table.
72 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
73
74RTEMS_CHECK_NETWORKING
75AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
76
77RTEMS_BSP_CLEANUP_OPTIONS(0, 0)
78
79# Explicitly list all Makefiles here
80AC_CONFIG_FILES([Makefile])
81
82RTEMS_PPC_EXCEPTIONS
83
84AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.