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

4.104.114.84.95
Last change on this file since a800d09c was a800d09c, checked in by Joel Sherrill <joel.sherrill@…>, on 04/12/04 at 21:52:13

2004-04-12 David Querbach <querbach@…>

  • .cvsignore, ChangeLog?, Makefile.am, README, bsp_specs, configure.ac, times, clock/p_clock.c, console/console.c, include/.cvsignore, include/bsp.h, include/coverhd.h, irq/irq.h, startup/bspstart.c, startup/iss555.c, startup/linkcmds, startup/start.S, wrapup/.cvsignore, wrapup/Makefile.am: New files.
  • 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.59)
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-mbx5xx],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.8])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
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
47# Explicitly list a Makefile here
48AC_CONFIG_FILES([Makefile
49wrapup/Makefile])
50
51RTEMS_PPC_EXCEPTIONS([new])
52
53AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.