source: rtems/c/src/lib/libbsp/arm/csb337/configure.ac @ 737f8c4

4.104.115
Last change on this file since 737f8c4 was 737f8c4, checked in by Joel Sherrill <joel.sherrill@…>, on 06/18/09 at 19:58:27

2009-06-18 Fernando Nicodemos <fgnicodemos@…>

  • Makefile.am, configure.ac, console/uarts.c: Add console device that uses MicroMonitor? to do actual input and output. This driver should work on any board that uses MicroMonitor?.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## configure.ac,v 1.5 2003/03/11 09:39:07 ralf Exp
4
5AC_PREREQ(2.60)
6AC_INIT([rtems-c-src-lib-libbsp-arm-csb337],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.10])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16RTEMS_PROG_CCAS
17
18RTEMS_CHECK_NETWORKING
19AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
20
21RTEMS_BSPOPTS_SET([csb637],[csb637],[1])
22RTEMS_BSPOPTS_SET([csb637],[*],[0])
23RTEMS_BSPOPTS_HELP([csb637],
24[If defined, this indicates that the BSP is being built for the
25 csb637 variant.])
26
27RTEMS_BSPOPTS_SET([ENABLE_LCD],[*],[0])
28RTEMS_BSPOPTS_HELP([ENABLE_LCD],
29[If defined, enable use of the SED1356 controller and LCD.])
30AM_CONDITIONAL(ENABLE_LCD,test "$ENABLE_LCD" = "1")
31
32RTEMS_BSPOPTS_SET([ENABLE_UMON_CONSOLE],[*],[1])
33RTEMS_BSPOPTS_HELP([ENABLE_UMON_CONSOLE],
34[If defined, enable use of the MicroMonitor console device.])
35AM_CONDITIONAL(ENABLE_LCD,test "$ENABLE_UMON_CONSOLE" = "1")
36
37RTEMS_BSPOPTS_SET([BSP_PRESS_KEY_FOR_RESET],[*],[1])
38RTEMS_BSPOPTS_HELP([BSP_PRESS_KEY_FOR_RESET],
39[If defined, print a message and wait until pressed before resetting
40 board when application exits.])
41
42RTEMS_BSPOPTS_SET([BSP_RESET_BOARD_AT_EXIT],[*],[1])
43RTEMS_BSPOPTS_HELP([BSP_RESET_BOARD_AT_EXIT],
44[If defined, reset the board when the application exits.])
45
46BSP_BOOTCARD_OPTIONS
47
48# Explicitly list all Makefiles here
49AC_CONFIG_FILES([Makefile])
50AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.