source: rtems/c/src/lib/libbsp/powerpc/eth_comm/configure.ac @ f206b46

4.104.114.84.95
Last change on this file since f206b46 was e77a00a5, checked in by Joel Sherrill <joel.sherrill@…>, on 04/08/02 at 18:28:17

2002-04-06 Ralf Corsepius <corsepiu@…>

  • configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
  • Property mode set to 100644
File size: 1.6 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-eth_comm],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9AC_CONFIG_AUX_DIR(../../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12AM_INIT_AUTOMAKE([no-define foreign 1.6])
13RTEMS_BSP_CONFIGURE
14
15RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
16RTEMS_CANONICALIZE_TOOLS
17
18RTEMS_CHECK_NETWORKING
19AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
20
21# FIXME: Explanation cloned from mbx8xx
22RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
23RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
24[(BSP--console driver)
25 Define to 0 or 1 if you want polled I/O performed by RTEMS.
26 Define to 1 if you want interrupt-driven performed by RTEMS.
27 Define to 2 if you want polled I/O performed by EPPCBug.
28 There is no provision to have a mix of interrupt-driven and polled I/O
29 ports, except that the printk port may use a different mode from the
30 other ports. If this is done, do not open the printk port from an RTEMS
31 application. With EPPCBug 1.1, if mode 2 is selected, CONSOLE_MINOR
32 must be set to SMC1_MINOR. This is a deficiency of the firmware: it
33 does not perform serial I/O on any port other than its default debug
34 port, which must be SMC1.])
35
36RTEMS_BSPOPTS_SET([DISPATCH_HANDLER_STAT],[*],[])
37RTEMS_BSPOPTS_HELP([DISPATCH_HANDLER_STAT],
38[used by irq/irq.c])
39
40# Explicitly list all Makefiles here
41AC_CONFIG_FILES([Makefile
42clock/Makefile
43canbus/Makefile
44console/Makefile
45include/Makefile
46irq/Makefile
47network/Makefile
48start/Makefile
49startup/Makefile
50vectors/Makefile
51wrapup/Makefile])
52
53RTEMS_PPC_EXCEPTIONS([new])
54
55AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.