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

4.104.114.84.95
Last change on this file since 9e1ae79 was 9e1ae79, checked in by Joel Sherrill <joel.sherrill@…>, on 12/03/01 at 01:07:18

2001-11-30 Ralf Corsepius <corsepiu@…>

  • configure.ac: Introduce RTEMS_BSP_CONFIGURE.
  • 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
17RTEMS_ENABLE_NETWORKING
18
19RTEMS_CHECK_NETWORKING
20
21AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
22
23# FIXME: Explanation cloned from mbx8xx
24RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
25RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
26[(BSP--console driver)
27 Define to 0 or 1 if you want polled I/O performed by RTEMS.
28 Define to 1 if you want interrupt-driven performed by RTEMS.
29 Define to 2 if you want polled I/O performed by EPPCBug.
30 There is no provision to have a mix of interrupt-driven and polled I/O
31 ports, except that the printk port may use a different mode from the
32 other ports. If this is done, do not open the printk port from an RTEMS
33 application. With EPPCBug 1.1, if mode 2 is selected, CONSOLE_MINOR
34 must be set to SMC1_MINOR. This is a deficiency of the firmware: it
35 does not perform serial I/O on any port other than its default debug
36 port, which must be SMC1.])
37
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.