source: rtems/c/src/lib/libbsp/powerpc/virtex/configure.ac @ cc61d5c

5
Last change on this file since cc61d5c was 4afc1efa, checked in by Joel Sherrill <joel@…>, on 05/16/18 at 15:01:09

virtex: Move -Dxxx to configure.ac

Updates #3425.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-lib-libbsp-powerpc-virtex],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5RTEMS_TOP(../../../../../..)
6RTEMS_SOURCE_TOP
7RTEMS_BUILD_TOP
8
9RTEMS_CANONICAL_TARGET_CPU
10AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
11RTEMS_BSP_CONFIGURE
12
13
14
15
16RTEMS_BSPOPTS_SET([BSP_START_STACK_SIZE],[*],[4096])
17RTEMS_BSPOPTS_HELP([BSP_START_STACK_SIZE],[size of low-level start stack])
18
19RTEMS_BSPOPTS_SET([RTEMS_XPARAMETERS_H],[*],[\<xparameters_dflt.h\>])
20RTEMS_BSPOPTS_HELP([RTEMS_XPARAMETERS_H],
21[This defines the location of the hardware specific "xparameters.h" file.
22 in the file system. Specify an absolute path. Do not forget the double quotes])
23
24RTEMS_BSPOPTS_SET([VIRTEX_CONSOLE_USE_INTERRUPTS],[*],[1])
25RTEMS_BSPOPTS_HELP([VIRTEX_CONSOLE_USE_INTERRUPTS],[if defined use interrupt driven Termios mode])
26
27AC_DEFUN([VIRTEX_REGION],[
28AC_ARG_VAR([$1],[$2; default $3])dnl
29[$1]=[$]{[$1]:-[$3]}
30])
31
32VIRTEX_REGION([VIRTEX_RAM_ORIGIN],[normal RAM region origin],[0x0])
33VIRTEX_REGION([VIRTEX_RAM_LENGTH],[normal RAM region length],[0x7ffffec])
34VIRTEX_REGION([VIRTEX_FAST_RAM_ORIGIN],[fast RAM region origin],[0x0])
35VIRTEX_REGION([VIRTEX_FAST_RAM_LENGTH],[fast RAM region length],[0x0])
36VIRTEX_REGION([VIRTEX_RESET_ORIGIN],[reset region origin],[0x7ffffec])
37VIRTEX_REGION([VIRTEX_RESET_LENGTH],[reset region length],[0x14])
38
39AC_DEFINE(ppc405, 1, [PowerPC model option])
40
41RTEMS_BSP_CLEANUP_OPTIONS
42
43# Explicitly list all Makefiles here
44AC_CONFIG_FILES([
45Makefile
46linkcmds:../../../../../../bsps/powerpc/virtex/start/linkcmds.in
47])
48
49RTEMS_PPC_EXCEPTIONS
50
51AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.