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

4.104.114.84.95
Last change on this file since 810720b6 was 810720b6, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/12/03 at 03:28:02

2003-12-12 Ralf Corsepius <corsepiu@…>

  • configure.ac: Require automake >= 1.8, autoconf >= 2.59.
  • Property mode set to 100644
File size: 2.8 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.59)
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-mpc8260ads],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define foreign 1.8])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16
17
18RTEMS_BSPOPTS_SET([DATA_CACHE_ENABLE],[*],[0])
19RTEMS_BSPOPTS_HELP([DATA_CACHE_ENABLE],
20[If defined, the data cache will be enabled after address translation
21 is turned on.])
22
23RTEMS_BSPOPTS_SET([INSTRUCTION_CACHE_ENABLE],[*],[0])
24RTEMS_BSPOPTS_HELP([INSTRUCTION_CACHE_ENABLE],
25[If defined, the instruction cache will be enabled after address translation
26 is turned on.])
27
28RTEMS_BSPOPTS_SET([UARTS_USE_TERMIOS],[*],[0])
29RTEMS_BSPOPTS_HELP([UARTS_USE_TERMIOS],
30[Define to 1 if you want termios support for every port.
31 Termios support is independent of the choice of UART I/O mode.])
32
33RTEMS_BSPOPTS_SET([CONSOLE_MINOR],[*],[SCC2_MINOR])
34RTEMS_BSPOPTS_HELP([CONSOLE_MINOR],
35[(BSP--console driver) Must be defined to be one of SMC1_MINOR,
36 SMC2_MINOR, SCC2_MINOR, SCC3_MINOR, or SCC4_MINOR.
37 Determines which device will be registered as /dev/console.])
38
39RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
40RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
41[(BSP--console driver)
42 Define to 0 or 1 if you want polled I/O performed by RTEMS.
43 Define to 1 if you want interrupt-driven performed by RTEMS.
44 Define to 2 if you want polled I/O performed by EPPCBug.
45 There is no provision to have a mix of interrupt-driven and polled I/O
46 ports, except that the printk port may use a different mode from the
47 other ports. If this is done, do not open the printk port from an RTEMS
48 application. With EPPCBug 1.1, if mode 2 is selected, CONSOLE_MINOR
49 must be set to SMC1_MINOR. This is a deficiency of the firmware: it
50 does not perform serial I/O on any port other than its default debug
51 port, which must be SMC1.])
52
53RTEMS_BSPOPTS_SET([PRINTK_MINOR],[*],[SMC2_MINOR])
54RTEMS_BSPOPTS_HELP([PRINTK_MINOR],
55[(BSP--console driver)
56 Must be defined to be one of SMC1_MINOR, SMC2_MINOR, SCC2_MINOR,
57 SCC3_MINOR, or SCC4_MINOR. Determines which device is used for output
58 by printk(). If the port that printk() uses is also used for other
59 I/O (e.g. if  PRINTK_MINOR == \$CONSOLE_MINOR), then both ports should
60 use the same type of I/O, otherwise the drivers will likely conflict with
61 each other.])
62
63RTEMS_BSPOPTS_SET([DISPATCH_HANDLER_STAT],[*],[])
64RTEMS_BSPOPTS_HELP([DISPATCH_HANDLER_STAT],
65[used by irq/irq.c])
66
67RTEMS_CHECK_NETWORKING
68AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
69
70# Explicitly list a Makefile here
71AC_CONFIG_FILES([Makefile
72clock/Makefile
73console/Makefile
74network/Makefile
75irq/Makefile
76vectors/Makefile
77start/Makefile
78startup/Makefile
79wrapup/Makefile])
80
81RTEMS_PPC_EXCEPTIONS([new])
82
83AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.