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

4.104.114.84.95
Last change on this file since 68aef00 was d58c0ff, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/31/04 at 09:45:36

2004-01-31 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Merge-in clock/.cvsignore, console/.cvsignore, irq/.cvsignore, network/.cvsignore, startup/.cvsignore, vectors/.cvsignore. Use automake compilation rules.
  • clock/.cvsignore, console/.cvsignore, irq/.cvsignore, network/.cvsignore, startup/.cvsignore, vectors/.cvsignore: Remove.
  • configure.ac: Reflect changes above.
  • wrapup/Makefile: Reflect changes above.
  • 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 nostdinc foreign 1.8])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16RTEMS_PROG_CCAS
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
73wrapup/Makefile])
74
75RTEMS_PPC_EXCEPTIONS([new])
76
77AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.