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

5
Last change on this file since a0663b2 was a0663b2, checked in by Joel Sherrill <joel@…>, on 11/21/17 at 19:27:31

libbsp/*/*/configure.ac: Remove references to bsp_specs in AC_CONFIG_SRCDIR

Updates #3250.

  • Property mode set to 100644
File size: 1.7 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-mbx5xx],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5AC_CONFIG_SRCDIR([make/custom/ss555.cfg])
6RTEMS_TOP(../../../../../..)
7
8RTEMS_CANONICAL_TARGET_CPU
9AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
10RTEMS_BSP_CONFIGURE
11
12RTEMS_PROG_CC_FOR_TARGET
13RTEMS_CANONICALIZE_TOOLS
14RTEMS_PROG_CCAS
15
16RTEMS_CHECK_NETWORKING
17AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
18
19RTEMS_BSPOPTS_SET([WATCHDOG_TIMEOUT],[*],[0xFFFF])
20RTEMS_BSPOPTS_HELP([WATCHDOG_TIMEOUT],
21[Define to the desired timeout (in steps of 1/20 msec) to enable the
22 watchdog.  Default is to disable the watchdog entirely.])
23
24RTEMS_BSPOPTS_SET([UARTS_USE_TERMIOS],[*],[0])
25RTEMS_BSPOPTS_HELP([UARTS_USE_TERMIOS],
26[Define to 1 if you want termios support for every port.
27 Termios support is independent of the choice of UART I/O mode.])
28
29RTEMS_BSPOPTS_SET([CONSOLE_MINOR],[*],[SCI2_MINOR])
30RTEMS_BSPOPTS_HELP([CONSOLE_MINOR],
31[Must be defined to be one of SCI1_MINOR or SCI2_MINOR.  Determines which
32 device will be registered as /dev/console.])
33
34RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
35RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
36[Define to 1 if you want interrupt-driven I/O for the SCI ports.])
37
38RTEMS_BSPOPTS_SET([PRINTK_MINOR],[*],[SCI2_MINOR])
39RTEMS_BSPOPTS_HELP([PRINTK_MINOR],
40[Must be defined to be one of SCI1_MINOR or SCI2_MINOR.  Determines which
41 device is used for output by printk().  The printk port always uses polled
42 I/O.  Don't open the printk port from RTEMS unless also using polled I/O
43 for the SCI ports.])
44
45RTEMS_BSP_CLEANUP_OPTIONS
46
47# Explicitly list a Makefile here
48AC_CONFIG_FILES([Makefile])
49
50RTEMS_PPC_EXCEPTIONS
51
52AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.