source: rtems/c/src/lib/libbsp/m68k/mvme167/configure.ac @ 25389032

4.104.114.84.95
Last change on this file since 25389032 was 2821666f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/03 at 14:11:26

2003-09-29 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Merge-in include/Makefile.am. Reflect changes to bsp.am.
  • include/Makefile.am: Remove.
  • configure.ac: Reflect changes above.
  • Property mode set to 100644
File size: 1.9 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-c-src-lib-libbsp-m68k-mvme167],[_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.7.2])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16
17RTEMS_CHECK_NETWORKING
18AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
19
20# HACK: Propagate #define mvme167 into bspopts.h
21# Used inside ../mvme162/include/mvme16x_hw.h
22AC_DEFINE_UNQUOTED([mvme167],[1],
23[If building the mvme167 BSP])
24
25RTEMS_BSPOPTS_SET([CD2401_INT_LEVEL],[*],[1])
26RTEMS_BSPOPTS_HELP([CD2401_INT_LEVEL],
27[Interrupt level for the CD2401(when CD2401_IO_MODE == 1).])
28
29RTEMS_BSPOPTS_SET([CD2401_IO_MODE],[*],[0])
30RTEMS_BSPOPTS_HELP([CD2401_IO_MODE],
31[0 for polled I/O, 1 for interrupt-driven.])
32
33RTEMS_BSPOPTS_SET([CD2401_USE_TERMIOS],[*],[0])
34RTEMS_BSPOPTS_HELP([CD2401_USE_TERMIOS],
35[1 for using termios based console.])
36
37RTEMS_BSPOPTS_SET([CONSOLE_MINOR],[*],[1])
38RTEMS_BSPOPTS_HELP([CONSOLE_MINOR],
39[Port to use for the RTEMS console.
40      0 - /dev/tty0, Serial Port 1/Console on the MVME712M.
41      1 - /dev/tty1, Serial Port 2/TTY01 on the MVME712M.
42      2 - /dev/tty2, Serial Port 3 on the MVME712M.
43      3 - /dev/tty3, Serial Port 4 on the MVME712M.])
44
45RTEMS_BSPOPTS_SET([PRINTK_MINOR],[*],[1])
46RTEMS_BSPOPTS_HELP([PRINTK_MINOR],
47[Port to use for printk debugging output.
48      0 - /dev/tty0, Serial Port 1/Console on the MVME712M.
49      1 - /dev/tty1, Serial Port 2/TTY01 on the MVME712M.
50      2 - /dev/tty2, Serial Port 3 on the MVME712M.
51      3 - /dev/tty3, Serial Port 4 on the MVME712M.])
52
53# Explicitly list all Makefiles here
54AC_CONFIG_FILES([Makefile
55clock/Makefile
56console/Makefile
57fatal/Makefile
58network/Makefile
59start/Makefile
60startup/Makefile
61timer/Makefile
62wrapup/Makefile])
63AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.