source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/configure.ac @ fc16e17

4.104.114.84.95
Last change on this file since fc16e17 was 36024a6c, checked in by Joel Sherrill <joel.sherrill@…>, on 11/20/01 at 18:53:27

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

  • Makefile.am: Add @exceptions@ to SUBDIRS.
  • configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from make/custom/mpc8260ads.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
  • include/Makefile.am: Convert PREINSTALL_FILES to TMPINSTALL_FILES, include force-preinstall.am.
  • wrapup/Makefile.am: Apply @exceptions@.
  • Property mode set to 100644
File size: 2.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-mpc8260,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
16RTEMS_CANONICALIZE_TOOLS
17
18RTEMS_ENV_RTEMSBSP
19RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
20RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
21RTEMS_CANONICAL_HOST
22
23RTEMS_BSPOPTS_SET([UARTS_USE_TERMIOS],[*],[0])
24RTEMS_BSPOPTS_HELP([UARTS_USE_TERMIOS],
25[Define to 1 if you want termios support for every port.
26 Termios support is independent of the choice of UART I/O mode.])
27
28RTEMS_BSPOPTS_SET([CONSOLE_MINOR],[*],[SCC2_MINOR])
29RTEMS_BSPOPTS_HELP([CONSOLE_MINOR],
30[(BSP--console driver) Must be defined to be one of SMC1_MINOR,
31 SMC2_MINOR, SCC2_MINOR, SCC3_MINOR, or SCC4_MINOR.
32 Determines which device will be registered as /dev/console.])
33
34RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
35RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
36[(BSP--console driver)
37 Define to 0 or 1 if you want polled I/O performed by RTEMS.
38 Define to 1 if you want interrupt-driven performed by RTEMS.
39 Define to 2 if you want polled I/O performed by EPPCBug.
40 There is no provision to have a mix of interrupt-driven and polled I/O
41 ports, except that the printk port may use a different mode from the
42 other ports. If this is done, do not open the printk port from an RTEMS
43 application. With EPPCBug 1.1, if mode 2 is selected, CONSOLE_MINOR
44 must be set to SMC1_MINOR. This is a deficiency of the firmware: it
45 does not perform serial I/O on any port other than its default debug
46 port, which must be SMC1.])
47
48RTEMS_BSPOPTS_SET([PRINTK_MINOR],[*],[SMC2_MINOR])
49RTEMS_BSPOPTS_HELP([PRINTK_MINOR],
50[(BSP--console driver)
51 Must be defined to be one of SMC1_MINOR, SMC2_MINOR, SCC2_MINOR,
52 SCC3_MINOR, or SCC4_MINOR. Determines which device is used for output
53 by printk(). If the port that printk() uses is also used for other
54 I/O (e.g. if  PRINTK_MINOR == \$CONSOLE_MINOR), then both ports should
55 use the same type of I/O, otherwise the drivers will likely conflict with
56 each other.])
57
58AM_CONFIG_HEADER(include/bspopts.h)
59
60RTEMS_PROJECT_ROOT
61AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
62
63# Explicitly list a Makefile here
64AC_CONFIG_FILES([Makefile
65clock/Makefile
66console/Makefile
67include/Makefile
68network/Makefile
69irq/Makefile
70vectors/Makefile
71start/Makefile
72startup/Makefile
73wrapup/Makefile])
74
75RTEMS_PPC_EXCEPTIONS([new])
76
77AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.