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

Last change on this file since 328876c was b18646c9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/06/03 at 10:45:24

2003-03-06 Ralf Corsepius <corsepiu@…>

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