source: rtems/c/src/lib/libbsp/powerpc/score603e/configure.ac @ 353be08

4.115
Last change on this file since 353be08 was 353be08, checked in by Sebastian Huber <sebastian.huber@…>, on 06/07/11 at 13:28:01

2011-06-07 Sebastian Huber <sebastian.huber@…>

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