source: rtems/c/src/lib/libbsp/sparc/leon2/configure.ac @ adb85dd

5
Last change on this file since adb85dd was 37dc047, checked in by Sebastian Huber <sebastian.huber@…>, on 04/21/18 at 08:00:43

bsps: Remove AC_CONFIG_SRCDIR()

This AC_CONFIG_SRCDIR() is just a sanity check in this insane build
system. Since all content of
c/src/lib/libbsp/@RTEMS_CPU@/@RTEMS_BSP_FAMILY@ is bound to be moved it
makes no sense to keep it.

This patch is a part of the BSP source reorganization.

Update #3285.

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