source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/configure.ac @ 4ff09d5b

5
Last change on this file since 4ff09d5b was 4ff09d5b, checked in by Sebastian Huber <sebastian.huber@…>, on 04/12/18 at 05:27:41

build: Remove subdir-objects from BSP configure.ac

The subdir-objects do not work currently due to BSP sources in bsps and
c and the existing build tree layout.

Update #3387.

  • Property mode set to 100644
File size: 2.5 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-powerpc-mpc8260ads],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5AC_CONFIG_SRCDIR([make/custom/mpc8260ads.cfg])
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
16RTEMS_BSPOPTS_SET_DATA_CACHE_ENABLED([*],[])
17RTEMS_BSPOPTS_HELP_DATA_CACHE_ENABLED
18
19RTEMS_BSPOPTS_SET_INSTRUCTION_CACHE_ENABLED([*],[])
20RTEMS_BSPOPTS_HELP_INSTRUCTION_CACHE_ENABLED
21
22RTEMS_BSPOPTS_SET([UARTS_USE_TERMIOS],[*],[0])
23RTEMS_BSPOPTS_HELP([UARTS_USE_TERMIOS],
24[Define to 1 if you want termios support for every port.
25 Termios support is independent of the choice of UART I/O mode.])
26
27RTEMS_BSPOPTS_SET([CONSOLE_MINOR],[*],[SCC2_MINOR])
28RTEMS_BSPOPTS_HELP([CONSOLE_MINOR],
29[(BSP--console driver) Must be defined to be one of SMC1_MINOR,
30 SMC2_MINOR, SCC2_MINOR, SCC3_MINOR, or SCC4_MINOR.
31 Determines which device will be registered as /dev/console.])
32
33RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
34RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
35[(BSP--console driver)
36 Define to 0 or 1 if you want polled I/O performed by RTEMS.
37 Define to 1 if you want interrupt-driven performed by RTEMS.
38 Define to 2 if you want polled I/O performed by EPPCBug.
39 There is no provision to have a mix of interrupt-driven and polled I/O
40 ports, except that the printk port may use a different mode from the
41 other ports. If this is done, do not open the printk port from an RTEMS
42 application. With EPPCBug 1.1, if mode 2 is selected, CONSOLE_MINOR
43 must be set to SMC1_MINOR. This is a deficiency of the firmware: it
44 does not perform serial I/O on any port other than its default debug
45 port, which must be SMC1.])
46
47RTEMS_BSPOPTS_SET([PRINTK_MINOR],[*],[SMC2_MINOR])
48RTEMS_BSPOPTS_HELP([PRINTK_MINOR],
49[(BSP--console driver)
50 Must be defined to be one of SMC1_MINOR, SMC2_MINOR, SCC2_MINOR,
51 SCC3_MINOR, or SCC4_MINOR. Determines which device is used for output
52 by printk(). If the port that printk() uses is also used for other
53 I/O (e.g. if  PRINTK_MINOR == \$CONSOLE_MINOR), then both ports should
54 use the same type of I/O, otherwise the drivers will likely conflict with
55 each other.])
56
57RTEMS_BSPOPTS_SET([DISPATCH_HANDLER_STAT],[*],[])
58RTEMS_BSPOPTS_HELP([DISPATCH_HANDLER_STAT],
59[used by irq/irq.c])
60
61
62RTEMS_BSP_CLEANUP_OPTIONS
63
64# Explicitly list a Makefile here
65AC_CONFIG_FILES([Makefile])
66
67RTEMS_PPC_EXCEPTIONS
68
69AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.