source: rtems/c/src/lib/libbsp/sparc/leon3/configure.ac @ 62694fd

4.115
Last change on this file since 62694fd was 62694fd, checked in by Daniel Hellstrom <daniel@…>, on 04/19/12 at 13:46:10

LEON3: add console interrupt mode support

The comment in configure.ac is probably inherited from the LEON2
BSP. The LEON3 console driver implements a "flush" mechanism on
console_close() in order to solve the problem described with
sis/LEON2.

Signed-off-by: Daniel Hellstrom <daniel@…>

  • Property mode set to 100644
File size: 1.4 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-sparc-leon3],[_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_CHECK_NETWORKING
19RTEMS_CHECK_SMP
20
21AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
22AM_CONDITIONAL(HAS_SMP,[test "$rtems_cv_HAS_SMP" = "yes"])
23
24## bsp-specific options
25RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0])
26RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS],
27[The leon3 console driver can operate in either polled or interrupt mode.
28Under the simulator (especially when FAST_UART is defined), polled seems to operate
29better.])
30
31RTEMS_BSPOPTS_SET([SIMSPARC_FAST_IDLE],[*],[])
32RTEMS_BSPOPTS_HELP([SIMSPARC_FAST_IDLE],
33[If defined, speed up the clock ticks while the idle task is running so
34 time spent in the idle task is minimized.  This significantly reduces
35 the wall time required to execute the RTEMS test suites.])
36
37RTEMS_BSPOPTS_SET([BSP_LEON3_SMP],[*],[1])
38RTEMS_BSPOPTS_HELP([BSP_LEON3_SMP],
39[Always defined when on a LEON3 to enable the LEON3 support for
40 determining the CPU core number in an SMP configuration.])
41
42RTEMS_BSP_CLEANUP_OPTIONS(0, 0)
43
44# Explicitly list all Makefiles here
45AC_CONFIG_FILES([Makefile])
46AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.