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

4.104.115
Last change on this file since e7bde492 was e7bde492, checked in by Joel Sherrill <joel.sherrill@…>, on 06/02/09 at 22:19:44

2009-06-02 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, preinstall.am, console/uarts.c, include/bsp.h, startup/memmap.c: Add support for /dev/fbcons which is a console type output only device to print to the LCD screen. The video controller (SED) and fonts are copied from MicroMonitor? and proper attribution is made in those files and confirmed by Ed Sutter.
  • console/fbcons.c, console/font8x16.h, console/sed1356.c, console/sed1356_16bit.h, include/sed1356.h: New files.
  • Property mode set to 100644
File size: 1.3 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([BSP_PRESS_KEY_FOR_RESET],[*],[1])
28RTEMS_BSPOPTS_HELP([BSP_PRESS_KEY_FOR_RESET],
29[If defined, print a message and wait until pressed before resetting
30 board when application exits.])
31
32RTEMS_BSPOPTS_SET([ENABLE_LCD],[*],[0])
33RTEMS_BSPOPTS_HELP([ENABLE_LCD],
34[If defined, enable use of the SED1356 controller.])
35
36AM_CONDITIONAL(ENABLE_LCD,test "$ENABLE_LCD" = "1")
37
38RTEMS_BSPOPTS_SET([BSP_RESET_BOARD_AT_EXIT],[*],[1])
39RTEMS_BSPOPTS_HELP([BSP_RESET_BOARD_AT_EXIT],
40[If defined, reset the board when the application exits.])
41
42BSP_BOOTCARD_OPTIONS
43
44# Explicitly list all Makefiles here
45AC_CONFIG_FILES([Makefile])
46AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.