source: rtems/c/src/lib/libbsp/powerpc/gen83xx/configure.ac @ 8a54204

4.115
Last change on this file since 8a54204 was 8a54204, checked in by Sebastian Huber <sebastian.huber@…>, on 11/12/10 at 14:16:57

2010-11-12 Sebastian Huber <sebastian.huber@…>

  • console/console.h, console/console.c, console/config.c, console/ns16550cfg.c: Removed files.
  • console/console-config.c: New file.
  • Makefile.am: Reflect changes above.
  • configure.ac: New BSP options.
  • include/bsp.h: Use new BSP options.
  • network/network.c: Avoid memory leak.
  • startup/bspstart.c: Initialize console port table.
  • spi/spi_init.c: Update for SD card API changes.
  • Property mode set to 100644
File size: 2.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.60)
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-gen83xx],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.10])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET
15RTEMS_CANONICALIZE_TOOLS
16RTEMS_PROG_CCAS
17
18RTEMS_BSPOPTS_SET([DATA_CACHE_ENABLE],[*],[1])
19RTEMS_BSPOPTS_HELP([DATA_CACHE_ENABLE],
20[If defined, the data cache will be enabled after address translation
21 is turned on.])
22
23RTEMS_BSPOPTS_SET([INSTRUCTION_CACHE_ENABLE],[*],[1])
24RTEMS_BSPOPTS_HELP([INSTRUCTION_CACHE_ENABLE],
25[If defined, the instruction cache will be enabled after address translation
26 is turned on.])
27
28RTEMS_BSPOPTS_SET([MPC8313ERDB],[mpc8313erdb],[1])
29RTEMS_BSPOPTS_HELP([MPC8313ERDB],
30[If defined, use custom settings for the mpc8313erdb BSP.])
31
32RTEMS_BSPOPTS_SET([MPC8349EAMDS],[mpc8349eamds],[1])
33RTEMS_BSPOPTS_HELP([MPC8349EAMDS],
34[If defined, use custom settings for the mpc8349eamds BSP.])
35
36RTEMS_BSPOPTS_SET([HSC_CM01],[hsc_cm01],[1])
37RTEMS_BSPOPTS_HELP([HSC_CM01],
38[If defined, use custom settings for the hsc_cm01 BSP.])
39
40RTEMS_BSPOPTS_SET([MPC8349],[mpc8313erdb],[1])
41RTEMS_BSPOPTS_SET([MPC8349],[mpc8349eamds],[1])
42RTEMS_BSPOPTS_SET([MPC8349],[hsc_cm01],[1])
43RTEMS_BSPOPTS_HELP([MPC8349],
44[If defined, use custom settings for the MPC8349 libcpu family.])
45
46RTEMS_BSPOPTS_SET([BSP_CONSOLE_BAUD],[mpc8313erdb],[115200])
47RTEMS_BSPOPTS_SET([BSP_CONSOLE_BAUD],[*],[9600])
48RTEMS_BSPOPTS_HELP([BSP_CONSOLE_BAUD],[Default baud for console and other serial devices.])
49
50RTEMS_BSPOPTS_SET([BSP_USE_UART_INTERRUPTS],[mpc8313erdb],[1])
51RTEMS_BSPOPTS_HELP([BSP_USE_UART_INTERRUPTS],[enable usage of interrupts for the UART modules])
52
53RTEMS_BSPOPTS_SET([BSP_USE_UART2],[mpc8313erdb],[1])
54RTEMS_BSPOPTS_SET([BSP_USE_UART2],[mpc8349eamds],[1])
55RTEMS_BSPOPTS_SET([BSP_USE_UART2],[hsc_cm01],[1])
56RTEMS_BSPOPTS_HELP([BSP_USE_UART2],[If defined, enables UART2.])
57
58RTEMS_BSPOPTS_SET([HAS_UBOOT],[mpc8313erdb],[1])
59RTEMS_BSPOPTS_HELP([HAS_UBOOT],[If defined, enables U-Boot support.])
60
61RTEMS_BSPOPTS_SET([PPC_USE_DATA_CACHE],[*],[1])
62RTEMS_BSPOPTS_HELP([PPC_USE_DATA_CACHE], [If defined, then the PowerPC specific
63 code in RTEMS will use data cache instructions to optimize the context switch code.])
64
65RTEMS_CHECK_NETWORKING
66AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
67
68# Explicitly list all Makefiles here
69AC_CONFIG_FILES([Makefile])
70
71RTEMS_BSP_CLEANUP_OPTIONS(0, 0)
72
73RTEMS_PPC_EXCEPTIONS
74
75AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.