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

4.104.114.84.95
Last change on this file since 1f5a123a 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: 2.9 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-mpc8260ads],[_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
18
19RTEMS_BSPOPTS_SET([DATA_CACHE_ENABLE],[*],[0])
20RTEMS_BSPOPTS_HELP([DATA_CACHE_ENABLE],
21[If defined, the data cache will be enabled after address translation
22 is turned on.])
23
24RTEMS_BSPOPTS_SET([INSTRUCTION_CACHE_ENABLE],[*],[0])
25RTEMS_BSPOPTS_HELP([INSTRUCTION_CACHE_ENABLE],
26[If defined, the instruction cache will be enabled after address translation
27 is turned on.])
28
29RTEMS_BSPOPTS_SET([UARTS_USE_TERMIOS],[*],[0])
30RTEMS_BSPOPTS_HELP([UARTS_USE_TERMIOS],
31[Define to 1 if you want termios support for every port.
32 Termios support is independent of the choice of UART I/O mode.])
33
34RTEMS_BSPOPTS_SET([CONSOLE_MINOR],[*],[SCC2_MINOR])
35RTEMS_BSPOPTS_HELP([CONSOLE_MINOR],
36[(BSP--console driver) Must be defined to be one of SMC1_MINOR,
37 SMC2_MINOR, SCC2_MINOR, SCC3_MINOR, or SCC4_MINOR.
38 Determines which device will be registered as /dev/console.])
39
40RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
41RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
42[(BSP--console driver)
43 Define to 0 or 1 if you want polled I/O performed by RTEMS.
44 Define to 1 if you want interrupt-driven performed by RTEMS.
45 Define to 2 if you want polled I/O performed by EPPCBug.
46 There is no provision to have a mix of interrupt-driven and polled I/O
47 ports, except that the printk port may use a different mode from the
48 other ports. If this is done, do not open the printk port from an RTEMS
49 application. With EPPCBug 1.1, if mode 2 is selected, CONSOLE_MINOR
50 must be set to SMC1_MINOR. This is a deficiency of the firmware: it
51 does not perform serial I/O on any port other than its default debug
52 port, which must be SMC1.])
53
54RTEMS_BSPOPTS_SET([PRINTK_MINOR],[*],[SMC2_MINOR])
55RTEMS_BSPOPTS_HELP([PRINTK_MINOR],
56[(BSP--console driver)
57 Must be defined to be one of SMC1_MINOR, SMC2_MINOR, SCC2_MINOR,
58 SCC3_MINOR, or SCC4_MINOR. Determines which device is used for output
59 by printk(). If the port that printk() uses is also used for other
60 I/O (e.g. if  PRINTK_MINOR == \$CONSOLE_MINOR), then both ports should
61 use the same type of I/O, otherwise the drivers will likely conflict with
62 each other.])
63
64RTEMS_BSPOPTS_SET([DISPATCH_HANDLER_STAT],[*],[])
65RTEMS_BSPOPTS_HELP([DISPATCH_HANDLER_STAT],
66[used by irq/irq.c])
67
68RTEMS_CHECK_NETWORKING
69AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
70
71# Explicitly list a Makefile here
72AC_CONFIG_FILES([Makefile
73clock/Makefile
74console/Makefile
75include/Makefile
76network/Makefile
77irq/Makefile
78vectors/Makefile
79start/Makefile
80startup/Makefile
81wrapup/Makefile])
82
83RTEMS_PPC_EXCEPTIONS([new])
84
85AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.