source: rtems/c/src/lib/libbsp/powerpc/ss555/configure.ac @ cefcc5eb

4.115
Last change on this file since cefcc5eb was 8ee3775, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/02/11 at 15:01:43

2011-02-02 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Require autoconf-2.68, automake-1.11.1.
  • Property mode set to 100644
File size: 1.7 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-mbx5xx],[_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
19AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
20
21RTEMS_BSPOPTS_SET([WATCHDOG_TIMEOUT],[*],[0xFFFF])
22RTEMS_BSPOPTS_HELP([WATCHDOG_TIMEOUT],
23[Define to the desired timeout (in steps of 1/20 msec) to enable the
24 watchdog.  Default is to disable the watchdog entirely.])
25
26RTEMS_BSPOPTS_SET([UARTS_USE_TERMIOS],[*],[0])
27RTEMS_BSPOPTS_HELP([UARTS_USE_TERMIOS],
28[Define to 1 if you want termios support for every port.
29 Termios support is independent of the choice of UART I/O mode.])
30
31RTEMS_BSPOPTS_SET([CONSOLE_MINOR],[*],[SCI2_MINOR])
32RTEMS_BSPOPTS_HELP([CONSOLE_MINOR],
33[Must be defined to be one of SCI1_MINOR or SCI2_MINOR.  Determines which
34 device will be registered as /dev/console.])
35
36RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
37RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
38[Define to 1 if you want interrupt-driven I/O for the SCI ports.])
39
40RTEMS_BSPOPTS_SET([PRINTK_MINOR],[*],[SCI2_MINOR])
41RTEMS_BSPOPTS_HELP([PRINTK_MINOR],
42[Must be defined to be one of SCI1_MINOR or SCI2_MINOR.  Determines which
43 device is used for output by printk().  The printk port always uses polled
44 I/O.  Don't open the printk port from RTEMS unless also using polled I/O
45 for the SCI ports.])
46
47RTEMS_BSP_CLEANUP_OPTIONS(0, 0)
48
49# Explicitly list a Makefile here
50AC_CONFIG_FILES([Makefile])
51
52RTEMS_PPC_EXCEPTIONS
53
54AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.