source: rtems/c/src/lib/libbsp/sparc/erc32/configure.ac @ 8621ed38

5
Last change on this file since 8621ed38 was 8621ed38, checked in by Sebastian Huber <sebastian.huber@…>, on 04/03/18 at 05:28:03

bsps: Move config macros to RTEMS_BSP_CONFIGURE

Provide HAS_NETWORKING and HAS_SMP Automake conditionals for all BSPs.

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-lib-libbsp-sparc-erc32],
5[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
6AC_CONFIG_SRCDIR([make/custom/erc32.cfg])
7RTEMS_TOP(../../../../../..)
8RTEMS_SOURCE_TOP
9RTEMS_BUILD_TOP
10RTEMS_BSP_LINKCMDS
11
12RTEMS_CANONICAL_TARGET_CPU
13AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
14RTEMS_BSP_CONFIGURE
15
16
17
18
19## bsp-specific options
20RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0])
21RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS],
22[The erc32 console driver can operate in either polled or interrupt mode.
23Under the simulator (especially when FAST_UART is defined), polled seems
24to operate better. It is common for a task to print a line (like the end
25of test message) and then exit.  In this case, the program returns control
26to the simulator command line before the program has even queued the output
27to the uart.  Thus sis has no chance of getting the data out.])
28
29RTEMS_BSPOPTS_SET([BSP_POWER_DOWN_AT_FATAL_HALT],[*],[])
30RTEMS_BSPOPTS_HELP([BSP_POWER_DOWN_AT_FATAL_HALT],
31[If defined, CPU is spinning on fatal exit. Otherwise generate system
32 error which will hand over to debugger, simulator, etc.])
33
34RTEMS_BSP_CLEANUP_OPTIONS
35
36# Explicitly list all Makefiles here
37AC_CONFIG_FILES([Makefile])
38AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.