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

4.104.114.84.95
Last change on this file since a62f2a2 was a62f2a2, checked in by Joel Sherrill <joel.sherrill@…>, on 12/07/01 at 12:34:14

2001-12-04 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove RTEMS_ENABLE_NETWORKING.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9AC_CONFIG_AUX_DIR(../../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12AM_INIT_AUTOMAKE(rtems-c-src-lib-libbsp-powerpc-eth_comm,$RTEMS_VERSION,no)
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
36
37# Explicitly list all Makefiles here
38AC_CONFIG_FILES([Makefile
39clock/Makefile
40canbus/Makefile
41console/Makefile
42include/Makefile
43irq/Makefile
44network/Makefile
45start/Makefile
46startup/Makefile
47vectors/Makefile
48wrapup/Makefile])
49
50RTEMS_PPC_EXCEPTIONS([new])
51
52AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.