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

5
Last change on this file since 84e59b7c was 84e59b7c, checked in by Sebastian Huber <sebastian.huber@…>, on 11/15/18 at 19:47:22

bsps/powerpc: Use interrupt stack for init stack

Move start.o to separate file.

Update #3459.

  • Property mode set to 100644
File size: 1.5 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
13RTEMS_BSPOPTS_SET([RTEMS_XPARAMETERS_H],[*],[\<xparameters_dflt.h\>])
14RTEMS_BSPOPTS_HELP([RTEMS_XPARAMETERS_H],
15[This defines the location of the hardware specific "xparameters.h" file.
16 in the file system. Specify an absolute path. Do not forget the double quotes])
17
18RTEMS_BSPOPTS_SET([VIRTEX_CONSOLE_USE_INTERRUPTS],[*],[1])
19RTEMS_BSPOPTS_HELP([VIRTEX_CONSOLE_USE_INTERRUPTS],[if defined use interrupt driven Termios mode])
20
21AC_DEFUN([VIRTEX_REGION],[
22AC_ARG_VAR([$1],[$2; default $3])dnl
23[$1]=[$]{[$1]:-[$3]}
24])
25
26VIRTEX_REGION([VIRTEX_RAM_ORIGIN],[normal RAM region origin],[0x0])
27VIRTEX_REGION([VIRTEX_RAM_LENGTH],[normal RAM region length],[0x7ffffec])
28VIRTEX_REGION([VIRTEX_FAST_RAM_ORIGIN],[fast RAM region origin],[0x0])
29VIRTEX_REGION([VIRTEX_FAST_RAM_LENGTH],[fast RAM region length],[0x0])
30VIRTEX_REGION([VIRTEX_RESET_ORIGIN],[reset region origin],[0x7ffffec])
31VIRTEX_REGION([VIRTEX_RESET_LENGTH],[reset region length],[0x14])
32
33AC_DEFINE(ppc405, 1, [PowerPC model option])
34
35RTEMS_BSP_CLEANUP_OPTIONS
36
37# Explicitly list all Makefiles here
38AC_CONFIG_FILES([
39Makefile
40linkcmds:../../../../../../bsps/powerpc/virtex/start/linkcmds.in
41])
42
43RTEMS_PPC_EXCEPTIONS
44
45AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.