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