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

5
Last change on this file since de7b174e was de7b174e, checked in by Joel Sherrill <joel@…>, on 11/15/16 at 18:19:39

Remove sparc/sis BSP.

closes #2810.

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